22 lines
323 B
QML
22 lines
323 B
QML
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ShellRoot {
|
|
id: shellroot
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Scope {
|
|
property var modelData
|
|
|
|
Bar {
|
|
screen: modelData
|
|
}
|
|
|
|
ReloadPopup {}
|
|
}
|
|
}
|
|
}
|