From 818a04ffae3a37832ce483123fbe95838536d6fd Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Mon, 16 Jun 2025 16:49:58 -0300 Subject: [PATCH] :boom: fix(hypr/scripts/exec.sh): some commands not running when using hyprctl stopped using Hyprland's exec dispatcher, no need for it --- hypr/scripts/exec.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypr/scripts/exec.sh b/hypr/scripts/exec.sh index d0ddf68..08c3485 100644 --- a/hypr/scripts/exec.sh +++ b/hypr/scripts/exec.sh @@ -9,8 +9,8 @@ if uwsm check is-active; then - hyprctl dispatch exec "uwsm app -- $@" > /dev/null + exec uwsm-app -- $@ exit 0 fi -hyprctl dispatch exec "$@" > /dev/null +exec $@