Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 874 Bytes

File metadata and controls

34 lines (28 loc) · 874 Bytes

Electron Forge: AppImage

This is an electron-forge builder for AppImage.

This project is based on several existing projects:

Usage

npm install @forkprince/electron-forge-maker-appimage --save-dev

forge.config.js

makers: [
  {
    name: "@forkprince/electron-forge-maker-appimage",
    platforms: ["linux"],
    config: {
      productName: "Re:Lunatic Player",
      icons: [
        {
          file: "./src/img/logo.png",
          size: 256
        }
      ]
    }
  }
];