From bdb5f7542c93c067f4f09e3506ffe7b44949f22f Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Tue, 16 Jun 2026 12:15:02 +0100 Subject: [PATCH] Fixed noctalia launching --- 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 6c3b683..fc74708 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-shell $safe_args" + exec qs -c "noctalia $safe_args" else - exec qs -c "noctalia-shell" + exec qs -c "noctalia" fi else - exec noctalia-shell "$@" + exec noctalia "$@" fi