From cb3b0b4c4602c2b16bb2671d8bcf8dd3db63b247 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Sat, 6 Jan 2024 11:56:29 -0800 Subject: [PATCH] add new setting themeImages and fix default themeing --- settings/settings.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/settings/settings.go b/settings/settings.go index e486516..fbb11f4 100644 --- a/settings/settings.go +++ b/settings/settings.go @@ -35,6 +35,7 @@ type GlobalSettings struct { Locale string Theme string ThemeMode string + ThemeImages bool PreviousPid int64 ExperimentsEnabled bool Experiments map[string]bool @@ -62,7 +63,9 @@ type GlobalSettings struct { var DefaultGlobalSettings = GlobalSettings{ Locale: "en", - Theme: "dark", + Theme: "cwtch", + ThemeMode: "dark", + ThemeImages: false, PreviousPid: -1, ExperimentsEnabled: false, Experiments: map[string]bool{constants.MessageFormattingExperiment: true},