mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-05 06:59:50 -05:00
32 lines
726 B
QML
32 lines
726 B
QML
//@ pragma UseQApplication
|
|
//@ pragma IconTheme Papirus-Dark
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
import "bar" as Bar
|
|
import "notifications" as Notifications
|
|
import "volume-osd" as VolumeOSD
|
|
import "settings" as Settings
|
|
import "launcher" as Launcher
|
|
import "wallpaper" as Wallpaper
|
|
|
|
ShellRoot {
|
|
Component.onCompleted: [Launcher.Controller.init(), Settings.Controller.init(), Notifications.NotificationCenter.init()]
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
Scope {
|
|
id: scope
|
|
property var modelData
|
|
|
|
Bar.Bar {
|
|
screen: scope.modelData
|
|
}
|
|
}
|
|
}
|
|
|
|
Notifications.Controller {}
|
|
VolumeOSD.Controller {}
|
|
Wallpaper.Controller {}
|
|
}
|