From b0b4523905f2b3efbb4d7532dcb39a6d306cdc51 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 8 Jan 2026 17:00:30 -0500 Subject: hardcode single wallpaper --- config/Config.qml | 3 +-- config/LauncherConfig.qml | 1 - config/UserPaths.qml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config/Config.qml b/config/Config.qml index 9ab1646..b5e89f9 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -278,7 +278,6 @@ Singleton { enabled: launcher.enabled, showOnHover: launcher.showOnHover, maxShown: launcher.maxShown, - maxWallpapers: launcher.maxWallpapers, specialPrefix: launcher.specialPrefix, actionPrefix: launcher.actionPrefix, enableDangerousActions: launcher.enableDangerousActions, @@ -423,7 +422,7 @@ Singleton { function serializePaths(): var { return { - wallpaperDir: paths.wallpaperDir, + wallpaper: paths.wallpaper, sessionGif: paths.sessionGif, mediaGif: paths.mediaGif }; diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index ea55838..896882f 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -4,7 +4,6 @@ JsonObject { property bool enabled: true property bool showOnHover: false property int maxShown: 7 - property int maxWallpapers: 9 // Warning: even numbers look bad property string specialPrefix: "@" property int dragThreshold: 50 property bool vimKeybinds: false diff --git a/config/UserPaths.qml b/config/UserPaths.qml index f8de267..6deef01 100644 --- a/config/UserPaths.qml +++ b/config/UserPaths.qml @@ -2,7 +2,7 @@ import qs.utils import Quickshell.Io JsonObject { - property string wallpaperDir: `${Paths.pictures}/Wallpapers` + property string wallpaper: `${Paths.config}/wallpaper.png` property string sessionGif: "root:/assets/kurukuru.gif" property string mediaGif: "root:/assets/bongocat.gif" } -- cgit v1.2.3-freya