13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Terminate already running bar instances
|
||
|
killall polybar
|
||
|
|
||
|
# Wait until the processes have been shut down
|
||
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||
|
|
||
|
# Launch polybar for all monitors
|
||
|
for monitor in $(polybar --list-monitors | cut -d ":" -f 1); do
|
||
|
MONITOR=$monitor polybar main -c $HOME/.config/polybar/config.ini -r &
|
||
|
done
|