-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added contribution guidlines and updated Readme
* commented programs.md in parseJson.py * working on test functionality for new pages
- Loading branch information
Showing
5 changed files
with
150 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Conribution | ||
|
||
Send a pull request with the included page. | ||
|
||
1. Fill this [template](template.json), refer to [virtual box Example](virtual-box.json) | ||
|
||
2. Run [parseJson.py yourPage](/parseJSON.py) to test for any errors. | ||
|
||
3. `shortcut yourPage` for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name":"Program name", | ||
"description": "Program description", | ||
"metadata":{ | ||
"sourceUrl":"https://shortcut.url" | ||
}, | ||
"aliases": [ | ||
"Alias one", | ||
"Alias two" | ||
], | ||
"isGUI": true or false, | ||
"section_order":[ | ||
"Section one", | ||
"Section two" | ||
], | ||
"sections":{ | ||
"Section one":[ | ||
{ | ||
"val":"Description", | ||
"key":"Shortcut one" | ||
}, | ||
{ | ||
"val":"Description", | ||
"key":"Shortcut two" | ||
} | ||
], | ||
"Section two":[ | ||
{ | ||
"val":"Description", | ||
"key":"Shortcut one" | ||
}, | ||
{ | ||
"val":"Description", | ||
"key":"Shortcut two" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
"name": "Oracle VirtualBox", | ||
"description": "Keyboard shortcuts for VirtualBox", | ||
"metadata": { | ||
"sourceUrl": "http://kbmode.com/windows/virtualbox-keyboard-shortcuts" | ||
}, | ||
"aliases": [ | ||
"virtualbox", | ||
"oracle virtualbox", | ||
"vbox" | ||
], | ||
"isGUI": true, | ||
"section_order": [ | ||
"Commands", | ||
"Appliance Options" | ||
], | ||
"sections": { | ||
"Commands": [ | ||
{ | ||
"val": "Add", | ||
"key": "Ctrl A" | ||
}, | ||
{ | ||
"val": "Clone", | ||
"key": "Ctrl O" | ||
}, | ||
{ | ||
"val": "Exit", | ||
"key": "Ctrl Q" | ||
}, | ||
{ | ||
"val": "Export Appliance", | ||
"key": "Ctrl E" | ||
}, | ||
{ | ||
"val": "Discard Saved State", | ||
"key": "Ctrl J" | ||
}, | ||
{ | ||
"val": "Group", | ||
"key": "Ctrl U" | ||
}, | ||
{ | ||
"val": "Import Appliance", | ||
"key": "Ctrl I" | ||
}, | ||
{ | ||
"val": "New", | ||
"key": "Ctrl N" | ||
}, | ||
{ | ||
"val": "Pause", | ||
"key": "Ctrl P" | ||
} | ||
], | ||
"Appliance Options": [ | ||
{ | ||
"val": "Preferences", | ||
"key": "Ctrl G" | ||
}, | ||
{ | ||
"val": "Remove", | ||
"key": "Ctrl R" | ||
}, | ||
{ | ||
"val": "Reset", | ||
"key": "Ctrl T" | ||
}, | ||
{ | ||
"val": "Settings", | ||
"key": "Ctrl S" | ||
}, | ||
{ | ||
"val": "Show Log", | ||
"key": "Ctrl L" | ||
}, | ||
{ | ||
"val": "Virtual Media Manager", | ||
"key": "Ctrl D" | ||
}, | ||
{ | ||
"val": "Help", | ||
"key": "F1" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters