Launcher,Dock,Taskbar,Workspace: use execDetached to (hopefully) let programs survive QS crash

This commit is contained in:
Ly-sec
2025-12-22 12:53:25 +01:00
parent 58cb73ebae
commit 01022c45c1
5 changed files with 21 additions and 7 deletions
+5 -1
View File
@@ -119,7 +119,11 @@ PopupWindow {
"icon": "chevron-right",
"text": action.name,
"action": function () {
action.execute();
if (action.command && action.command.length > 0) {
Quickshell.execDetached(action.command);
} else if (action.execute) {
action.execute();
}
}
});
});