21 lines
378 B
QML
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
|
|
}
|
|
|
|
}
|