quickshell/shell.qml

24 lines
477 B
QML
Raw Normal View History

2025-12-21 20:59:33 +01:00
//@ pragma UseQApplication
//pragma ComponentBehavior: Bound
pragma ComponentBehavior: Bound
import Quickshell
import "./modules/bar/"
import "./modules/wallpaper/"
import "./modules/notifications/"
2025-12-21 20:59:33 +01:00
Scope {
2025-12-22 15:16:00 +01:00
WallSwitcher {}
2025-12-22 17:57:54 +01:00
Variants {
id: wallVariants
model: Quickshell.screens
delegate: Wallpaper {}
2025-12-22 17:57:54 +01:00
}
Variants {
id: barVariants
model: Quickshell.screens
delegate: Bar {}
}
NotiPopup {}
2025-12-24 15:41:03 +01:00
Overlay {}
}