blob: 96cbf9fac0ea25e5527a4e1156dc3aaf6f23a66b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[
{
"name": "apps",
"perms": { "r": true },
"dir": true,
"content": [
{
"name": "notepad",
"icon": "./src/img/notepad.png",
"perms": { "r": true },
"dir": false,
"content": "window Notepad <textarea onkeypress='auto_resize(this)' style='width:100%;overflow:visible;display:block;'></textarea>\nmeta icon src/img/notepad.png"
},
{
"name": "cmd",
"icon": "./src/img/cmd.png",
"perms": { "r": true },
"dir": false,
"content": "window cmd <div class='history' id='#_ID-history'></div><form autocomplete='off' onsubmit='exe_com(this);return false;'>λ <input id='#_ID-line' class='line' style='width:95%;' autofocus><input type='submit' style='display: none' /></form>\nmeta icon src/img/cmd.png"
}
]
}
]
|