aboutsummaryrefslogtreecommitdiff
path: root/.repos/sent/config.def.h
diff options
context:
space:
mode:
authorMarvin Borner2020-06-11 22:18:45 +0200
committerMarvin Borner2020-06-11 22:18:45 +0200
commit425098cd34c74beb38ccb3a13a78ec74f342bc22 (patch)
treef4cc8b389b7cfacdd61b9242b807f30e20c673cf /.repos/sent/config.def.h
parent7f023fcd382dc39f9589d1d9887d25a1b3b787dd (diff)
Optimized sent
Diffstat (limited to '.repos/sent/config.def.h')
-rw-r--r--.repos/sent/config.def.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/.repos/sent/config.def.h b/.repos/sent/config.def.h
deleted file mode 100644
index 60eb376..0000000
--- a/.repos/sent/config.def.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-static char *fontfallbacks[] = {
- "dejavu sans",
- "roboto",
- "ubuntu",
-};
-#define NUMFONTSCALES 42
-#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
-
-static const char *colors[] = {
- "#000000", /* foreground color */
- "#FFFFFF", /* background color */
-};
-
-static const float linespacing = 1.4;
-
-/* how much screen estate is to be used at max for the content */
-static const float usablewidth = 0.75;
-static const float usableheight = 0.75;
-
-static Mousekey mshortcuts[] = {
- /* button function argument */
- { Button1, advance, {.i = +1} },
- { Button3, advance, {.i = -1} },
- { Button4, advance, {.i = -1} },
- { Button5, advance, {.i = +1} },
-};
-
-static Shortcut shortcuts[] = {
- /* 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} },
-};
-
-static Filter filters[] = {
- { "\\.ff$", "cat" },
- { "\\.ff.bz2$", "bunzip2" },
- { "\\.[a-z0-9]+$", "2ff" },
-};