diff options
author | Devine Lu Linvega <[email protected]> | 2018-12-09 13:10:36 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2018-12-09 13:10:36 +1200 |
commit | e2e80ae495001c5ecfd42bec6350c332a7b4bb0f (patch) | |
tree | 396de0d9b2c80e399bf661a39b596565198f2bfc /desktop/sources | |
parent | 5d888fa9ece5008dda835d3e012a51ff70cb7bc4 (diff) | |
download | Orca-e2e80ae495001c5ecfd42bec6350c332a7b4bb0f.tar.gz Orca-e2e80ae495001c5ecfd42bec6350c332a7b4bb0f.zip |
Added theme reset
Diffstat (limited to 'desktop/sources')
-rw-r--r-- | desktop/sources/index.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop/sources/index.html b/desktop/sources/index.html index ce82658..eddf0a6 100644 --- a/desktop/sources/index.html +++ b/desktop/sources/index.html @@ -61,9 +61,8 @@ terminal.controller.add("default","Keyboard","Toggle Play Mode",() => { terminal.cursor.toggleMode(2); },"/") - terminal.controller.add("default","Theme","Default Theme",() => { terminal.theme.noir(); },"CmdOrCtrl+Shift+1") - terminal.controller.add("default","Theme","Light Theme",() => { terminal.theme.pale(); },"CmdOrCtrl+Shift+2") terminal.controller.add("default","Theme","Open Theme",() => { terminal.theme.open(); },"CmdOrCtrl+Shift+o") + terminal.controller.add("default","Theme","Reset Theme",() => { terminal.theme.reset(); },"CmdOrCtrl+Shift+Backspace") terminal.controller.add("default","Theme","Download Themes..",() => { require('electron').shell.openExternal('https://github.com/hundredrabbits/Themes'); }) terminal.controller.commit() |