1
1
mirror of https://github.com/nboughton/dotfiles synced 2024-11-22 23:51:57 +01:00
github.com-nboughton-dotfiles/polybar/launch.sh
2021-06-01 20:18:26 +01:00

22 lines
513 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 top &
done
#polybar --reload bottom &
else
polybar --reload top &
#polybar --reload bottom &
fi
echo "Polybar launched..."