diff options
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 + } + } +} |