hyperpower icon indicating copy to clipboard operation
hyperpower copied to clipboard

Change color

Open caioincau opened this issue 9 years ago • 8 comments

There is a way to change color?

caioincau avatar Dec 21 '16 18:12 caioincau

I would also like to know how to change the color :)

Aaron-A-zz avatar Dec 28 '16 00:12 Aaron-A-zz

not via any option yet. If you are brave edit %yourhomedir%.hyper_plugins\node_modules\hyperpower\index.js _spawnParticles change : [toHex(this.props.cursorColor)]; to an hex color.

regisbsb avatar Mar 19 '17 22:03 regisbsb

I've began making a configurable fork. I'll publish it by this weekend. Don't know if someone will accept the PR though.

MonsieurMan avatar Jun 27 '17 06:06 MonsieurMan

@MonsieurMan did it happen?

DRSDavidSoft avatar Apr 22 '18 00:04 DRSDavidSoft

@DRSDavidSoft Wow, this was a long time ago haha.
I remember having it working but it was on my last PC and I think the codebase's been completely rewritten since then.
Would love to take a look back at hyper but I don't have that much time anymore.

MonsieurMan avatar Apr 23 '18 06:04 MonsieurMan

I hope at least the authors implement this!

DRSDavidSoft avatar Apr 23 '18 14:04 DRSDavidSoft

I did this!!! Just trying to get some traction so the devs see it and review it: https://github.com/zeit/hyperpower/pull/66

raz-canva avatar Apr 03 '19 03:04 raz-canva

Acesse o arquivo: %yourhomedir%.hyper_plugins\node_modules\hyperpower\index.js

Modifique a linha 164, ou apena comente e coloque ela por cima exemplo:

Original: const colors = this.props.wowMode ? values(this.props.colors).map(toHex) : [toHex(this.props.cursorColor)];

Mude para: const colors = this.props.wowMode ? values(this.props.colors).map(toHex) : [toHex("COLORINENGLISH")]; // : [toHex(this.props.cursorColor)];

WalysonGO avatar Apr 04 '21 02:04 WalysonGO