From 7c4cf83d55db8bac38eba162302beef5cb645fcf Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Thu, 17 Jul 2025 22:06:07 -0400 Subject: [PATCH] config for Paths --- shell/config/Paths.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell/config/Paths.qml diff --git a/shell/config/Paths.qml b/shell/config/Paths.qml new file mode 100644 index 0000000..3e93bf5 --- /dev/null +++ b/shell/config/Paths.qml @@ -0,0 +1,13 @@ +import Quickshell + +Singleton { + id: root + + readonly property url home: StandardPaths.standardLocations(StandardPaths.)[0] + readonly property url wallpapers: `${StandardPaths.standardLocations(StandardPaths.HomeLocation)[0]}/Wallpapers` + + readonly property url data: `${StandardPaths.standardLocations(StandardPaths.GenericDataLocation)[0]}/lux` + readonly property url state: `${StandardPaths.standardLocations(StandardPaths.GenericStateLocation)[0]}/lux` + readonly property url cache: `${StandardPaths.standardLocations(StandardPaths.GenericCacheLocation)[0]}/lux` + readonly property url config: `${StandardPaths.standardLocations(StandardPaths.GenericConfigLocation)[0]}/quickshell` +}