JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q37015F
  • License MIT

A complete and customizable solution for a overlay window in your HyperTerm.

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

home2

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 unique option 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.

resize

position

  • Value: 'top', 'bottom', 'left' or 'right'
  • Default: 'top'
  • Choose where HyperTerm Overlay will be positioned: top, bottom, left or right.

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 number or a float. 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.

tray

unique

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

Licence

MIT