9 lines
188 B
Bash
Executable file
9 lines
188 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
killall -q polybar
|
|
|
|
# Launch Polybar on all connected monitors
|
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
|
MONITOR=$m polybar --reload example &
|
|
done
|
|
|