fixed a lot of quickshell problems

This commit is contained in:
Tomas Rivera
2026-03-10 18:38:32 +01:00
parent b9e3f35abe
commit 25dc8507b8
16 changed files with 145 additions and 32 deletions
+5 -5
View File
@@ -2,12 +2,12 @@ import Quickshell
import QtQuick
import "bar" as Bar
import "notifs" as Notifs
import "launcher" as Launcher
//import "launcher" as Launcher
import "screenshot" as Screenshot
import "lock" as Lock
//import "lock" as Lock
ShellRoot {
Bg {}
//Bg {}
Bar.Bar {
id: bar
@@ -18,8 +18,8 @@ ShellRoot {
}
Component.onCompleted: () => {
Launcher.Controller.init();
//Launcher.Controller.init();
Screenshot.Controller.init();
Lock.Controller.init();
//Lock.Controller.init();
}
}