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)
- Host: GitHub
- URL: https://github.com/lucleray/hyper-opacity
- Owner: lucleray
- Created: 2018-04-17T21:20:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-12T14:48:00.000Z (almost 8 years ago)
- Last Synced: 2024-12-13T01:32:47.203Z (about 1 year ago)
- Topics: hyper, hyper-plugin, opacity
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/hyper-opacity
- Size: 10.5 MB
- Stars: 114
- Watchers: 5
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
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`
### 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
}
```
### More
**hyper-opacity** uses [BrowserWindow.setOpacity()](https://electronjs.org/docs/api/browser-window#winsetopacityopacity-windows-macos).