26 lines
534 B
QML
26 lines
534 B
QML
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
import QtQuick.Effects
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
PanelWindow {
|
|
anchors {
|
|
top: true
|
|
right: true
|
|
bottom: true
|
|
left: true
|
|
}
|
|
aboveWindows: false
|
|
property var modelData
|
|
screen: modelData
|
|
color: "#111"
|
|
Image {
|
|
source: Quickshell.shellPath("wallpaper")
|
|
anchors.fill: parent
|
|
fillMode: Image.PreserveAspectCrop
|
|
}
|
|
}
|
|
}
|