From a1d5185ac84e00deedc7aa1e903b258af3795bca Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 26 Jun 2026 16:00:42 +0200 Subject: [PATCH] fix(hyprlua): launch OpenDeck via native opendeck binary Replace the flatpak invocation with the native `opendeck` command in autostart. Co-Authored-By: Claude Opus 4.8 --- desktopenvs/hyprlua/hypr/usr/autostart.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktopenvs/hyprlua/hypr/usr/autostart.lua b/desktopenvs/hyprlua/hypr/usr/autostart.lua index 5617b06..ee3c85d 100644 --- a/desktopenvs/hyprlua/hypr/usr/autostart.lua +++ b/desktopenvs/hyprlua/hypr/usr/autostart.lua @@ -23,5 +23,5 @@ hl.on("hyprland.start", function() hl.exec_cmd("bash ~/Dotfiles/desktopenvs/hyprlua/scripts/presence-detect.sh") hl.exec_cmd("chamel") hl.exec_cmd("ydotoold") - hl.exec_cmd("flatpak run com.mairtech.OpenDeck") + hl.exec_cmd("opendeck") end)