mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 21:32:27 +00:00
polybar: init
This commit is contained in:
14
.config/polybar/launch.sh
Executable file
14
.config/polybar/launch.sh
Executable 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..."
|
Reference in New Issue
Block a user