dotfiles/polybar/launch.sh

9 lines
203 B
Bash
Raw Normal View History

2022-01-18 01:25:46 -05:00
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload $(cat /etc/hostname) &
done
else
polybar --reload $(cat /etc/hostname) &
fi