Autoformatting + default settings update

This commit is contained in:
ItsLemmy
2025-10-26 19:18:11 -04:00
parent 614cdc5196
commit 7772975934
8 changed files with 43 additions and 38 deletions
+1 -1
View File
@@ -1761,4 +1761,4 @@
"note": "Nur ein paar Grundeinstellungen alle Optionen befinden sich in den Einstellungen"
}
}
}
}
+1 -1
View File
@@ -1761,4 +1761,4 @@
"note": "Solo algunos conceptos básicos para empezar: todas las opciones están en Configuración."
}
}
}
}
+1 -1
View File
@@ -1761,4 +1761,4 @@
"note": "Quelques réglages de base pour démarrer — toutes les options sont dans Paramètres"
}
}
}
}
+1 -1
View File
@@ -1761,4 +1761,4 @@
"note": "Apenas alguns ajustes básicos para começar - o restante está em Configurações"
}
}
}
}
+1 -1
View File
@@ -1761,4 +1761,4 @@
"note": "先进行一些基础设置——更多选项可在“设置”中找到"
}
}
}
}
+29 -24
View File
@@ -24,8 +24,7 @@
],
"center": [
{
"id": "Workspace",
"characterCount": 2
"id": "Workspace"
}
],
"right": [
@@ -76,7 +75,8 @@
"useFahrenheit": false,
"use12hourFormat": false,
"showWeekNumberInCalendar": false,
"showCalendarEvents": true
"showCalendarEvents": true,
"analogClockInCalendar": false
},
"screenRecorder": {
"directory": "",
@@ -174,32 +174,32 @@
"displayMode": "always_visible",
"backgroundOpacity": 1,
"floatingRatio": 1,
"size": 1,
"onlySameOutput": true,
"monitors": [],
"pinnedApps": [],
"colorizeIcons": false,
"size": 1
"colorizeIcons": false
},
"network": {
"wifiEnabled": true
},
"notifications": {
"doNotDisturb": false,
"monitors": [],
"location": "top_right",
"overlayLayer": true,
"respectExpireTimeout": false,
"lowUrgencyDuration": 3,
"normalUrgencyDuration": 8,
"criticalUrgencyDuration": 15
},
"osd": {
"enabled": true,
"location": "top_right",
"monitors": [],
"autoHideMs": 2000,
"overlayLayer": true
},
"notifications": {
"doNotDisturb": false,
"monitors": [],
"location": "top_right",
"overlayLayer": true,
"respectExpireTimeout": false,
"lowUrgencyDuration": 3,
"normalUrgencyDuration": 8,
"criticalUrgencyDuration": 15
},
"osd": {
"enabled": true,
"location": "top_right",
"monitors": [],
"autoHideMs": 2000,
"overlayLayer": true
},
"audio": {
"volumeStep": 5,
"volumeOverdrive": false,
@@ -217,12 +217,16 @@
"panelsOverlayLayer": true
},
"brightness": {
"brightnessStep": 5
"brightnessStep": 5,
"enforceMinimum": true
},
"colorSchemes": {
"useWallpaperColors": false,
"predefinedScheme": "Noctalia (default)",
"darkMode": true,
"schedulingMode": "off",
"manualSunrise": "06:30",
"manualSunset": "18:30",
"matugenSchemeType": "scheme-fruit-salad",
"generateTemplatesForPredefined": true
},
@@ -242,6 +246,7 @@
"discord_lightcord": false,
"discord_dorion": false,
"pywalfox": false,
"vicinae": false,
"enableUserTemplates": false
},
"nightLight": {
@@ -261,4 +266,4 @@
"battery": {
"chargingMode": 0
}
}
}
+7 -7
View File
@@ -156,13 +156,13 @@ ColumnLayout {
onValueChanged: Settings.data.brightness.brightnessStep = value
}
NToggle {
Layout.fillWidth: true
label: I18n.tr("settings.display.monitors.enforce-minimum.label")
description: I18n.tr("settings.display.monitors.enforce-minimum.description")
checked: Settings.data.brightness.enforceMinimum
onToggled: checked => Settings.data.brightness.enforceMinimum = checked
}
NToggle {
Layout.fillWidth: true
label: I18n.tr("settings.display.monitors.enforce-minimum.label")
description: I18n.tr("settings.display.monitors.enforce-minimum.description")
checked: Settings.data.brightness.enforceMinimum
onToggled: checked => Settings.data.brightness.enforceMinimum = checked
}
}
NDivider {
+2 -2
View File
@@ -233,8 +233,8 @@ Singleton {
}
}
readonly property real stepSize: Settings.data.brightness.brightnessStep / 100.0
readonly property real minBrightnessValue: (Settings.data.brightness.enforceMinimum ? 0.01 : 0.0)
readonly property real stepSize: Settings.data.brightness.brightnessStep / 100.0
readonly property real minBrightnessValue: (Settings.data.brightness.enforceMinimum ? 0.01 : 0.0)
// Timer for debouncing rapid changes
readonly property Timer timer: Timer {