mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +00:00
13 lines
325 B
Bash
Executable File
13 lines
325 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
|