blob: 01e4b17c3df144a81deb875006e65b8a8a874a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 0.1; done
# Launch Polybar, using default config location ~/.config/polybar/config
#polybar music &
#MONITOR=DP-0 polybar --reload wsonly &
export MONITOR=DP-1
polybar wsonly &
export MONITOR=DP-2
polybar wsonly &
export MONITOR=HDMI-1
polybar wsonly &
export MONITOR=DP-3
polybar ws &
|