summaryrefslogtreecommitdiff
path: root/modules/background
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 /modules/background
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 'modules/background')
-rw-r--r--modules/background/Background.qml12
-rw-r--r--modules/background/Visualiser.qml2
-rw-r--r--modules/background/Wallpaper.qml2
3 files changed, 10 insertions, 6 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml
index f8484e1..682da62 100644
--- a/modules/background/Background.qml
+++ b/modules/background/Background.qml
@@ -22,8 +22,9 @@ Loader {
screen: modelData
name: "background"
WlrLayershell.exclusionMode: ExclusionMode.Ignore
- WlrLayershell.layer: WlrLayer.Background
- color: "black"
+ WlrLayershell.layer: Config.background.wallpaperEnabled ? WlrLayer.Background : WlrLayer.Bottom
+ color: Config.background.wallpaperEnabled ? "black" : "transparent"
+ surfaceFormat.opaque: false
anchors.top: true
anchors.bottom: true
@@ -35,8 +36,13 @@ Loader {
anchors.fill: parent
- Wallpaper {
+ Loader {
id: wallpaper
+
+ anchors.fill: parent
+ active: Config.background.wallpaperEnabled
+
+ sourceComponent: Wallpaper {}
}
Visualiser {
diff --git a/modules/background/Visualiser.qml b/modules/background/Visualiser.qml
index c9bb9ef..35a086b 100644
--- a/modules/background/Visualiser.qml
+++ b/modules/background/Visualiser.qml
@@ -13,7 +13,7 @@ Item {
id: root
required property ShellScreen screen
- required property Wallpaper wallpaper
+ required property Item wallpaper
readonly property bool shouldBeActive: Config.background.visualiser.enabled && (!Config.background.visualiser.autoHide || (Hypr.monitorFor(screen)?.activeWorkspace?.toplevels?.values.every(t => t.lastIpcObject?.floating) ?? true))
property real offset: shouldBeActive ? 0 : screen.height * 0.2
diff --git a/modules/background/Wallpaper.qml b/modules/background/Wallpaper.qml
index b5d7d4a..39a48fc 100644
--- a/modules/background/Wallpaper.qml
+++ b/modules/background/Wallpaper.qml
@@ -14,8 +14,6 @@ Item {
property string source: Wallpapers.current
property Image current: one
- anchors.fill: parent
-
onSourceChanged: {
if (!source)
current = null;