1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

Set exec working directory to home when not defined

This commit is contained in:
bbedward
2025-10-06 15:28:58 -04:00
parent 1e2489ca76
commit 8a99fcf188

View File

@@ -97,7 +97,7 @@ Singleton {
Quickshell.execDetached({
command: cmd,
workingDirectory: desktopEntry.workingDirectory,
workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME"),
});
}
@@ -110,7 +110,7 @@ Singleton {
Quickshell.execDetached({
command: cmd,
workingDirectory: desktopEntry.workingDirectory,
workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME"),
});
}