17 lines
432 B
QML
17 lines
432 B
QML
//@ pragma UseQApplication
|
|
// Required: Quickshell renders the system-tray context menu (right-click in
|
|
// Tray.qml -> item.display()) via QtWidgets' QMenu. Dropping this loads the
|
|
// lighter QGuiApplication but breaks tray menus. Verified 2026-06-08.
|
|
|
|
import Quickshell
|
|
import "widgets"
|
|
|
|
// Entry point: spawn one Bar on every connected monitor.
|
|
ShellRoot {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Bar {}
|
|
}
|
|
}
|