mirror of
https://github.com/danbee/neompc
synced 2025-03-04 08:39:10 +00:00
22 lines
588 B
PHP
22 lines
588 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'] = 'metadata';
|
|
|
|
$_CONFIG['sort_by_tracknumber'] = true;
|
|
|
|
?>
|