10 lines
213 B
Bash
10 lines
213 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# From: https://github.com/jaagr/polybar/issues/763#issuecomment-392960721
|
||
|
|
||
|
pkill polybar
|
||
|
|
||
|
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
||
|
MONITOR=$m polybar --reload example &
|
||
|
done
|