-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustomviews.config.json
More file actions
62 lines (62 loc) · 2.44 KB
/
customviews.config.json
File metadata and controls
62 lines (62 loc) · 2.44 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
{
"config": {
"placeholders": [
{ "name": "username", "settingsLabel": "Your GitHub Username", "settingsHint": "e.g., JohnDoe" }
],
"toggles": [
{ "toggleId": "lesson-intros", "label": "Section intros/outros", "default": "show", "description": "i.e., Green panels at the start/end of a lesson/tour"},
{ "toggleId": "hands-on-practicals", "label": "Hands-on practicals", "default": "show"},
{ "toggleId": "detours", "label": "Detours", "default": "show"},
{ "toggleId": "exercises", "label": "Exercises", "default": "show"},
{ "toggleId": "windows-only", "label": "Windows-only text segments", "description": "i.e., Additional information related to Windows OS only"},
{ "toggleId": "mac-only", "label": "macOS-only text segments", "description": "i.e., Additional information related to macOS only"},
{ "toggleId": "linux-only", "label": "Linux-only text segments", "description": "i.e., Additional information related to Linux OS only"}
],
"tabGroups": [
{
"groupId": "os",
"label": "OS that you normally use Git on:",
"default": "windows",
"placeholderId": "os",
"tabs": [
{ "tabId": "windows", "label": "Windows", "placeholderValue": "Windows" },
{ "tabId": "mac", "label": "macOS", "placeholderValue": "macOS" },
{ "tabId": "linux", "label": "Linux", "placeholderValue": "Linux" }
]
},
{
"groupId": "git-ui",
"label": "The UI you use to interact with Git:",
"default": "cli",
"tabs": [
{ "tabId": "cli", "label": "CLI" },
{ "tabId": "sourcetree-windows", "label": "Sourcetree on Windows" },
{ "tabId": "sourcetree-mac", "label": "Sourcetree on macOS" }
]
}
]
},
"storageKey": "git-mastery",
"baseUrl": "/",
"settings": {
"panel": {
"title": "Customise your view of the Git-Mastery site",
"description": "Customise how different content sections shown (e.g., show/hide some sections)"
},
"callout": {
"show": true,
"enablePulse": true,
"message": "You can customise your view of the Git-Mastery site by clicking this button.",
"backgroundColor": "yellow",
"textColor": "black"
},
"icon": {
"position": "middle-left",
"color": "white",
"backgroundColor": "#198754",
"opacity": 0.5,
"scale": 1.1
}
},
"showUrl": false
}