From 9a7cf1242d296dbdb9c03df48ab09054960295aa Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Mon, 18 May 2026 21:48:24 +0200 Subject: feat(quickshell): basic bar, tray, notification --- modules/system/quickshell/Background.qml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 modules/system/quickshell/Background.qml (limited to 'modules/system/quickshell/Background.qml') diff --git a/modules/system/quickshell/Background.qml b/modules/system/quickshell/Background.qml new file mode 100644 index 0000000..2bf9ae6 --- /dev/null +++ b/modules/system/quickshell/Background.qml @@ -0,0 +1,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 + } +} -- cgit v1.3.1