mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
24 lines
359 B
QML
24 lines
359 B
QML
//@ pragma UseQApplication
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
import "bar" as Bar
|
|
import "launcher" as Launcher
|
|
|
|
ShellRoot {
|
|
Component.onCompleted: [Launcher.Controller.init()]
|
|
|
|
Variants {
|
|
model: Quickshell.screens;
|
|
|
|
Scope {
|
|
property var modelData;
|
|
|
|
Bar.Bar {
|
|
screen: modelData;
|
|
}
|
|
}
|
|
}
|
|
|
|
ReloadPopup {}
|
|
}
|