hefty: morphing thingy

This commit is contained in:
end-4
2026-01-04 22:08:53 +01:00
parent fd86b282a6
commit f3e26d8f22
7 changed files with 388 additions and 1 deletions
@@ -0,0 +1,15 @@
import QtQuick
import Quickshell
// The stuff that sits on the "top" layer for layershells. Not to be confused with "toplevels" as in windows.
Scope {
id: root
Variants {
model: Quickshell.screens
delegate: HTopLayerPanel {
required property var modelData
screen: modelData
}
}
}