Files
monoshell/Wall.qml
2026-05-13 15:38:59 -07:00

33 lines
733 B
QML

import Quickshell
import Quickshell.Widgets
import Quickshell.Io
import QtQuick
import QtQuick.Effects
Variants {
model: Quickshell.screens
PanelWindow {
id: bg
anchors {
top: true
right: true
bottom: true
left: true
}
exclusionMode: ExclusionMode.Ignore
aboveWindows: false
property var modelData
screen: modelData
color: "#111"
ClippingRectangle {
anchors.fill: parent
radius: 13
Image {
source: Quickshell.shellPath("wallpaper")
anchors.fill: parent
fillMode: Image.PreserveAspectCrop
}
}
}
}