summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-08 17:00:30 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-08 17:00:30 -0500
commit1e258986aedae45f6046731840a38613997861a8 (patch)
tree97bc34be43c96ddf3251ad98f0bab7ec664dab28 /config
parentremove pfp (diff)
downloadcaelestia-shell-1e258986aedae45f6046731840a38613997861a8.tar.gz
caelestia-shell-1e258986aedae45f6046731840a38613997861a8.tar.bz2
caelestia-shell-1e258986aedae45f6046731840a38613997861a8.zip
hardcode single wallpaper
Diffstat (limited to 'config')
-rw-r--r--config/Config.qml3
-rw-r--r--config/LauncherConfig.qml1
-rw-r--r--config/UserPaths.qml2
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"
}