Files
nixos/other/quickshell/shell.qml
T

26 lines
420 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();
}
}