Adding polybar-xmonad launch script to HOME/.local/bin.

This commit is contained in:
Derek Taylor
2023-03-01 17:53:13 -06:00
parent 4993193c00
commit 9a74222f1c

13
.local/bin/polybar-xmonad Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env 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 : ; done
for m in $(polybar --list-monitors | cut -d":" -f1); do
WIRELESS=$(ls /sys/class/net/ | grep ^wl | awk 'NR==1{print $1}') MONITOR=$m polybar --reload mainbar-xmonad &
done
echo "Bars launched..."