From eda873b91ee9946b5a98d9468254cb289d282865 Mon Sep 17 00:00:00 2001 From: Shreyas Mali <83450905+toastsandwich@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:39:07 +0000 Subject: [PATCH] Fixing yabaiPath bug which cause 'something went wrong error' --- index.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.jsx b/index.jsx index 17e10240..48da09bd 100644 --- a/index.jsx +++ b/index.jsx @@ -36,11 +36,15 @@ const refreshFrequency = false; const settings = Settings.get(); const { - yabaiPath = "/usr/local/bin/yabai", shell, enableServer, yabaiServerRefresh, } = settings.global; + + +const yabaiPath = "/usr/local/bin/yabai"; + + const { hideWindowTitle, displayOnlyIcon, displaySkhdMode } = settings.process; const disableSignals = enableServer && yabaiServerRefresh;