From 033a5e203fcb029c274fcdcd42f60862e05d9f40 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 3 Sep 2019 12:35:31 +0100 Subject: [PATCH] No need to have polybar listen for FS events --- files/launch-polybar.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/launch-polybar.sh b/files/launch-polybar.sh index 0e03a53..3c16430 100644 --- a/files/launch-polybar.sh +++ b/files/launch-polybar.sh @@ -5,6 +5,6 @@ pkill polybar for m in $(polybar --list-monitors | cut -d":" -f1); do - MONITOR=$m polybar --reload top & - MONITOR=$m polybar --reload bottom & + MONITOR=$m polybar top & + MONITOR=$m polybar bottom & done