nichts/modules/style/quickshell/shell/modules/BackgroundImage.qml
Bloxx12 d5dfa36b6d
quickshell: add Background module
This allows me to set my background image using
Quickshell. No need for swww or any other wallpaper
daemon :D
2025-07-13 22:48:11 +02:00

28 lines
517 B
QML

import QtQuick
import Quickshell
import Quickshell.Wayland
PanelWindow {
id: root
exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Background
WlrLayershell.namespace: "shell:background"
anchors {
top: true
bottom: true
left: true
right: true
}
Item {
id: background
anchors.fill: parent
Image {
id: image
asynchronous: true
source: "../../../wholefoods.png"
}
}
}