24 lines
350 B
QML
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
|
|
}
|
|
}
|
|
}
|
|
}
|