40 lines
830 B
QML
40 lines
830 B
QML
// shell.qml - entry point
|
|
//@ pragma UseQApplication
|
|
import Quickshell
|
|
import "./modules"
|
|
import "./modules/overview"
|
|
|
|
ShellRoot {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
Bar {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
Variants {
|
|
model: Quickshell.screens
|
|
PowerMenuPopup {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
MediaPopup {
|
|
required property var modelData
|
|
screen: modelData
|
|
}
|
|
}
|
|
|
|
WallpaperPopup {
|
|
screen: Quickshell.screens[0]
|
|
}
|
|
|
|
// Workspace overview (SUPER+TAB-style popup) — merged from ./overview,
|
|
// see modules/overview/CREDITS.md for attribution.
|
|
Overview {}
|
|
|
|
}
|