lux-shell/modules/background/Background.qml
Benjamin Palko 6202b0d6c7 blyat
2025-07-24 14:42:39 -04:00

35 lines
717 B
QML

import QtQuick
import Quickshell
import Quickshell.Wayland
import "../../styled/"
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"
}
}
}