mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
13 lines
300 B
Bash
13 lines
300 B
Bash
|
#!/bin/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
|
||
|
|
||
|
# Launch the bar
|
||
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
||
|
MONITOR=$m polybar --reload main &
|
||
|
done
|