This commit is contained in:
foozzi 2024-05-06 21:47:37 -04:00
parent 0c209480a9
commit ed480c8445
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 &