blob: 5468c8e6e5b1d8efdb7251b04fd358bc243efc3c (
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
|
#!/usr/bin/env sh
# 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 1; done
# Launch bar
#polybar main-0 &
polybar main-1 &
polybar main-2 &
polybar main-3 &
polybar main-4 &
polybar main-5 &
# Define bars per monitors
#declare -A ARRANGEMENTS=(["$mainmonitor"]="main-0" ["$secondmonitor"]="main-0")
declare -A ARRANGEMENTS=(["$mainmonitor"]="main-1,main-2,main-3,main-4,main-5" ["$secondmonitor"]="main-1,main-2,main-3,main-4,main-5")
# Each key
for MONITOR in "${!ARRANGEMENTS[@]}"; do
# split at `,` into array
while IFS=',' read -ra BARLIST; do
# for each bar (seperated by `,`) at current key
for BAR in "${BARLIST[@]}"; do
MONITOR="$MONITOR" polybar --reload "$BAR" &
done
done <<< "${ARRANGEMENTS[$MONITOR]}"
done
|