Hi there.
I am wondering if there is a way to get a transparent background in a NW.js app.
I am creating some desktop widgets, and I would love for them to have organic edges rather than the rectangular window.
many thanks in advance!
This might help: docs.nwjs.io/en/latest/For%20Users/Advanced/Transparent%20Window
Thankyou - yes I checked this out.
I am unable to locate where the manifest gets built though.
It doesn't seem to be in the folder with everything else that exporter creates.
Open the "package" NW file using an archive manager and then edit the package.json file
I got it - many thanks.
If you build uncompressed the manifest is in the top folder: package.json
You then change the stylesheet: style.css
to say
html, body {
background: transparent;
color: transparent;
Develop games in your browser. Powerful, performant & highly capable.
Glad you got it