diff options
| author | Unrectified <83581717+Unrectified@users.noreply.github.com> | 2026-02-19 12:34:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-19 22:34:21 +1100 |
| commit | 69adb9208723467014cf21f401f2ba1804f38376 (patch) | |
| tree | 626e199469ed037b89a6665abdb6a7fe2ff905f3 /modules/background/Visualiser.qml | |
| parent | launcher: add favorite apps (#946) (diff) | |
| download | caelestia-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/Visualiser.qml')
| -rw-r--r-- | modules/background/Visualiser.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |