dotfiles/home/dot_config/sway/scripts/executable_polybar.sh

11 lines
243 B
Bash
Raw Normal View History

2023-04-01 16:23:45 -07:00
#!/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 &