-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
110 lines (91 loc) · 2.88 KB
/
config.toml
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
108
109
110
baseURL = 'https://billofmaterials.art/'
languageCode = 'en-us'
title = 'Bill of Materials'
theme = 'shell'
[Params]
# Additions start here
[Params.Navbar]
use = false
[Params.Extensions]
use = true
ext = ".txt" # extension to add after single page
description = "Bill of Materials"
[Params.Terminal]
scheme = "Material"
# Note: in terminal
# [userName]@[pcName]:~/$ cd [workDir]
# [userName]@[pcName]:~/[workDir]$ cat [profile]
#
# [description]
#
# Note: if you set Params.Tree > use = true
# [userName]@[pcName]:~/[workDir]$ tree ./[folderName]/
# ./[folderName]/
# ...
# Note: result of the tree command
userName = "sw"
pcName = "void"
workDir = "billofmaterials"
profile = "about.txt"
# Note: speed at which text is displayed on the terminal
# Note: if set to 0, typing animation will be disabled
# Note:
# Note: if you want to enable Mathjax, you need to set it to 0
# Note: and set "math: true" at front matter in your Markdown file
ps1Delay = 0 # prompt speed : [userName]@[pcName]:~/$ , [userName]@[pcName]:~/[workDir]$
stdoutDelay = 20 # stdout speed : [description] , files in Params.Tree
commandDelay = 50 # command speed : cd [workDir] , cat [profile] , tree ./[folderName]/
# terminalDelay = 20 : deprecated
# Note: speed at which text is displayed on the activity pages
# Note: if set to 0, typing animation will be disabled
# Note:
# Note: if you want to enable Mathjax, you need to set it to 0
# Note: and set "math: true" at front matter in your Markdown file
titleDelay = 0 # title speed : "title" in front matter
contentDelay = 0 # content speed : content in .md file
# activityDelay = 5 : deprecated
description = """
╔╗ ╔═╗╔╦╗
╠╩╗║ ║║║║
╚═╝╚═╝╩ ╩══════════
Bill of Materials is an artistic lifelong
research project, built around computers,
complex and obsolete technologies, dreams,
algorithms, electronics and subconscious.
The deep nature and meaning of the conducted
experiments has not been communicated to the
public, but one can grasp some pieces of
intelligence about deeper layers of the
project by studying its details.
For more information about the materials and
entities, please refer to RFC-0041.
sw
"""
# Note: If you want to use a Markdown file, you can use the following
# description = "/description.md"
# Note: and put the description.md in /content/description.md
[Params.Tree]
use = true
folderName = "data"
files = [
[
"artifacts",
"https://github.com/bill-of-materials/data/tree/main/ARTIFACTS",
],
[
"elements",
"https://github.com/bill-of-materials/data/tree/main/ELEMENTS",
],
[
"sandboxes",
"https://github.com/bill-of-materials/data/tree/main/SANDBOXES",
],
[
"rfc",
"https://github.com/bill-of-materials/data/tree/main/RFC",
],
[
"rfc-0041",
"https://github.com/bill-of-materials/data/tree/main/RFC/RFC-0041",
],
]