blob: e099ebb9eed3ed7d61d0e9bc582903cd7c6fe50c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/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 bar1 and bar2
MONITOR=$(polybar -m|tail -n1|sed -e 's/:.*$//g') polybar topbar &
MONITORS=$(polybar -m|sed -e 's/:.*$//g')
while read -r monitor; do
MONITOR=$monitor polybar topbar-second &
done <<< $MONITORS
PRIMARY_MONITOR=$(xrandr -q|awk '/ connected primary /'|cut -d ' ' -f1)
echo "Bars launched..."
|