Package Exports
- hyperterm-overlay
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyperterm-overlay) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
HyperTerm Overlay
A complete and customizable solution for a permanent / dropdown / hotkey / overlay window in your HyperTerm, accessible via hotkeys and/or toolbar icon (tray).
Important: Designed for HyperTerm >= 0.7.0

Install
Edit your ~/.hyperterm.js (Cmd+,) and insert the hyperterm-overlay in your plugins array:
plugins: [
'hyperterm-overlay'
],Configuration
Add overlay in your ~/.hyperterm.js config.
The configuration below shows all possibilities with their respective default values.
overlay: {
animate: true,
alwaysOnTop: true,
hasShadow: false,
hideOnBlur: false,
hideDock: false,
hotkeys: ['Option+Space'],
resizable: true,
position: 'top',
primaryDisplay: false,
startup: false,
size: 0.4,
tray: true,
unique: false
}animate
- Value: true or false
- Default: true
- Enable animation when show and hide the window
hasShadow
- Value: true or false
- Default: false
- Controls the default macOS window shadows.
hideOnBlur
- Value: true or false
- Default: false
- Hides the HyperTerm Overlay when it loses focus.
hideDock
- Value: true or false
- Default: false
- Removes the HyperTerm dock icon. It works only when the
uniqueoption is activated.
hotkeys
- Value: array of hotkey strings
- Default: ['Option+Space']
- Specify one or more hotkeys to show and hide the HyperTerm Overlay (see:
Accelerator)
resizable
- Value: true or false
- Default: true
- Allow the HyperTerm Overlay be resizable.

position
- Value: 'top', 'bottom', 'left' or 'right'
- Default: 'top'
- Choose where HyperTerm Overlay will be positioned:
top,bottom,leftorright.
primaryDisplay
- Value: true or false
- Default: false
- Show HyperTerm Overlay only on primary display.
startup
- Value: true or false
- Default: true
- Open HyperTerm Overlay on HyperTerm startup.
size
- Value: float or number
- Default: 0.4
- The size of HyperTerm Overlay when it is showing.
The possible values are a
numberor afloat. If is a number, it represents the size um pixels. Else, if is a float, it means the percentage of the screen.
tray
- Value: true or false
- Default: true
- Add icon to the system notification area, for access HyperTerm Overlay.

unique
- Value: true or false
- Default: false
- Makes HyperTerm Overlay the unique window of HyperTerm. Any other window will be removed.