rice/scripts/launch_desktop.sh
2021-11-15 14:32:56 -08:00

23 lines
656 B
Bash
Executable File

#!/usr/bin/env sh
## Add this to your wm startup file.
# 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
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
# MONITOR=$m polybar --reload -c ~/SudacodeRice/polybar/config.desktop.ini main &
# update to use new theme
MONITOR=$m polybar -q --reload -c "$HOME/SudacodeRice/polybar-themes/sblocks/config.ini" main &
done
else
polybar --reload example &
fi
# Launch bar1 and bar2
# polybar -c ~/SudacodeRice/polybar/config.desktop.ini main &