2026-01-18 15:54:25 +01:00
|
|
|
pragma ComponentBehavior: Bound
|
2026-01-15 15:14:29 +01:00
|
|
|
import Quickshell
|
|
|
|
|
import QtQuick
|
|
|
|
|
import Quickshell.Wayland
|
2026-01-19 12:45:35 +01:00
|
|
|
import qs.settings
|
2026-01-15 15:14:29 +01:00
|
|
|
|
|
|
|
|
Variants {
|
|
|
|
|
id: root
|
|
|
|
|
model: Quickshell.screens
|
|
|
|
|
delegate: WlrLayershell {
|
|
|
|
|
id: wpShell
|
2026-01-19 12:45:35 +01:00
|
|
|
aboveWindows: false
|
|
|
|
|
exclusionMode: ExclusionMode.Ignore
|
2026-01-15 17:43:03 +01:00
|
|
|
|
|
|
|
|
required property var modelData
|
|
|
|
|
screen: modelData
|
2026-01-15 15:14:29 +01:00
|
|
|
anchors {
|
|
|
|
|
left: true
|
|
|
|
|
top: true
|
|
|
|
|
bottom: true
|
|
|
|
|
right: true
|
|
|
|
|
}
|
|
|
|
|
layer: WlrLayer.Background
|
2026-01-18 15:54:25 +01:00
|
|
|
|
2026-01-15 15:14:29 +01:00
|
|
|
Image {
|
2026-01-18 15:54:25 +01:00
|
|
|
anchors.fill: parent
|
2026-01-15 15:14:29 +01:00
|
|
|
fillMode: Image.Stretch
|
|
|
|
|
source: Settings.config.currentWall
|
|
|
|
|
}
|
2026-01-26 18:20:36 +01:00
|
|
|
ScreenCorners {}
|
2026-01-15 15:14:29 +01:00
|
|
|
}
|
|
|
|
|
}
|