diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h new file mode 100644 index 0000000..333f848 --- /dev/null +++ b/config.def.h @@ -0,0 +1,19 @@ +/* + * (C) 2014-2015 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 + +/* how long to display notifications */ +#define NOTIFICATION_TIMEOUT 10000 + +/* throttle shreshold */ +#define THROTTLE_THRESHOLD 6 + +#endif /* _CONFIG_H */ + +// vim: set syntax=c: |