diff options
-rw-r--r-- | config.def.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 48de332..cf9bdb6 100644 --- a/config.def.h +++ b/config.def.h @@ -1,3 +1,13 @@ +/* + * (C) 2011-2013 by Christian Hesse <mail@eworm.de> + * + * This software may be used and distributed according to the terms + * of the GNU General Public License, incorporated herein by reference. + */ + +#ifndef _CONFIG_H +#define _CONFIG_H + /* name of the icon used for notifications */ #define ICON_SOUND "sound" @@ -22,3 +32,7 @@ #define MPD_HOST NULL #define MPD_PORT 0 #define MPD_TIMEOUT 0 + +#endif /* _CONFIG_H */ + +// vim: set syntax=c: |