hyperterm-summon

Summon your Hyper windows with a system-wide hotkey.
In a multi-window situation, hyperterm-summon will remember the last active window and restore focus to it.
If Hyper is already active when the hotkey is pressed, your terminal windows will be hidden and (on macOS only) your previously-active application will regain focus.
Installation
- Open your Hyper config file (i.e.
~/.hyper.js
) in your preferred text editor.
- Add
hyperterm-summon
to the plugins array found in the Hyper config.
Options
hideDock | Hide the Hyper icon in the dock and app switcher. | false |
hideOnBlur | Hide the Hyper when window loses focus. | false |
hotkey | Shortcut to toggle Hyper window visibility. | Ctrl+; |
NOTE: For a list of valid shortcuts, see Electron Accelerators.
Example Config
module.exports = {
config: {
summon: {
hideDock: true,
hideOnBlur: true,
hotkey: 'Alt+Super+O'
}
},
plugins: [
'hyperterm-summon'
]
}