diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-03 18:55:05 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-03 18:55:05 +1000 |
| commit | 1de24676bb80ce633a026f336242d486b40dd3c8 (patch) | |
| tree | dbaff0e2ecfae215c64ea422a44b68c6b40af6bf /services/Wallpapers.qml | |
| parent | plugin/fsm: incremental updates (diff) | |
| download | caelestia-shell-1de24676bb80ce633a026f336242d486b40dd3c8.tar.gz caelestia-shell-1de24676bb80ce633a026f336242d486b40dd3c8.tar.bz2 caelestia-shell-1de24676bb80ce633a026f336242d486b40dd3c8.zip | |
internal: refactor Paths util
Diffstat (limited to 'services/Wallpapers.qml')
| -rw-r--r-- | services/Wallpapers.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/Wallpapers.qml b/services/Wallpapers.qml index 39cbfb8..209ce1b 100644 --- a/services/Wallpapers.qml +++ b/services/Wallpapers.qml @@ -10,7 +10,7 @@ import QtQuick Searcher { id: root - readonly property string currentNamePath: Paths.strip(`${Paths.state}/wallpaper/path.txt`) + readonly property string currentNamePath: `${Paths.state}/wallpaper/path.txt` readonly property list<string> smartArg: Config.services.smartScheme ? [] : ["--no-smart"] property bool showPreview: false @@ -74,7 +74,7 @@ Searcher { id: wallpapers recursive: true - path: Paths.expandTilde(Paths.wallsdir) + path: Paths.wallsdir filter: FileSystemModel.Images } |