Files
nix-config/.config/polybar/launch.sh
Dave Gallant f81e2a7543 polybar: init
2020-07-03 16:15:02 -04:00

15 lines
353 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 on all monitors
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload poly &
done
echo "Polybar launched..."