dots/quickshell/shell/Modules/Wallpaper.qml
2026-02-14 17:22:42 +00:00

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
}
}
}
}