diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 10:19:46 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 10:19:46 +1000 |
| commit | c665c0ca98d72c172893e8bbd9c893aaa2b9f46e (patch) | |
| tree | 160713bc48b5332c0534d0d235ef7f100344eb58 /modules/background/Background.qml | |
| parent | bar: add scroll actions to fillers (diff) | |
| download | caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.gz caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.bz2 caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.zip | |
feat: border + colour changes
Diffstat (limited to 'modules/background/Background.qml')
| -rw-r--r-- | modules/background/Background.qml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/modules/background/Background.qml b/modules/background/Background.qml new file mode 100644 index 0000000..edd7613 --- /dev/null +++ b/modules/background/Background.qml @@ -0,0 +1,34 @@ +import "root:/widgets" +import "root:/config" +import Quickshell +import Quickshell.Wayland +import QtQuick +import QtQuick.Effects + +Variants { + model: Quickshell.screens + + Scope { + id: scope + + required property ShellScreen modelData + + Border { + screen: scope.modelData + } + + StyledWindow { + id: win + + screen: scope.modelData + name: "background" + exclusionMode: ExclusionMode.Ignore + layer: WlrLayer.Background + + anchors.top: true + anchors.bottom: true + anchors.left: true + anchors.right: true + } + } +} |