From ebe8fb1657f51a338bf665c56decd5fafbb6717c Mon Sep 17 00:00:00 2001 From: noah Date: Fri, 19 Aug 2022 16:08:45 -0500 Subject: [PATCH] Adjust bar log file pathing --- polybar/launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polybar/launch.sh b/polybar/launch.sh index 221c0ef..8269762 100755 --- a/polybar/launch.sh +++ b/polybar/launch.sh @@ -10,7 +10,7 @@ while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done for m in $(polybar --list-monitors | cut -d":" -f1); do MONITOR=$m polybar top -c ~/.config/polybar/config-top.ini > ~/.config/polybar/top.log & - MONITOR=$m polybar bottom -c ~/.config/polybar/config-bottom.ini > ~/config/polybar/bottom.log & + MONITOR=$m polybar bottom -c ~/.config/polybar/config-bottom.ini > ~/.config/polybar/bottom.log & done exit 0