dotfiles/home/dot_config/sway/scripts/executable_polybar.sh
2023-04-01 16:23:45 -07:00

11 lines
243 B
Bash

#!/usr/bin/env sh
# Terminate already running bar instances
pkill polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch polybar
polybar -c /home/tstarr/.config/polybar/dracula &