adds files & wallpaper switcher toolbar

This commit is contained in:
2026-08-21 00:02:49 +02:00
parent 0a03db8fe6
commit 89af518e7d
10 changed files with 423 additions and 2 deletions
+39
View File
@@ -0,0 +1,39 @@
// 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 {}
}