quickshell-config/shell.qml
2025-05-03 13:04:20 +02:00

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 {}
}
}
}