blob: 71d5923ade872d74f66dd617e9cd6e6efa0a37bd (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/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 &
polybar -m | while read -r mon; do
export MONITOR=$(echo $mon | cut -d: -f1)
width="$(echo $mon | cut -d' ' -f2 | cut -dx -f1)"
w=1920
case "$width" in
1920) w=1920
;;
1080) w=1080
;;
2560) w=2560
;;
*) w=1920
esac
echo $mon | grep -q "(primary)" && {
polybar ws &
polybar time$w &
polybar right$w &
polybar mpd$w &
} || {
polybar ws &
polybar time$w &
}
done
|