hyper-transparent icon indicating copy to clipboard operation
hyper-transparent copied to clipboard

Gets more transparent by opening new window

Open balazser opened this issue 6 years ago • 1 comments

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']
    },

image

image

balazser avatar May 24 '19 13:05 balazser

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.

rstacruz avatar Jun 09 '20 06:06 rstacruz