feat(wallpaper selector): add wallpaper selector menu

This commit is contained in:
sinnayuh
2025-08-15 17:33:10 +01:00
parent ce114b33ff
commit 28a6284968
5 changed files with 325 additions and 0 deletions
+3
View File
@@ -18,6 +18,7 @@ import "./modules/notificationPopup/"
import "./modules/onScreenDisplay/"
import "./modules/onScreenKeyboard/"
import "./modules/overview/"
import "./modules/wallpaperOverview/"
import "./modules/screenCorners/"
import "./modules/session/"
import "./modules/sidebarLeft/"
@@ -43,6 +44,7 @@ ShellRoot {
property bool enableOnScreenDisplayVolume: true
property bool enableOnScreenKeyboard: true
property bool enableOverview: true
property bool enableWallpaperOverview: true
property bool enableReloadPopup: true
property bool enableScreenCorners: true
property bool enableSession: true
@@ -69,6 +71,7 @@ ShellRoot {
LazyLoader { active: enableOnScreenDisplayVolume; component: OnScreenDisplayVolume {} }
LazyLoader { active: enableOnScreenKeyboard; component: OnScreenKeyboard {} }
LazyLoader { active: enableOverview; component: Overview {} }
LazyLoader { active: enableWallpaperOverview; component: WallpaperOverview {} }
LazyLoader { active: enableReloadPopup; component: ReloadPopup {} }
LazyLoader { active: enableScreenCorners; component: ScreenCorners {} }
LazyLoader { active: enableSession; component: Session {} }