2018-11-18 20:26:59 +00:00
|
|
|
#!/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
|
2019-09-03 12:35:31 +01:00
|
|
|
MONITOR=$m polybar top &
|
|
|
|
MONITOR=$m polybar bottom &
|
2018-11-18 20:26:59 +00:00
|
|
|
done
|