A complete and customizable solution for a permanent / dropdown / hotkey / overlay window in your Hyper.app, accessible via hotkeys and/or toolbar icon (tray).
Important: Designed for Hyper.app >= 0.7.0
Edit your ~/.hyper.js
(Cmd+,
) and insert the hyperterm-overlay
in your plugins
array:
plugins: [
'hyperterm-overlay'
],
Add overlay
in your ~/.hyper.js
config.
The configuration below shows all possibilities with their respective default values.
module.exports = {
config: {
// other configs...
overlay: {
alwaysOnTop: true,
animate: true,
hasShadow: false,
hideDock: false,
hideOnBlur: false,
hotkeys: ['Option+Space'],
position: 'top',
primaryDisplay: false,
resizable: true,
startAlone: false,
startup: false,
size: 0.4,
tray: true,
unique: false
}
},
//...
};
- Value: true or false
- Default: true
- Makes Hyperterm Overlay window stay always on top.
- Value: true or false
- Default: true
- Enable animation when show and hide the window.
- Value: true or false
- Default: false
- Controls the default macOS window shadows.
- Value: true or false
- Default: false
- Hides the HyperTerm Overlay when it loses focus.
- Value: true or false
- Default: false
- Removes the HyperTerm dock icon. It works only when the
unique
option is activated.
- Value: array of hotkey strings
- Default: ['Option+Space']
- Specify one or more hotkeys to show and hide the HyperTerm Overlay (see:
Accelerator
)
- Value: 'top', 'bottom', 'left' or 'right'
- Default: 'top'
- Choose where HyperTerm Overlay will be positioned:
top
,bottom
,left
orright
.
- Value: true or false
- Default: false
- Show HyperTerm Overlay only on primary display.
- Value: true or false
- Default: true
- Allow the HyperTerm Overlay be resizable.
- Value: float or number
- Default: 0.4
- The size of HyperTerm Overlay when it is showing.
The possible values are a
number
or afloat
. If is a number, it represents the size um pixels. Else, if is a float, it means the percentage of the screen.
- Value: true or false
- Default: false
- Makes HyperTerm Overlay the unique window displayed when started.
- Other windows started will be default Hyper.app windows.
- Value: true or false
- Default: true
- Open HyperTerm Overlay on Hyper.app startup.
- Value: true or false
- Default: true
- Add icon to the system notification area, for access HyperTerm Overlay.
- Value: true or false
- Default: false
- Makes HyperTerm Overlay the unique window of Hyper.app. Any other window will be removed.