22 lines
412 B
QML
22 lines
412 B
QML
//@ pragma UseQApplication
|
|
pragma ComponentBehavior: Bound
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
import "bar"
|
|
import "notifications"
|
|
|
|
// Root scope — creates one Bar per connected screen plus a single notification overlay.
|
|
Scope {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Bar {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
|
|
NotificationPopups {}
|
|
}
|