diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 3 | ||||
| -rw-r--r-- | config/LauncherConfig.qml | 1 | ||||
| -rw-r--r-- | config/UserPaths.qml | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/config/Config.qml b/config/Config.qml index 40ca036..cc268e9 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -263,7 +263,6 @@ Singleton { enabled: launcher.enabled, showOnHover: launcher.showOnHover, maxShown: launcher.maxShown, - maxWallpapers: launcher.maxWallpapers, specialPrefix: launcher.specialPrefix, actionPrefix: launcher.actionPrefix, enableDangerousActions: launcher.enableDangerousActions, @@ -408,7 +407,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" } |