hyper-opacity
hyper-opacity copied to clipboard
Set the opacity of your Hyper terminal (Windows and MacOS)
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
) :
module.exports = {
config: {
// rest of the config
opacity: 0.85
}
// rest of the file
}
Configure the opacity for focused/unfocused windows
module.exports = {
config: {
// rest of the config
opacity: {
focus: 0.9,
blur: 0.5
}
}
// rest of the file
}
More
hyper-opacity uses BrowserWindow.setOpacity().