14 lines
287 B
QML
14 lines
287 B
QML
import QtQuick
|
|
import Quickshell
|
|
|
|
|
|
Item {
|
|
id: root
|
|
Repeater { // Bars
|
|
model: Quickshell.screens
|
|
delegate: Loader {
|
|
active: true // loads object
|
|
sourceComponent: Bar {screen: modelData} // creates instance of bar component
|
|
}
|
|
}
|
|
} |