An open API service indexing awesome lists of open source software.

https://github.com/lucleray/hyper-opacity

Set the opacity of your Hyper terminal (Windows and MacOS)
https://github.com/lucleray/hyper-opacity

hyper hyper-plugin opacity

Last synced: 6 months ago
JSON representation

Set the opacity of your Hyper terminal (Windows and MacOS)

Awesome Lists containing this project

README

          

## hyper-opacity

Set the opacity of your Hyper terminal

* Works on **Windows** and **MacOS**
* Compatible with any theme
* Simple configuration in `.hyper.js`



demo


### Install

`hyper i hyper-opacity`

### Configure

Add a line to your hyper configuration (`~/.hyper.js`) :

```js
module.exports = {
config: {
// rest of the config
opacity: 0.85
}
// rest of the file
}
```

### Configure the opacity for focused/unfocused windows

```js
module.exports = {
config: {
// rest of the config
opacity: {
focus: 0.9,
blur: 0.5
}
}
// rest of the file
}
```



demo focused window


### More

**hyper-opacity** uses [BrowserWindow.setOpacity()](https://electronjs.org/docs/api/browser-window#winsetopacityopacity-windows-macos).