initial commit

This commit is contained in:
2026-04-15 09:23:45 +02:00
commit 56e07449a8
8 changed files with 759 additions and 0 deletions

18
shell.qml Normal file
View File

@@ -0,0 +1,18 @@
//@ pragma UseQApplication
pragma ComponentBehavior: Bound
import Quickshell
import QtQuick
import "bar"
// Root scope — creates one Bar per connected screen.
Scope {
Variants {
model: Quickshell.screens
Bar {
required property var modelData
screen: modelData
}
}
}