diff --git a/.config/polybar/launch.sh b/.config/polybar/launch.sh index 1d2aa40..fef637d 100755 --- a/.config/polybar/launch.sh +++ b/.config/polybar/launch.sh @@ -11,11 +11,11 @@ while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done # List monitors to load the bars on every one of them if type "xrandr"; then for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do - MONITOR=$m polybar top -c ~/.config/polybar/config-top.ini & - MONITOR=$m polybar bottom -c ~/.config/polybar/config-bottom.ini & + MONITOR=$m polybar -q top -c ~/.config/polybar/config-top.ini & + # MONITOR=$m polybar -q bottom -c ~/.config/polybar/config-bottom.ini & done else # Launch bar1 and bar2 - polybar top -c ~/.config/polybar/config-top.ini & - polybar bottom -c ~/.config/polybar/config-bottom.ini & + polybar -q top -c ~/.config/polybar/config-top.ini & + # polybar -q bottom -c ~/.config/polybar/config-bottom.ini & fi