initial commit

This commit is contained in:
Damocles 2026-04-10 10:49:48 +02:00
commit 9fde6d4fc6
27 changed files with 1110 additions and 0 deletions

15
shell.qml Normal file
View file

@ -0,0 +1,15 @@
//@ pragma Env QS_NO_RELOAD_POPUP=1
import "modules"
import Quickshell
ShellRoot {
Variants {
model: Quickshell.screens
delegate: Bar {
required property var modelData
screen: modelData
}
}
}