dots-of-war/files/.config/polybar/launch.sh

25 lines
602 B
Bash
Raw Normal View History

2020-03-19 11:03:08 +00:00
#!/bin/bash
killall -q polybar
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
2020-05-07 14:05:16 +00:00
2020-05-13 08:47:11 +00:00
outputs=$(xrandr --query | grep " connected" | cut -d" " -f1)
tray_output=HDMI-A-0
for m in $outputs; do
2020-06-05 14:43:37 +00:00
if [[ $m != "DisplayPort-1" ]]; then
2020-05-13 08:47:11 +00:00
tray_output=$m
fi
done
for m in $outputs; do
export MONITOR=$m
export TRAY_POSITION=none
if [[ $m == "$tray_output" ]]; then
TRAY_POSITION=right
fi
MONITOR=$m polybar -r --config=/home/leon/.config/polybar/config.ini main & # >>/tmp/polybar1.log 2>&1 &
2020-05-07 14:05:16 +00:00
done
#polybar --config=/home/leon/.config/polybar/config.ini main >>/tmp/polybar1.log 2>&1 &