From 6b9ecc5b3d75673537a3871172999387e8b7b6c5 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 23 Sep 2025 23:01:21 -0400 Subject: [PATCH 1/2] add wallpaper config --- components/composite/WallpaperList.qml | 2 +- config/Config.qml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/components/composite/WallpaperList.qml b/components/composite/WallpaperList.qml index 2a67f31..3dfb330 100644 --- a/components/composite/WallpaperList.qml +++ b/components/composite/WallpaperList.qml @@ -19,7 +19,7 @@ ListView { implicitHeight: 90 model: FolderListModel { nameFilters: ["*.jpg"] - folder: `${Paths.home}/Wallpapers` + folder: `file://${Paths.expandTilde(Config.wallpaper.directory)}` showDirs: false } delegate: Item { diff --git a/config/Config.qml b/config/Config.qml index 036f14c..416d739 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -7,6 +7,7 @@ Singleton { id: root readonly property alias powermenu: adapter.powermenu + readonly property alias wallpaper: adapter.wallpaper FileView { path: `${Paths.config}/shell.json` @@ -19,6 +20,7 @@ Singleton { id: adapter property var powermenu: PowerMenu {} + property var wallpaper: Wallpaper {} } } @@ -30,4 +32,8 @@ Singleton { property string text property string command } + + component Wallpaper: JsonObject { + property string directory + } } From 2aa72accda39d3f525166f32dbe1777d2ead5857 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 23 Sep 2025 23:01:33 -0400 Subject: [PATCH 2/2] strip unused WallpaperService stuff --- services/WallpaperService.qml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/services/WallpaperService.qml b/services/WallpaperService.qml index ea6bd0e..94adbbd 100644 --- a/services/WallpaperService.qml +++ b/services/WallpaperService.qml @@ -1,37 +1,13 @@ pragma Singleton import qs.config -import qs.utils import Quickshell import Quickshell.Io Singleton { id: root - property string directory: "~/Wallpapers/" - property alias files: properties.files property alias currentWallpaper: properties.currentWallpaper - property list fileTypes: ["jpg", "jpeg", "png"] - property string command: `find ${root.directory} -maxdepth 1 -type f` - - Process { - running: true - command: ["bash", "-c", `find ${root.directory} -maxdepth 1 -type f`] - stdout: StdioCollector { - onStreamFinished: { - root.files = this.text.split("\n"); - } - } - } - - DirectoryWatcher { - path: root.directory - fileFilter: ["jpg", "jpeg", "png"] - onCreated: path => root.files.push(path) - onDeleted: path => root.files.filter(file => file != path) - onMovedFrom: path => root.files.filter(file => file != path) - onMovedTo: path => path => root.files.push(path) - } FileView { path: `${Paths.cache}/wallpaper.json` @@ -46,7 +22,6 @@ Singleton { id: properties property url currentWallpaper: "" - property list files: [] } } }