From d7b60c7ed25ba5622891b6f96163690b3025e15a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 28 Mar 2024 22:00:55 +0700 Subject: [PATCH] don't spawn bar on all monitors cuz it's not ready --- .config/ags/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/ags/config.js b/.config/ags/config.js index 6a40909fb..7103b2a71 100644 --- a/.config/ags/config.js +++ b/.config/ags/config.js @@ -69,9 +69,9 @@ App.config({ }); // Stuff that don't need to be toggled. And they're async so ugh... -// Bar().catch(print); // Use this to debug the bar. Single monitor only. +Bar().catch(print); // Use this to debug the bar. Single monitor only. // BarCornerTopleft().catch(print); // Use this to debug the bar. Single monitor only. // BarCornerTopright().catch(print); // Use this to debug the bar. Single monitor only. -forMonitors(Bar); +// forMonitors(Bar); forMonitors(BarCornerTopleft); forMonitors(BarCornerTopright);