summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/Config.qml3
-rw-r--r--config/DashboardConfig.qml4
2 files changed, 6 insertions, 1 deletions
diff --git a/config/Config.qml b/config/Config.qml
index 8c01014..fe07286 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -258,7 +258,8 @@ Singleton {
return {
enabled: dashboard.enabled,
showOnHover: dashboard.showOnHover,
- updateInterval: dashboard.updateInterval,
+ mediaUpdateInterval: dashboard.mediaUpdateInterval,
+ resourceUpdateInterval: dashboard.resourceUpdateInterval,
dragThreshold: dashboard.dragThreshold,
performance: {
showBattery: dashboard.performance.showBattery,
diff --git a/config/DashboardConfig.qml b/config/DashboardConfig.qml
index e089550..0a16cc1 100644
--- a/config/DashboardConfig.qml
+++ b/config/DashboardConfig.qml
@@ -6,6 +6,10 @@ JsonObject {
property int mediaUpdateInterval: 500
property int resourceUpdateInterval: 1000
property int dragThreshold: 50
+ property bool showDashboard: true
+ property bool showMedia: true
+ property bool showPerformance: true
+ property bool showWeather: true
property Sizes sizes: Sizes {}
property Performance performance: Performance {}