summaryrefslogtreecommitdiff
path: root/config/LauncherConfig.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-03 23:56:37 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-03 23:56:37 +1000
commit00d3c1a472888817d7649391d4a8485c5fc6f6f5 (patch)
tree45b351c62f61ede55acfc209dde686f1c161a942 /config/LauncherConfig.qml
parentfeat: use multieffect instead of qt5compat (diff)
downloadcaelestia-shell-00d3c1a472888817d7649391d4a8485c5fc6f6f5.tar.gz
caelestia-shell-00d3c1a472888817d7649391d4a8485c5fc6f6f5.tar.bz2
caelestia-shell-00d3c1a472888817d7649391d4a8485c5fc6f6f5.zip
feat: launcher wallpaper selector
Diffstat (limited to 'config/LauncherConfig.qml')
-rw-r--r--config/LauncherConfig.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml
index 2bf465d..18489f7 100644
--- a/config/LauncherConfig.qml
+++ b/config/LauncherConfig.qml
@@ -5,11 +5,14 @@ import QtQuick
Singleton {
readonly property int maxShown: 8
+ readonly property int maxWallpapers: 9 // Warning: even numbers look bad
readonly property string actionPrefix: ">"
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
- readonly property int width: 600
+ readonly property int itemWidth: 600
readonly property int itemHeight: 57
+ readonly property int wallpaperWidth: 280
+ readonly property int wallpaperHeight: 200
}
}