blob: ca6d41d9fe3b20339bc9b73387adc33b8eb17a9c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch polybar
polybar i3_bar &
|