aboutsummarylogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorChristoph Lohmann2013-02-15 19:10:22 +0100
committerChristoph Lohmann2013-02-15 19:10:22 +0100
commit7c1edf7f379bc7bfa98a750b596f72ffaa05ab63 (patch)
tree10c35aa3b4fffd9ceb84f8a7e461c195946a553a /config.def.h
parent62bb3126846e3fb5b5096fd2eafabf4227543a31 (diff)
downloadaur-7c1edf7f379bc7bfa98a750b596f72ffaa05ab63.tar.gz
Adding a more efficient drawing code.
Thanks Mihail Zenkov <mihail.zenkov@gmail.com> for giving the hint!
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 684adf78c614..8732ca3d60d7 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,10 +9,13 @@ static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=fals
static int borderpx = 2;
static char shell[] = "/bin/sh";
-/* double-click timeout (in milliseconds) between clicks for selection */
+/* timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300;
static unsigned int tripleclicktimeout = 600;
+/* frames per second st should at maximum draw to the screen */
+static unsigned int framespersecond = 60;
+
/* TERM value */
static char termname[] = "st-256color";