-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.json
61 lines (61 loc) · 1.83 KB
/
config-example.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
{
"name": "Command Center",
"options": [
{
"name": "Explore Files",
"options": [
{
"name": "List files",
"command": "ls"
},
{
"name": "Current directory",
"command": "pwd"
}
]
},
{
"name": "System Settings",
"options": [
{
"name": "Update System",
"command": "sudo apt-get update"
},
{
"name": "Upgrade System",
"command": "sudo apt-get upgrade -y"
},
{
"name": "Check Disk Usage",
"command": "df -h"
}
]
},
{
"name": "Mystic Realm",
"options": [
{
"name": "Magic Cat",
"command": "echo '🐱✨ Abracadabra! You've been visited by the Magic Cat!'"
},
{
"name": "Dance Party",
"command": "echo '💃🕺 Welcome to the CLI Dance Party! Let's groove!'"
},
{
"name": "Secret Chamber",
"options": [
{
"name": "Sneaky Snake",
"command": "echo '🐍 Hiss! You've encountered the Sneaky Snake!'"
},
{
"name": "Mystic Mirror",
"command": "echo '🔮✨ Gaze into the Mystic Mirror for wisdom!'"
}
]
}
]
}
]
}