From 8b5710ff44ebabef1acae9783da8286d5366c74c Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Mon, 23 Jun 2014 00:39:21 +0200 Subject: add stuff --- config.def.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config.def.h (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h new file mode 100644 index 0000000..ea2119f --- /dev/null +++ b/config.def.h @@ -0,0 +1,28 @@ +/* See LICENSE file for copyright and license details. */ + +static char font[] = "-*-dejavu sans condensed-bold-r-*-*-0-0-*-*-*-0-*-*"; +#define NUMFONTS 30 +#define FONTSZ(x) ((int)(100.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTS-1] */ + +/* how much screen estate is to be used at max for the content */ +static float usablewidth = 0.75; +static float usableheight = 0.75; + +static Mousekey mshortcuts[] = { + /* button function argument */ + { Button1, advance, {.i = +1} }, + { Button2, advance, {.i = -1} }, +}; + +static Shortcut shortcuts[] = { + /* keysym function argument */ + { XK_q, quit, {0} }, + { XK_Right, advance, {.i = +1} }, + { XK_Left, advance, {.i = -1} }, + { XK_Return, advance, {.i = +1} }, + { XK_BackSpace, advance, {.i = -1} }, + { XK_Down, advance, {.i = +5} }, + { XK_Up, advance, {.i = -5} }, + { XK_Next, advance, {.i = +10} }, + { XK_Prior, advance, {.i = -10} }, +}; -- cgit v1.2.3