Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ static persist s_settings = {
.week_format = 0, // ISO 8601
.vibe_pat_disconnect = 2, // double vibe
.vibe_pat_connect = 0, // no vibe
.strftime_format = "%Y-%m-%d",
// MUST stay a null pointer (0). This packed field sits at an unaligned offset,
// so a string literal here emits a misaligned R_ARM_ABS32 relocation that the
// app loader rejects ("Invalid app relocation target" -> app never launches).
// The custom date format lives in adv_settings.custom_date_fmt; unused in C.
.strftime_format = 0,
.track_battery = 0,
.theme = 1, // Functional
.theme_mode = 1, // Dark (matches the pre-theme look)
Expand Down