33 lines
733 B
QML
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
|
|
}
|
|
}
|
|
}
|
|
}
|