mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
Launcher,Dock,Taskbar,Workspace: use execDetached to (hopefully) let programs survive QS crash
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user