dotfiles/polybar/launch.sh
2024-01-24 15:57:42 -05:00

11 lines
216 B
Bash
Executable File

#!/bin/bash
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