-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.json
143 lines (143 loc) · 4.77 KB
/
menu.json
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"environment": {
"windowsboot": "/mnt/windowsboot",
"windowsimg": "/mnt/windowsimg",
"WIM": "",
"INDEX": ""
},
"home": "setup",
"menus": {
"setup": {
"noGoBack": true,
"title": "What would you like to do today?",
"items": [
{
"text": "Install Windows",
"desc": "Guides you through installing and setting up Windows",
"type": "menu",
"action": "install-select_wim"
},
{
"text": "Repair or modify an OS",
"desc": "Fix and customize OSes supported by this install medium",
"type": "menu",
"action": "osmgr"
},
{
"type": "divider",
"action": "2"
},
{
"text": "Browse files",
"desc": "Provides a basic file explorer interface",
"type": "menu",
"action": "browse"
},
{
"text": "Exit",
"desc": "Exits from the menu",
"type": "internal",
"action": "exit"
}
]
},
"install-select_wim": {
"title": "Which image of Windows would you like to install from?",
"items": []
},
"install-select_edition": {
"title": "Which edition from this image would you like to install?",
"items": []
},
"install-select_disk": {
"title": "Which disk would you like to install Windows $WINDOWS to?",
"items": []
},
"install-windows-confirmation": {
"title": "Are you ready to install Windows $WINDOWS?",
"items": [
{
"text": "View my choices before I continue",
"desc": "Displays all your selected installation choices",
"type": "note",
"action": "\n\tWindows $WINDOWS\n\tEdition: $SUM\n\tBootloader: $BOOT\n\tTarget install disk: $DISKPRETTY\n\tSystem root: C:\\$ROOT\n\tGUID: $GUID"
},
{
"text": "I'm ready to install Windows $WINDOWS!",
"desc": "Commits to installing Windows $WINDOWS to $DISKPRETTY with the selected choices",
"type": "menu",
"action": "install-windows"
}
]
},
"install-windows": {
"noGoBack": true,
"noSelector": true,
"title": "* * * I N S T A L L I N G W I N D O W S * * *",
"subtitle": "$SUM",
"items": []
},
"install-complete": {
"noGoBack": true,
"title": "Windows $WINDOWS",
"subtitle": "Install complete!",
"items": [
{
"text": "Reboot to complete the install",
"desc": "Make sure to remove this installation medium before pressing enter!",
"type": "internal",
"action": "reboot"
},
{
"text": "Shut down to complete the install later",
"desc": "Make sure to remove this installation medium before pressing enter!",
"type": "internal",
"action": "shutdown"
},
{
"type": "divider",
"action": "2"
},
{
"text": "Return to setup to do something else",
"desc": "Takes you back to the install and recovery choices",
"type": "menu",
"action": "setup"
}
]
},
"osmgr": {
"title": "Which operating system would you like to manage?",
"items": []
},
"browse": {
"title": "Peek into the mounted filesystems",
"items": [
{
"text": "Browse the Windows bootloader",
"desc": "Must be mounted first!",
"type": "explorer $windowsboot",
"action": "file $?"
},
{
"text": "Browse the Windows system",
"desc": "Must be mounted first!",
"type": "explorer $windowsimg",
"action": "file $?"
},
{
"text": "Browse the available OS image sources",
"desc": "Contains your WIM and ESD images for a Windows install/repair",
"type": "explorer $WORKINGDIR/sources",
"action": "file $?"
},
{
"text": "Browse the live filesystem",
"desc": "The booted Linux filesystem including all the mountpoints",
"type": "explorer",
"action": "file $?"
}
]
}
}
}