Settings: ShowCalendarWeather - true by default

This commit is contained in:
ItsLemmy
2025-10-31 08:37:08 -04:00
parent 436ff56c93
commit 1152453d84
2 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -76,7 +76,9 @@
"use12hourFormat": false,
"showWeekNumberInCalendar": false,
"showCalendarEvents": true,
"analogClockInCalendar": false
"showCalendarWeather": true,
"analogClockInCalendar": false,
"firstDayOfWeek": -1
},
"screenRecorder": {
"directory": "",
@@ -252,6 +254,7 @@
"pywalfox": false,
"vicinae": false,
"walker": false,
"code": false,
"enableUserTemplates": false
},
"nightLight": {
+2 -2
View File
@@ -55,7 +55,7 @@ Singleton {
// Then it should be commented out again, regular users don't need to generate
// default settings on every start
// TODO: automate this someday!
// generateDefaultSettings()
//generateDefaultSettings()
// Patch-in the local default, resolved to user's home
adapter.general.avatarImage = defaultAvatar
@@ -203,7 +203,7 @@ Singleton {
property bool use12hourFormat: false
property bool showWeekNumberInCalendar: false
property bool showCalendarEvents: true
property bool showCalendarWeather: false
property bool showCalendarWeather: true
property bool analogClockInCalendar: false
property int firstDayOfWeek: -1 // -1 = auto (use locale), 0 = Sunday, 1 = Monday, 6 = Saturday
}