quickshell-config/shell.qml

25 lines
350 B
QML
Raw Permalink Normal View History

2025-05-06 09:38:56 +02:00
pragma ComponentBehavior: Bound
2025-05-03 13:04:07 +02:00
import Quickshell
import QtQuick
ShellRoot {
id: shellroot
2025-05-06 10:30:18 +02:00
Component.onCompleted: [Launcher.init()]
2025-05-06 09:38:56 +02:00
ReloadPopup {}
2025-05-03 13:04:07 +02:00
Variants {
model: Quickshell.screens
Scope {
property var modelData
Bar {
screen: modelData
}
}
}
}