15 lines
376 B
QML
15 lines
376 B
QML
// shell.qml - entry point
|
|
// QuickShell scans this directory and auto-imports neighbours (Bar, Theme, Exec, ...).
|
|
// Do NOT create a qmldir file - QuickShell synthesises one automatically.
|
|
import Quickshell
|
|
|
|
ShellRoot {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
Bar {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
}
|