2025-12-21 20:59:33 +01:00
|
|
|
//@ pragma UseQApplication
|
2025-12-24 23:00:08 +01:00
|
|
|
pragma ComponentBehavior: Bound
|
2025-12-22 13:55:00 +01:00
|
|
|
import Quickshell
|
2025-12-24 23:00:08 +01:00
|
|
|
import "./modules/bar/"
|
|
|
|
|
import "./modules/wallpaper/"
|
|
|
|
|
import "./modules/notifications/"
|
2025-12-21 20:59:33 +01:00
|
|
|
|
2025-12-27 20:47:50 +01:00
|
|
|
ShellRoot {
|
2025-12-22 15:16:00 +01:00
|
|
|
WallSwitcher {}
|
2025-12-22 17:57:54 +01:00
|
|
|
Variants {
|
2025-12-27 20:47:50 +01:00
|
|
|
id: barVariants
|
2025-12-22 17:57:54 +01:00
|
|
|
model: Quickshell.screens
|
2025-12-27 20:47:50 +01:00
|
|
|
delegate: Bar {
|
2025-12-28 01:45:57 +01:00
|
|
|
screen: modelData
|
2025-12-27 20:47:50 +01:00
|
|
|
}
|
2025-12-22 17:57:54 +01:00
|
|
|
}
|
2025-12-22 13:55:00 +01:00
|
|
|
Variants {
|
2025-12-28 01:45:57 +01:00
|
|
|
id: overlayVariants
|
|
|
|
|
model: Quickshell.screens
|
|
|
|
|
delegate: Overlay {
|
|
|
|
|
screen: modelData
|
|
|
|
|
}
|
2025-12-27 20:47:50 +01:00
|
|
|
}
|
|
|
|
|
Variants {
|
|
|
|
|
id: wallVariants
|
2025-12-28 01:45:57 +01:00
|
|
|
model: Quickshell.screens
|
2025-12-27 20:47:50 +01:00
|
|
|
delegate: Wallpaper {
|
2025-12-28 01:45:57 +01:00
|
|
|
screen: modelData
|
2025-12-27 20:47:50 +01:00
|
|
|
}
|
2025-12-22 13:55:00 +01:00
|
|
|
}
|
2025-12-28 01:45:57 +01:00
|
|
|
NotiPopup {}
|
2025-12-22 13:55:00 +01:00
|
|
|
}
|