use quickshell for wallpaper

This commit is contained in:
end-4
2025-07-14 20:43:52 +07:00
parent efa60d09fc
commit 631303bffe
10 changed files with 173 additions and 161 deletions
+3 -3
View File
@@ -6,7 +6,7 @@
//@ pragma Env QT_SCALE_FACTOR=1
import "./modules/common/"
import "./modules/backgroundWidgets/"
import "./modules/background/"
import "./modules/bar/"
import "./modules/cheatsheet/"
import "./modules/dock/"
@@ -30,7 +30,7 @@ ShellRoot {
// Enable/disable modules here. False = not loaded at all, so rest assured
// no unnecessary stuff will take up memory if you decide to only use, say, the overview.
property bool enableBar: true
property bool enableBackgroundWidgets: true
property bool enableBackground: true
property bool enableCheatsheet: true
property bool enableDock: true
property bool enableMediaControls: true
@@ -53,7 +53,7 @@ ShellRoot {
}
LazyLoader { active: enableBar; component: Bar {} }
LazyLoader { active: enableBackgroundWidgets; component: BackgroundWidgets {} }
LazyLoader { active: enableBackground; component: Background {} }
LazyLoader { active: enableCheatsheet; component: Cheatsheet {} }
LazyLoader { active: enableDock && Config.options.dock.enable; component: Dock {} }
LazyLoader { active: enableMediaControls; component: MediaControls {} }