aboutsummaryrefslogtreecommitdiff
path: root/internal/config/config.go
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 16:13:56 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 16:13:56 +0200
commit36d87e27019fce743e63be87222e987510863e6f (patch)
treeb5cffac3c1aa417fa24da79a99b6da85828fceb3 /internal/config/config.go
parent90c8dfc6cc3ab4b6b78feec5f738beeb41fb9605 (diff)
downloadlectio-36d87e27019fce743e63be87222e987510863e6f.tar.gz
lectio-36d87e27019fce743e63be87222e987510863e6f.zip
web: remove deus_vult theme; add global monospace toggle (web_mono config + top-bar 'mono')
Diffstat (limited to 'internal/config/config.go')
-rw-r--r--internal/config/config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index c15b5a0..ebe687f 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -64,6 +64,7 @@ type Config struct {
WebTheme string `toml:"web_theme"`
WebPort int `toml:"web_port"`
WebDisplay string `toml:"web_display"`
+ WebMono bool `toml:"web_mono"`
Parts map[string]map[string]bool `toml:"parts"`
}
@@ -92,6 +93,7 @@ func Default() Config {
WebTheme: "transfiguration",
WebPort: 0,
WebDisplay: "horizontal",
+ WebMono: false,
Parts: nil,
}
}