sent/config.def.h

59 lines
1.9 KiB
C
Raw Permalink 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[] = {
2020-09-13 15:08:07 +00:00
"mono",
"JoyPixels",
2015-04-20 20:20:16 +00:00
};
2015-11-17 00:39:40 +00:00
#define NUMFONTSCALES 42
2015-04-20 20:20:16 +00:00
#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
2014-06-22 22:39:21 +00:00
2016-05-21 19:39:58 +00:00
static const char *colors[] = {
2020-09-13 15:08:07 +00:00
"#000000", /* foreground color */
"#FFFFFF", /* background color */
2016-05-21 19:39:58 +00:00
};
2015-11-04 00:43:13 +00:00
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
2020-09-13 15:08:07 +00:00
/* height of the presentation progress bar */
static const int progressheight = 5;
2014-06-22 22:39:21 +00:00
static Mousekey mshortcuts[] = {
2020-09-13 15:08:07 +00:00
/* button function argument */
{ Button1, advance, {.i = +1} },
{ Button3, advance, {.i = -1} },
{ Button4, advance, {.i = -1} },
{ Button5, advance, {.i = +1} },
2014-06-22 22:39:21 +00:00
};
static Shortcut shortcuts[] = {
2020-09-13 15:08:07 +00:00
/* keysym function argument */
{ XK_Escape, quit, {0} },
{ XK_q, quit, {0} },
{ XK_Right, advance, {.i = +1} },
{ XK_Left, advance, {.i = -1} },
{ XK_Return, advance, {.i = +1} },
{ XK_space, advance, {.i = +1} },
{ XK_BackSpace, advance, {.i = -1} },
{ 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} },
{ XK_n, advance, {.i = +1} },
{ XK_p, advance, {.i = -1} },
{ XK_r, reload, {0} },
2014-06-22 22:39:21 +00:00
};
static Filter filters[] = {
2020-09-13 15:08:07 +00:00
{ "\\.ff$", "cat" },
{ "\\.ff.bz2$", "bunzip2" },
{ "\\.[a-z0-9]+$", "2ff" },
};