summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorUnrectified <83581717+Unrectified@users.noreply.github.com>2026-02-19 12:34:21 +0100
committerGitHub <noreply@github.com>2026-02-19 22:34:21 +1100
commit69adb9208723467014cf21f401f2ba1804f38376 (patch)
tree626e199469ed037b89a6665abdb6a7fe2ff905f3 /config
parentlauncher: add favorite apps (#946) (diff)
downloadcaelestia-shell-69adb9208723467014cf21f401f2ba1804f38376.tar.gz
caelestia-shell-69adb9208723467014cf21f401f2ba1804f38376.tar.bz2
caelestia-shell-69adb9208723467014cf21f401f2ba1804f38376.zip
feat: add wallpaperEnabled option (#1187)
* fix: change background color to none allowing other wallpaper engine and background enabled * feat: add wallpaperEnabled property and toggle in appearance settings * fix background: Make it "black" if wallpaper is enabled, otherwise "transparent" * fix: separate Visualiser from Wallpaper (hope I didn't made more shit buh) * fix: transparency not working & layer position * fix --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Diffstat (limited to 'config')
-rw-r--r--config/BackgroundConfig.qml1
-rw-r--r--config/Config.qml1
2 files changed, 2 insertions, 0 deletions
diff --git a/config/BackgroundConfig.qml b/config/BackgroundConfig.qml
index b8a8ad9..8383f52 100644
--- a/config/BackgroundConfig.qml
+++ b/config/BackgroundConfig.qml
@@ -2,6 +2,7 @@ import Quickshell.Io
JsonObject {
property bool enabled: true
+ property bool wallpaperEnabled: true
property DesktopClock desktopClock: DesktopClock {}
property Visualiser visualiser: Visualiser {}
diff --git a/config/Config.qml b/config/Config.qml
index 7851c3b..1ec47c1 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -160,6 +160,7 @@ Singleton {
function serializeBackground(): var {
return {
enabled: background.enabled,
+ wallpaperEnabled: background.wallpaperEnabled,
desktopClock: {
enabled: background.desktopClock.enabled,
scale: background.desktopClock.scale,