From 25f838b454b6094a93c88a86b22a1a57db959852 Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 28 Dec 2025 14:16:38 -0600 Subject: [PATCH] fix(hyprland): workspace switch on normal workspace --- apps/hyprland/scripts.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/hyprland/scripts.nix b/apps/hyprland/scripts.nix index 95ba9bb..4004e83 100644 --- a/apps/hyprland/scripts.nix +++ b/apps/hyprland/scripts.nix @@ -28,8 +28,9 @@ # Switch to the requested normal workspace $HYPRCTL dispatch workspace "''${chosen_workspace_num}" else - echo "[ERR] workspace is not special" - exit 1 + echo "[LOG] workspace is not special" + $HYPRCTL dispatch workspace "''${chosen_workspace_num}" + exit 0 fi exit 0