blob: 40a23f85a6eee01b16d313caf52321c9337cbba6 (
plain) (
blame)
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 0.1; done
# Launch polybar
polybar --config="/home/hydrogen/.config/polybar/config.ini" top &
|