mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-29 07:52:50 -05:00
Set exec working directory to home when not defined
This commit is contained in:
@@ -97,7 +97,7 @@ Singleton {
|
|||||||
|
|
||||||
Quickshell.execDetached({
|
Quickshell.execDetached({
|
||||||
command: cmd,
|
command: cmd,
|
||||||
workingDirectory: desktopEntry.workingDirectory,
|
workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME"),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -110,7 +110,7 @@ Singleton {
|
|||||||
|
|
||||||
Quickshell.execDetached({
|
Quickshell.execDetached({
|
||||||
command: cmd,
|
command: cmd,
|
||||||
workingDirectory: desktopEntry.workingDirectory,
|
workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME"),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user