quickshell-config/shell.qml

23 lines
323 B
QML
Raw Normal View History

2025-05-03 13:04:07 +02:00
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 {}
}
}
}