31 lines
649 B
QML
31 lines
649 B
QML
import Quickshell
|
|
import QtQuick
|
|
import Quickshell.Wayland
|
|
|
|
Variants {
|
|
model: Quickshell.screens;
|
|
|
|
delegate: Component {
|
|
PanelWindow {
|
|
id: background
|
|
|
|
required property var modelData
|
|
screen: modelData
|
|
|
|
anchors {
|
|
left: true
|
|
right: true
|
|
bottom: true
|
|
top: true
|
|
}
|
|
WlrLayershell.layer: WlrLayer.Background
|
|
|
|
Image {
|
|
width: background.width
|
|
height: background.height
|
|
source: "/home/ceres/.local/state/niri/wallpaper"
|
|
fillMode: Image.PreserveAspectCrop
|
|
}
|
|
}
|
|
}
|
|
}
|