aboutsummarylogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero2013-09-12 20:41:34 +0200
committerChristoph Lohmann2013-09-12 20:47:41 +0200
commit29c8049c45b84a34e6df0c384de97f949cdc8811 (patch)
treecb75ab0c91a8ce60e790985fe9d41c06487b97ba /config.def.h
parent170d2ea0302e2fafa39a9b4c906b4e63262f51c3 (diff)
downloadaur-29c8049c45b84a34e6df0c384de97f949cdc8811.tar.gz
Add audible bell
\a is the character for bell, and st is only marking the window as urgent if it is not active. This patch adds an audible bell which can be disable with bellvolume variable. Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 24aeb1945d77..6487406eef38 100644
--- a/config.def.h
+++ b/config.def.h
@@ -37,6 +37,12 @@ static unsigned int actionfps = 30;
*/
static unsigned int blinktimeout = 800;
+/*
+ * bell volume. It must be a value between -100 and 100. Use 0 for disabling
+ * it
+ */
+static int bellvolume = 1;
+
/* TERM value */
static char termname[] = "st-256color";