Add dot_local/spells/executable_launchpolybar

This commit is contained in:
Dorian Wood 2021-04-22 10:24:36 -04:00
parent 045d4be20d
commit 9998b99815
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/usr/bin/bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch Polybar, using default config location ~/.config/polybar/config
polybar example &