dotfiles/polybar/launch.sh

10 lines
188 B
Bash
Raw Normal View History

2022-05-14 13:56:21 +01:00
#!/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