quickshell-config/shell.qml
2025-05-06 09:39:04 +02:00

24 lines
369 B
QML

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