From 5ee9b2a5983be21b67625cfc60ec7cd76f484a11 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Tue, 16 Jun 2026 12:56:57 +0100 Subject: [PATCH] Revert "Fixed noctalia launching" This reverts commit bdb5f7542c93c067f4f09e3506ffe7b44949f22f. --- dot_local/bin/executable_noctalia-cli | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dot_local/bin/executable_noctalia-cli b/dot_local/bin/executable_noctalia-cli index fc74708..6c3b683 100644 --- a/dot_local/bin/executable_noctalia-cli +++ b/dot_local/bin/executable_noctalia-cli @@ -8,10 +8,10 @@ if command -v qs >/dev/null 2>&1; then if [[ $# -gt 0 ]]; then printf -v safe_args '%q ' "$@" safe_args="${safe_args% }" - exec qs -c "noctalia $safe_args" + exec qs -c "noctalia-shell $safe_args" else - exec qs -c "noctalia" + exec qs -c "noctalia-shell" fi else - exec noctalia "$@" + exec noctalia-shell "$@" fi