main
config.def.h
1static const struct {
2 const char *name;
3 const char *path;
4} playlists[] = {
5 /* example of valid playlists
6 { "dg-01", "/mnt/media/music/death_grips" },
7 { "slvt", "/home/ethicalgooner2007/Music/" },
8 */
9};
10
11/* extensions to search for in a playlist */
12static const char *extensions[] = { "mp3", "flac", "ogg", "wav" };
13
14/*----------VARIABLES----------*/
15static const int shuffle = 1;
16static const int loop = 1;
17
18#define notifications 0 /* you need libnotify for notifs to work */
19#define notifications_timeout 1000 /* 1000ms=1s, so 2000 is 2 seconds */
20/*--------VARIABLES-END--------*/
21
22#define SOCKET_PATH "/tmp/rudis.sock"
23#define SCAN_FILE "/tmp/rudis_scanned"