Files
yadm/.local/usr/bin/polybar.sh
2019-10-08 16:21:50 +02:00

19 lines
470 B
Bash
Executable File

#!/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 example &
done
else
polybar --reload example &
fi
echo "Polybar launched..."