diff options
| author | amy <[email protected]> | 2023-02-09 09:02:35 -0600 |
|---|---|---|
| committer | amy <[email protected]> | 2023-02-09 09:02:35 -0600 |
| commit | 99db1f499d11d1d677cb9d6204fbfa80ea5622b7 (patch) | |
| tree | 06e8fe7eaa42ea92e1846017b63c733997b36e42 /src | |
| parent | 7bb726944c3a5914081dd965d0fcc8cf08af9986 (diff) | |
little less mess and better icon managment
Diffstat (limited to 'src')
| -rw-r--r-- | src/fs.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/fs.json b/src/fs.json new file mode 100644 index 0000000..96cbf9f --- /dev/null +++ b/src/fs.json @@ -0,0 +1,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" + } + ] + } +] |
