All Projects → rickgbw → Hyperterm Overlay

rickgbw / Hyperterm Overlay

Licence: mit
A complete and customizable solution for a overlay window in your Hyper.app

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Hyperterm Overlay

Hyper Site
The official website for the Hyper terminal
Stars: ✭ 289 (+127.56%)
Mutual labels:  terminal, hyper
Themer
themer is inspired by trevordmiller/nova and chriskempson/base16.
Stars: ✭ 4,483 (+3429.92%)
Mutual labels:  terminal, hyper
Themer Gui
A graphical UI for themer. Replaced by Progressive Web App at https://themer.dev.
Stars: ✭ 337 (+165.35%)
Mutual labels:  terminal, hyper
Aura Theme
💅 A beautiful dark theme for your favorite apps.
Stars: ✭ 159 (+25.2%)
Mutual labels:  terminal, hyper
Hyper Snazzy
Elegant Hyper theme with bright colors
Stars: ✭ 1,248 (+882.68%)
Mutual labels:  terminal, hyper
Yonce
👑 Queen Bey-inspired themes for all your favs.
Stars: ✭ 280 (+120.47%)
Mutual labels:  terminal, hyper
Verminal
A Hyper theme. 💻
Stars: ✭ 386 (+203.94%)
Mutual labels:  terminal, hyper
Dracula Theme
🧛🏻‍♂️ One theme. All platforms.
Stars: ✭ 17,480 (+13663.78%)
Mutual labels:  terminal, hyper
Hyper Hide Title
Hide the Hyper window title when there is only one tab
Stars: ✭ 46 (-63.78%)
Mutual labels:  terminal, hyper
Findergo
🐢 Open terminal quickly from Finder
Stars: ✭ 862 (+578.74%)
Mutual labels:  terminal, hyper
Terminal Icons
Beautiful icons for your favourite terminal apps like Hyper and iTerm2
Stars: ✭ 149 (+17.32%)
Mutual labels:  terminal, hyper
Awesome Hyper
🖥 Delightful Hyper plugins, themes, and resources
Stars: ✭ 9,687 (+7527.56%)
Mutual labels:  terminal, hyper
Relaxed Terminal Themes
🕶️ A relaxed terminal theme to take a more relaxed view of things. For iTerm, Hyper, the macOS Terminal and a bunch of others.
Stars: ✭ 382 (+200.79%)
Mutual labels:  terminal, hyper
Hyper Fileio
🚀 Ephemeral file sharing direct from Hyper
Stars: ✭ 18 (-85.83%)
Mutual labels:  terminal, hyper
Nord Hyper
An arctic, north-bluish clean and elegant Hyper theme plugin.
Stars: ✭ 96 (-24.41%)
Mutual labels:  terminal, hyper
Hyper
A terminal built on web technologies
Stars: ✭ 37,504 (+29430.71%)
Mutual labels:  terminal, hyper
Warp
Secure and simple terminal sharing
Stars: ✭ 1,548 (+1118.9%)
Mutual labels:  terminal
Tty Pie
Draw pie charts in your terminal window
Stars: ✭ 125 (-1.57%)
Mutual labels:  terminal
Ervy
Bring charts to terminal.
Stars: ✭ 1,530 (+1104.72%)
Mutual labels:  terminal
Sentaku
Utility to make sentaku (selection, 選択(sentaku)) window with shell command.
Stars: ✭ 117 (-7.87%)
Mutual labels:  terminal

HyperTerm Overlay

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

home2

Install

Edit your ~/.hyper.js (Cmd+,) and insert the hyperterm-overlay in your plugins array:

plugins: [
  'hyperterm-overlay'
],

Configuration

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
    }
  },
  //...
};

alwaysOnTop

  • Value: true or false
  • Default: true
  • Makes Hyperterm Overlay window stay always on top.

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)

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.

resizable

  • Value: true or false
  • Default: true
  • Allow the HyperTerm Overlay be resizable.

resize

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.

startAlone

  • Value: true or false
  • Default: false
  • Makes HyperTerm Overlay the unique window displayed when started.
  • Other windows started will be default Hyper.app windows.

startup

  • Value: true or false
  • Default: true
  • Open HyperTerm Overlay on Hyper.app startup.

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 Hyper.app. Any other window will be removed.

Licence

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].