ported some quickshell stuff from rivendell-hyprdots

This commit is contained in:
Tomas Rivera
2026-03-10 16:22:35 +01:00
parent 4b442dd121
commit b9e3f35abe
80 changed files with 4462 additions and 9 deletions
+25
View File
@@ -0,0 +1,25 @@
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();
}
}