mirror of
https://github.com/nboughton/dotfiles
synced 2024-11-26 13:33:54 +01:00
19 lines
458 B
Bash
19 lines
458 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 Polybar, using default config location ~/.config/polybar/config
|
||
|
if type "xrandr"; then
|
||
|
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
|
||
|
MONITOR=$m polybar --reload mybar &
|
||
|
done
|
||
|
else
|
||
|
polybar --reload mybar &
|
||
|
fi
|
||
|
|
||
|
echo "Polybar launched..."
|