2025-12-21 20:59:33 +01:00
|
|
|
//@ pragma UseQApplication
|
|
|
|
|
import qs.modules.bar
|
2025-12-22 13:55:00 +01:00
|
|
|
import qs.modules.wallpaper
|
|
|
|
|
import Quickshell
|
2025-12-21 20:59:33 +01:00
|
|
|
|
2025-12-22 13:55:00 +01:00
|
|
|
Scope {
|
|
|
|
|
Variants {
|
|
|
|
|
id: wallpaperVariants
|
|
|
|
|
model: Quickshell.screens
|
|
|
|
|
delegate: Wallpaper {
|
|
|
|
|
screen: modelData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Variants {
|
|
|
|
|
id: barVariants
|
|
|
|
|
model: Quickshell.screens
|
|
|
|
|
|
|
|
|
|
delegate: Bar {
|
|
|
|
|
screen: modelData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|