quickshell-config/shell.qml

25 lines
369 B
QML
Raw 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 09:38:56 +02:00
Component.onCompleted: [Launcher.init(), AudioPopup.init()]
ReloadPopup {}
2025-05-03 13:04:07 +02:00
Variants {
model: Quickshell.screens
Scope {
property var modelData
Bar {
screen: modelData
}
}
}
}