mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
27 lines
468 B
QML
27 lines
468 B
QML
import Quickshell
|
|
import QtQuick
|
|
import "bar" as Bar
|
|
import "notifs" as Notifs
|
|
//import "launcher" as Launcher
|
|
import "screenshot" as Screenshot
|
|
//import "lock" as Lock
|
|
|
|
ShellRoot {
|
|
//Bg {}
|
|
|
|
Bar.Bar {
|
|
id: bar
|
|
}
|
|
|
|
Notifs.Overlay {
|
|
bar: bar
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
//Launcher.Controller.init();
|
|
Screenshot.Controller.init();
|
|
//Lock.Controller.init();
|
|
Notifs.NotificationCenter.init();
|
|
}
|
|
}
|