gotunes

command module
v0.0.0-...-ef4f632 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 5, 2017 License: MIT Imports: 14 Imported by: 0

README

gotunes

A mpd-based music player/client/server written in Go and Angular

Server

Starting the Server
./gotunes

Running the server with a different config

./gotunes -c some-config.json
Config Options

Config:

{
    "mpdhost": "localhost",
    "mpdport": 6600,
    "httpport": 80,
    "webroot": "./public",
    "startmpd": true,
    "loglevel": "info"
}
  • mpdhost and mpdport are pretty self-explanatory
  • httpport is the port that the client will be served on (80 will require root)
  • webroot should point to the location on disk that contains the web files
  • startmpd tells the server to attempt to start mpd if it isn't already started
  • loglevel should be one of the following: "debug", "info", "warn", "error"

Client

Client Settings

On the settings page, the following options are available:

  • Theme - there are a number of color themes available
  • Disabled Views - gives the ability to disable certain views (Artist, Album, Track)
  • Idle View Enabled - enables/disables the idle view
  • Idle Delay - number of seconds of inactivity until the idle view is triggered
  • Dynamic Title Enabled - enables/disables the dynamic title (putting title/artist in browser title)

Theming

Theming is as easy as creating a new stylesheet and editing the app.js file to point to it. You can use the existing theme files as a template. Look for this in app.js:

app.constant('themes', [
    { id: 0, name: 'Default', url: 'assets/css/theme-default.css' },
    { id: 1, name: 'Odin', url: 'assets/css/theme-odin.css' },
    { id: 2, name: 'Aether', url: 'assets/css/theme-aether.css' }
    // your theme here, with a unique id
]);

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL