-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
107 lines (100 loc) · 3.42 KB
/
Copy pathzensical.toml
File metadata and controls
107 lines (100 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Zensical configuration for the smeg-plus-patches documentation site.
# https://zensical.org/docs/setup/basics/
#
# Navigation is organised by firmware artefact: the two things you actually
# edit — the application image and the media partition — plus the chain that
# protects them, the tooling around them, and the project process. See
# docs/index.md for the reader-facing map.
[project]
site_name = "SMEG+ Patches"
site_description = "Reverse-engineering notes and tooling for PSA / Stellantis SMEG+ head units — how the firmware fits together, what can be changed, and what cannot."
site_url = "https://smeg.kroper.uk/"
repo_url = "https://github.com/KRoperUK/smeg-plus-patches"
repo_name = "KRoperUK/smeg-plus-patches"
copyright = "MIT licensed. Not affiliated with Stellantis, Peugeot, Citroen, DS or Magneti Marelli."
extra_css = ["stylesheets/extra.css"]
nav = [
{ "Home" = "index.md" },
{ "Concepts" = [
{ "What is reachable" = "CAPABILITIES.md" },
{ "Architecture" = "ARCHITECTURE.md" },
] },
{ "Flash chain & protections" = [
{ "Boot & update chain" = "FLASH_CHAIN.md" },
{ "Media protection" = "MEDIA_PROTECTION.md" },
{ "Version strings" = "VERSION_STRINGS.md" },
] },
{ "The application image" = [
{ "Patch reference" = "PATCHES.md" },
{ "The AUX chain" = "AUX_CHAIN.md" },
{ "Emulation" = "EMULATION.md" },
{ "Analysis (archive)" = "ANALYSIS.md" },
] },
{ "The media partition" = [
{ "Media partition" = "MEDIA_PARTITION.md" },
{ "Ring tones" = "RINGTONES.md" },
{ "Customising" = "CUSTOMISING.md" },
{ "Cheatcodes & spy" = "CHEATCODES.md" },
] },
{ "Tooling & workflow" = [
{ "Running the tools" = "RUNNING.md" },
{ "Flashing" = "FLASHING.md" },
{ "Hardware verification" = "VERIFICATION.md" },
] },
{ "Project" = [
{ "Releasing" = "RELEASING.md" },
] },
{ "Glossary" = "GLOSSARY.md" },
]
[project.theme]
language = "en"
features = [
# Code blocks
"content.code.copy",
"content.code.annotate",
# Content tabs share a slug and cross-link across the page
"content.tabs.link",
# "Edit this page" link into the repo
"content.action.edit",
# Single-page-app navigation: instant load, prefetch on hover, progress bar
"navigation.instant",
"navigation.instant.prefetch",
"navigation.instant.progress",
# Keep the address bar in sync with the active heading
"navigation.tracking",
# Top-level sections become tabs below the header; grouped in the sidebar
"navigation.tabs",
"navigation.sections",
# Breadcrumbs above the page title
"navigation.path",
# Footer prev/next and back-to-top button
"navigation.footer",
"navigation.top",
# Table of contents follows the scroll position
"toc.follow",
# Search
"search.highlight",
"search.suggest",
]
# Three-way colour palette: follow the operating system by default, with
# manual light and dark overrides. Indigo primary/accent throughout.
[[project.theme.palette]]
media = "(prefers-color-scheme)"
primary = "indigo"
accent = "indigo"
toggle.icon = "lucide/sun-moon"
toggle.name = "Switch to light mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "indigo"
accent = "indigo"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "indigo"
accent = "indigo"
toggle.icon = "lucide/moon"
toggle.name = "Switch to system preference"