Skip to content Skip to sidebar Skip to footer

How To Use Electron-packager To Create A Custom Icon In Linux?

Following this tutorial: https://www.youtube.com/watch?v=dz5SnmBzBXc I did this: electron-packager . MyApp --platform=linux --arch=x64 --version=0.37.2 && cp icon.png MyApp

Solution 1:

Try this command: electron-packager . MyApp --platform=linux --arch=x64 --version=0.37.2 --icon=<path/to/your-icon-name>


Post a Comment for "How To Use Electron-packager To Create A Custom Icon In Linux?"