diff --git a/shell/modules/background/Background.qml b/shell/modules/background/Background.qml new file mode 100644 index 0000000..343ff38 --- /dev/null +++ b/shell/modules/background/Background.qml @@ -0,0 +1,35 @@ +import QtQuick +import Quickshell +import Quickshell.Wayland +import "../../widgets" + +Variants { + model: Quickshell.screens + + StyledWindow { + id: background + + required property ShellScreen modelData + + screen: modelData + name: "background" + WlrLayershell.exclusionMode: ExclusionMode.Ignore + WlrLayershell.layer: WlrLayer.Background + color: "black" + + anchors.top: true + anchors.bottom: true + anchors.left: true + anchors.right: true + + Image { + id: wallpaper + + anchors.fill: parent + + opacity: 1 + + source: "/home/baobeld/Wallpapers/bailey-zindel-NRQV-hBF10M-unsplash.jpg" + } + } +}