blob: f15022d9375d40c45251d88453eab6fcacbdfc20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import Quickshell
import Quickshell.Wayland
import QtQuick
PanelWindow {
WlrLayershell.layer: WlrLayer.Background
WlrLayershell.exclusiveZone: -1
anchors {
top: true
bottom: true
left: true
right: true
}
Image {
anchors.fill: parent
source: "./wallpaper.jpg"
fillMode: Image.PreserveAspectCrop
}
}
|