2025-12-21 20:59:33 +01:00
|
|
|
//@ pragma UseQApplication
|
2025-12-23 20:21:18 +01:00
|
|
|
//pragma ComponentBehavior: Bound
|
2025-12-22 13:55:00 +01:00
|
|
|
import Quickshell
|
2025-12-23 20:21:18 +01:00
|
|
|
import qs.modules.bar
|
|
|
|
|
import qs.modules.wallpaper
|
|
|
|
|
import qs.modules.notifications
|
2025-12-21 20:59:33 +01:00
|
|
|
|
2025-12-22 13:55:00 +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-23 20:21:18 +01:00
|
|
|
screen: wallVariants.modelData
|
2025-12-22 17:57:54 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-12-22 13:55:00 +01:00
|
|
|
Variants {
|
|
|
|
|
id: barVariants
|
|
|
|
|
model: Quickshell.screens
|
|
|
|
|
delegate: Bar {
|
2025-12-23 20:21:18 +01:00
|
|
|
screen: barVariants.modelData
|
2025-12-22 13:55:00 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-12-23 20:21:18 +01:00
|
|
|
NotiPopup {}
|
2025-12-24 15:41:03 +01:00
|
|
|
Overlay {}
|
2025-12-22 13:55:00 +01:00
|
|
|
}
|