polybar: init

This commit is contained in:
Dave Gallant
2020-07-02 01:36:00 -04:00
parent 03a3671600
commit f81e2a7543
4 changed files with 320 additions and 10 deletions

14
.config/polybar/launch.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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..."