shaz13 / headset-electron

Electron wrapper for Headset

Home Page:http://headsetapp.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Headset

A music player for the busy ones. http://headsetapp.co

Building for other systems

Since this project is using electron js, it can work on any platform that can run node js. The maintainers of Headset only support macOs, Windows and Ubuntu. If you would like to create a build for a different environment (e.g Manjaro or Aur, etc.) please follow these steps:

  1. Install NodeJs 6.2.0 or later

  2. Clone the Repo

$ git clone https://github.com/headsetapp/headset-electron.git
  1. install electron-packager
$ npm install -g electron-packager
  1. Create your build:
cd headset-electron
electron-packager . \
  --ignore=node_modules/electron-prebuilt \
  --ignore=node_modules/electron-packager \
  --out build/ \
  --overwrite \
  --platform=linux \
  --arch=x64 \
  1. [Optional] For the Ubuntu build, we're using electron-installer-debian. There might be an installer for your specifc version, just have to google for it.

Known Issues

Missing icon in Ubuntu

electron-packager ignores the Icon argument. You can add the icon path to the .desktop file like so:

# in /usr/applications/Headset.desktop

[Desktop Entry]
...
Icon=/usr/lib/Headset/resources/app/icon.png
...

About

Electron wrapper for Headset

http://headsetapp.co

License:MIT License


Languages

Language:JavaScript 73.9%Language:Shell 12.9%Language:HTML 9.6%Language:CSS 3.7%