initial commit

This commit is contained in:
Bloxx12 2025-05-03 13:04:07 +02:00
commit 35524b5e6e
7 changed files with 412 additions and 0 deletions

22
shell.qml Normal file
View file

@ -0,0 +1,22 @@
import Quickshell
import Quickshell.Io
import QtQuick
import QtQuick.Layouts
ShellRoot {
id: shellroot
Variants {
model: Quickshell.screens
Scope {
property var modelData
Bar {
screen: modelData
}
ReloadPopup {}
}
}
}