home/.config/polybar/start.sh

33 lines
1020 B
Bash
Raw Normal View History

2018-01-20 13:56:55 -06:00
#!/bin/bash
#
# start.sh
# Copyright (C) 2018 salt <salt@iridium>
#
# Distributed under terms of the MIT license.
#
export PB_WM_RESTACK=bspwm
2018-01-20 13:56:55 -06:00
# Iterate through monitors and spawn bars on each
# Starting with the primary monitor...
export PB_MONITOR=$(xrandr -q | awk '/\<primary\>/{print $1}')
if [[ $PB_MONITOR == "" ]]; then
2018-05-06 02:15:38 -05:00
unset PB_MONITOR
2018-01-20 13:56:55 -06:00
fi
printf '[INFO] Starting Polybar primary on monitor $PB_MONITOR'
2018-05-06 01:56:37 -05:00
polybar -r primary-top&
2018-01-20 13:56:55 -06:00
# ...and then moving on to secondaries, if we have them
# Alright, now this looks *really* bad, spawning so many subprocesses, but
# there's no way in hell you can get me to attempt to solve this with regex.
# To hell with regex. It starts more problems than it solves
2018-01-20 13:56:55 -06:00
export secondary_monitors=$(xrandr -q | grep ' connected' | grep -v 'primary' | awk '{print $1}')
if [[ $secondary_monitors == "" ]]; then
2018-01-20 13:56:55 -06:00
exit 0
fi
for monitor in $secondary_monitors; do
printf '[INFO] Starting Polybar secondary on monitor $monitor'
PB_MONITOR=$monitor polybar -r secondary
2018-01-20 13:56:55 -06:00
done
disown
exit