caelestia/quickshell/Wallpaper.qml
2026-01-04 23:23:42 +00:00

21 lines
378 B
QML

import Quickshell
import QtQuick
PanelWindow {
id: background
anchors {
left: true
right: true
bottom: true
top: true
}
aboveWindows: false
Image {
width: background.width
height: background.height
source: "/home/ceres/Pictures/Wallpapers/current"
fillMode: Image.PreserveAspectCrop
}
}