33 lines
699 B
QML
Raw Permalink Normal View History

2026-01-18 15:54:25 +01:00
pragma ComponentBehavior: Bound
2026-02-12 00:24:00 +01:00
import Quickshell
import QtQuick
import Quickshell.Wayland
import qs.settings
2026-02-12 00:24:00 +01:00
Variants {
id: root
2026-02-12 00:24:00 +01:00
model: Quickshell.screens
delegate: WlrLayershell {
id: wpShell
aboveWindows: false
exclusionMode: ExclusionMode.Ignore
required property var modelData
screen: modelData
anchors {
left: true
top: true
bottom: true
right: true
}
2026-02-12 00:24:00 +01:00
layer: WlrLayer.Background
2026-01-18 15:54:25 +01:00
2026-02-12 00:24:00 +01:00
Image {
anchors.fill: parent
fillMode: Image.PreserveAspectCrop
source: Settings.config.currentWall
}
2026-02-12 00:24:00 +01:00
ScreenCorners {}
}
}