tray menu

This commit is contained in:
Zacharias-Brohn
2025-10-28 16:40:28 +01:00
parent 762bae37cb
commit 1b12ff6e7f
4 changed files with 140 additions and 2 deletions
+29
View File
@@ -0,0 +1,29 @@
import Quickshell
import QtQuick
import Quickshell.Wayland
Scope {
Variants {
model: Quickshell.screens
PanelWindow {
id: root
required property var modelData
screen: modelData
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Bottom
anchors {
top: true
left: true
right: true
bottom: true
}
Image {
id: wallpaperImage
anchors.fill: parent
source: "/mnt/IronWolf/SDImages/SWWW_Wals/ComfyUI_00037_.png"
fillMode: Image.PreserveAspectFit
}
}
}
}