1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 22:42:50 -05:00

Settings globally, refactor some menus

This commit is contained in:
bbedward
2025-07-12 14:33:50 -04:00
parent f61ee93484
commit db05496dca
17 changed files with 1100 additions and 70 deletions

View File

@@ -46,6 +46,7 @@ ShellRoot {
property string powerConfirmAction: ""
property string powerConfirmTitle: ""
property string powerConfirmMessage: ""
property bool settingsVisible: false
// Network properties from NetworkService
property string networkStatus: NetworkService.networkStatus
@@ -161,7 +162,6 @@ ShellRoot {
property var weather: WeatherService.weather
// Weather configuration
property bool useFahrenheit: true // Default to Fahrenheit
// WiFi Auto-refresh Timer
@@ -295,7 +295,6 @@ ShellRoot {
weatherCode: root.weather.wCode
weatherTemp: root.weather.temp
weatherTempF: root.weather.tempF
useFahrenheit: root.useFahrenheit
osLogo: root.osLogo
networkStatus: root.networkStatus
wifiSignalStrength: root.wifiSignalStrength
@@ -340,6 +339,11 @@ ShellRoot {
PowerMenuPopup {}
PowerConfirmDialog {}
SettingsPopup {
id: settingsPopup
settingsVisible: root.settingsVisible
}
// Application and clipboard components
AppLauncher {
id: appLauncher