This commit is contained in:
foozzi 2024-05-06 21:47:37 -04:00
parent f82a847f48
commit dfa8359243
16 changed files with 1078 additions and 1 deletions

View file

@ -0,0 +1,9 @@
# 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 the bar
polybar -c ~/.config/polybar/config.ini &