aboutsummaryrefslogtreecommitdiffstats
path: root/polybar/launch.sh
blob: 98428f89e98b6360adbd5e035abaf88c77ddd9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

# 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

polybar main &

echo "Bars launched..."