17 lines
259 B
QML
17 lines
259 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Quickshell
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Bar {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
}
|