caelestia/quickshell/shell/Wallpaper.qml
2026-01-06 16:58:34 +00:00

22 lines
425 B
QML

import Quickshell
import QtQuick
import Quickshell.Wayland
PanelWindow {
id: background
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
}
}