1
0
mirror of https://github.com/danbee/neompc synced 2025-03-04 08:39:10 +00:00
neompc/config/config.inc.php
Dan Barber cb1c845466 + Added the ability to hide extra info (artist and album) in the browse list or play list.
~ Control page now displays the correct playlist number for the track.
2007-05-13 20:02:04 +00:00

26 lines
685 B
PHP

<?php
/**************************************
** NeoMPC Config File
**************************************/
/* Config relating to the display of CD covers */
/******** THIS IS NOT YET IMPLEMENTED! *********/
$_CONFIG['music_directory'] = '/var/lib/mpd/music';
$_CONFIG['album_cover_name'] = 'folder.jpg';
/***********************************************/
/* Template to use for displaying the pages */
$_CONFIG['template'] = 'default';
/* Browse mode can be 'filesystem' or 'metadata' */
$_CONFIG['browse_mode'] = 'filesystem';
$_CONFIG['sort_by_tracknumber'] = true;
$_CONFIG['browse_extra_track_info'] = false;
$_CONFIG['playlist_extra_track_info'] = true;
?>