aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2015-06-23 12:22:53 +0200
committerGravatar Christian Hesse <mail@eworm.de>2015-06-23 12:22:53 +0200
commit011989fbb773a1568be6d8609fb821ea8e62fb0f (patch)
tree74015b49d0d7c7d9a65df2c3242f6477aab207fe /config.def.h
parent37fbb9fa23885064df9f2fa92c0308184cab4fda (diff)
downloadjournal-notify-011989fbb773a1568be6d8609fb821ea8e62fb0f.tar.gz
journal-notify-011989fbb773a1568be6d8609fb821ea8e62fb0f.tar.zst
introduce config.h
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h19
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: