summaryrefslogtreecommitdiff
path: root/utils/Paths.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-27 17:17:07 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-27 17:17:07 +1000
commit800b5e6515b2d68e589bf2307cd78ce8e059fcba (patch)
tree54a0ae79460a440b93d8bd21e0ec6793cc6d2e2a /utils/Paths.qml
parentpicker: better client detection (diff)
downloadcaelestia-shell-800b5e6515b2d68e589bf2307cd78ce8e059fcba.tar.gz
caelestia-shell-800b5e6515b2d68e589bf2307cd78ce8e059fcba.tar.bz2
caelestia-shell-800b5e6515b2d68e589bf2307cd78ce8e059fcba.zip
plugin: saveItem ensure parent dir
Also const everything and format
Diffstat (limited to '')
-rw-r--r--utils/Paths.qml4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/Paths.qml b/utils/Paths.qml
index b45115d..71be877 100644
--- a/utils/Paths.qml
+++ b/utils/Paths.qml
@@ -38,10 +38,6 @@ Singleton {
return stringify(path).replace("file://", "");
}
- function mkdir(path: url): void {
- Quickshell.execDetached(["mkdir", "-p", strip(path)]);
- }
-
function copy(from: url, to: url): void {
Quickshell.execDetached(["cp", strip(from), strip(to)]);
}