dotfiles/home/dot_config/i3/scripts/executable_polybar.sh.tmpl

11 lines
253 B
Cheetah
Raw Normal View History

2022-12-10 17:09:35 -08:00
#!/usr/bin/env sh
# Terminate already running bar instances
2022-12-21 00:07:52 -08:00
pkill polybar
2022-12-10 17:09:35 -08:00
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch polybar
polybar -c {{ .chezmoi.homeDir }}/.config/polybar/dracula &