quickshell-config/shell.qml
2025-05-18 00:22:03 +02:00

24 lines
350 B
QML

pragma ComponentBehavior: Bound
import Quickshell
import QtQuick
ShellRoot {
id: shellroot
Component.onCompleted: [Launcher.init()]
ReloadPopup {}
Variants {
model: Quickshell.screens
Scope {
property var modelData
Bar {
screen: modelData
}
}
}
}