From f00b406d8027819639419246411d2e3c3a6b818a Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Wed, 1 Jan 2020 18:48:39 -0500 Subject: [PATCH] Update launch_polybar --- .local/bin/launch_polybar | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/launch_polybar b/.local/bin/launch_polybar index 51c8e913..544785d1 100755 --- a/.local/bin/launch_polybar +++ b/.local/bin/launch_polybar @@ -4,8 +4,8 @@ killall -q polybar # Wait until the processes have been shut down -while pgrep -x polybar >/dev/null; do sleep 1; done +# while pgrep -x polybar >/dev/null; do sleep 1; done -for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar default & done +for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar main & done echo "Bars launched..."