dotfiles/.config/polybar/launch.sh

8 lines
167 B
Bash
Raw Normal View History

2021-07-11 15:51:11 +02:00
#!/bin/bash
pkill polybar
2021-07-13 22:24:58 +02:00
for m in $(polybar --list-monitors | cut -d":" -f1); do
MONITOR=$m polybar --reload main &
2022-01-25 15:00:57 +01:00
# MONITOR=$m polybar --reload top &
2021-07-13 22:24:58 +02:00
done