summaryrefslogtreecommitdiff
path: root/modules/background/Background.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
commitc665c0ca98d72c172893e8bbd9c893aaa2b9f46e (patch)
tree160713bc48b5332c0534d0d235ef7f100344eb58 /modules/background/Background.qml
parentbar: add scroll actions to fillers (diff)
downloadcaelestia-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.qml34
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
+ }
+ }
+}