1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

Re-do plugin scanning

This commit is contained in:
bbedward
2025-10-09 13:22:33 -04:00
parent e32622ac48
commit 9de5e3253e
3 changed files with 222 additions and 214 deletions

View File

@@ -38,6 +38,10 @@ Singleton {
return stringify(path).replace("file://", "")
}
function toFileUrl(path: string): string {
return path.startsWith("file://") ? path : "file://" + path
}
function mkdir(path: url): void {
Quickshell.execDetached(["mkdir", "-p", strip(path)])
}