From 651277552b76d7099c61c085ae0408f116b51c79 Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 31 Jul 2018 20:05:24 -0500 Subject: [PATCH] Polybar: Fix logging --- .config/polybar/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/polybar/start.sh b/.config/polybar/start.sh index 07a2a2fc..6025ce6b 100755 --- a/.config/polybar/start.sh +++ b/.config/polybar/start.sh @@ -13,7 +13,7 @@ export PB_MONITOR=$(xrandr -q | awk '/primary/{print $1}') if [[ $PB_MONITOR == "" ]]; then unset PB_MONITOR fi -printf '[INFO] Starting Polybar primary on monitor $PB_MONITOR' +printf "[INFO] Starting Polybar primary on monitor $PB_MONITOR" polybar -r primary& polybar -r primary-2& # ...and then moving on to secondaries, if we have them @@ -25,7 +25,7 @@ if [[ $secondary_monitors == "" ]]; then exit 0 fi for monitor in $secondary_monitors; do - printf '[INFO] Starting Polybar secondary on monitor $monitor' + printf "[INFO] Starting Polybar secondary on monitor $monitor" PB_MONITOR=$monitor polybar -r secondary done