14 lines
207 B
QML
14 lines
207 B
QML
//@ pragma UseQApplication
|
|
|
|
import Quickshell
|
|
import "widgets"
|
|
|
|
// Entry point: spawn one Bar on every connected monitor.
|
|
ShellRoot {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Bar {}
|
|
}
|
|
}
|