sent/config.def.h

42 lines
1.3 KiB
C
Raw Normal View History

2014-06-22 22:39:21 +00:00
/* See LICENSE file for copyright and license details. */
2015-04-20 20:20:16 +00:00
static char *fontfallbacks[] = {
"dejavu",
2015-11-01 17:09:22 +00:00
"roboto",
"ubuntu",
2015-04-20 20:20:16 +00:00
};
#define NUMFONTSCALES 30
#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
2014-06-22 22:39:21 +00:00
2015-11-04 00:43:13 +00:00
static const char *fgcol = "#000000";
static const char *bgcol = "#FFFFFF";
2015-11-07 22:54:23 +00:00
static const float linespacing = 1.4;
2014-06-22 22:39:21 +00:00
/* how much screen estate is to be used at max for the content */
2015-11-11 17:41:51 +00:00
static const float usablewidth = 0.75;
static const float usableheight = 0.75;
2014-06-22 22:39:21 +00:00
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} },
2014-06-22 23:55:25 +00:00
{ XK_l, advance, {.i = +1} },
{ XK_h, advance, {.i = -1} },
{ XK_j, advance, {.i = +1} },
{ XK_k, advance, {.i = -1} },
{ XK_Down, advance, {.i = +1} },
{ XK_Up, advance, {.i = -1} },
{ XK_Next, advance, {.i = +1} },
{ XK_Prior, advance, {.i = -1} },
2014-06-22 22:39:21 +00:00
};