dotfiles/polybar/launch.sh
2022-05-14 13:56:21 +01:00

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