4fcd323439d69712d761479592364f46365d69b2
[~bandali/configs] / polybar / .local / bin / polybar-launch
1 #!/usr/bin/env sh
2
3 # Terminate already running bar instances
4 killall -q polybar
5
6 # Wait until the processes have been shut down
7 while pgrep -x polybar >/dev/null; do sleep 1; done
8
9 # Launch main bar
10 polybar main &
11
12 echo "Bars launched..."