-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathzensical.toml
More file actions
100 lines (93 loc) · 2.8 KB
/
zensical.toml
File metadata and controls
100 lines (93 loc) · 2.8 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
# Zensical config file for Asahi docs
# Copyright (C) 2026 The Asahi Linux Contributors
[project]
site_name = "Asahi Linux Documentation"
site_url = "https://asahilinux.org/docs"
site_description = "Porting Linux to Apple Silicon"
repo_url = "https://github.com/AsahiLinux/docs"
repo_name = "AsahiLinux/docs"
copyright = "© 2022-2026 The Asahi Linux Contributors"
docs_dir = "docs"
site_dir = "site"
extra_css = ["stylesheets/extra.css"]
nav = [
{ "Home" = "index.md" },
{ "Feature Support" = [
"platform/feature-support/overview.md",
"platform/feature-support/m1.md",
"platform/feature-support/m2.md",
"platform/feature-support/m3.md",
"platform/feature-support/m4.md"
] },
{ "Project" = [
"project/glossary.md",
{ "FAQs" = "project/faq.md" },
{'"When will Asahi Linux be done?"' = "project/when-will-asahi-be-done.md" },
{"Reference Material" = "project/references.md" },
{ "Asahi Linux Board" = "project/board/asahi-board.md" },
{ "Policies" = [
{ "Generative AI" = "project/policies/slop.md" }
] },
] },
{ "Platform Documentation" = [
"platform/subsystems.md",
"platform/security.md",
"hw/devices/device-list.md",
"hw/soc/soc-codenames.md"
] },
{ "For Users" = [
"sw/broken-software.md",
"sw/partitioning-cheatsheet.md",
"sw/windows-11-vm.md"
] },
{ "For Developers" = [
"project/help-wanted.md",
"sw/tethered-boot.md",
"sw/m1n1-user-guide.md",
"sw/m1n1-hypervisor.md",
"sw/u-boot.md",
"sw/devicetree-bindings.md",
"platform/open-os-interop.md",
"sw/audio-userspace.md"
] },
{ "For distros/other OSes" = [
"alt/policy.md"
] },
{ "Fedora Asahi Remix" = "https://docs.fedoraproject.org/en-US/fedora-asahi-remix/" },
]
[project.theme]
variant = "modern"
logo = "assets/logo.png"
favicon = "assets/favicon.png"
font.text = "Inter"
font.code = "Hack"
language = "en"
features = [
"navigation.path"
]
[[project.theme.palette]]
media = "(prefers-color-scheme)"
toggle.icon = "lucide/sun-moon"
toggle.name = "Switch to light mode"
primary = "custom"
accent = "custom"
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
primary = "custom"
accent = "custom"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to system preference"
primary = "custom"
accent = "custom"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/AsahiLinux"
[[project.extra.social]]
icon = "fontawesome/brands/mastodon"
link = "https://social.treehouse.systems/@AsahiLinux"