From f6eab13094f4bd2b91a28707af364ef45fea966b Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 22 Jul 2025 15:52:08 -0400 Subject: [PATCH] fix paths --- config/Paths.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/Paths.qml b/config/Paths.qml index 3e93bf5..21a23f3 100644 --- a/config/Paths.qml +++ b/config/Paths.qml @@ -1,13 +1,13 @@ +import QtQuick 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` + readonly property url data: `${StandardPaths.standardLocations(StandardPaths.GenericDataLocation)[0]}/lux` + readonly property url home: StandardPaths.standardLocations(StandardPaths.HomeLocation)[0] + readonly property url state: `${StandardPaths.standardLocations(StandardPaths.GenericStateLocation)[0]}/lux` + readonly property url wallpapers: `${StandardPaths.standardLocations(StandardPaths.HomeLocation)[0]}/Wallpapers` }