hyper-transparent
hyper-transparent copied to clipboard
Gets more transparent by opening new window
Hi, thanks for the great plugin.
After every opened window the terminal gets more transparent. My config:
Hyper 3.0.2 (stable)
Renderers: Canvas
Plugins:
hyper-transparent (1.2.2),
Created by Guillermo Rauch Copyright © 2019 ZEIT, Inc.
hyperTransparent: {
backgroundColor: '#000',
opacity: 0.9,
vibrancy: '', // ['', 'dark', 'medium-light', 'ultra-dark']
},


Same here. The workaround is to adjust opacity after opening a new window. I have my config set up to have randomness in the opacity:
module.exports = {
hyperTransparent: {
backgroundColor: '#fdfdfd',
opacity: 0.9 + Math.random() * 0.1, // <===
vibrancy: 'medium-light'
}
}
To reset the transparency, I can just touch ~/.hyper.js. Not ideal, but it works I guess.