config.def.h - tabbed - Simple tabbing application for X11.
(HTM) git clone git://r-36.net/tabbed
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
config.def.h (3374B)
---
1 /* See LICENSE file for copyright and license details. */
2
3 /* appearance */
4 static const char font[] = "Liberation Mono:pixelsize=15:antialias=true:autohint=true";
5 static const char* normbgcolor = "#222222";
6 static const char* normfgcolor = "#cccccc";
7 static const char* selbgcolor = "#555555";
8 static const char* selfgcolor = "#ffffff";
9 static const char* urgbgcolor = "#111111";
10 static const char* urgfgcolor = "#cc0000";
11 static const char before[] = "<";
12 static const char after[] = ">";
13 static const char titletrim[] = "...";
14 static const int tabwidth = 200;
15 static Bool foreground = True;
16 static Bool urgentswitch = False;
17 Bool showbar = True; /* False means no bar */
18 Bool bottombar = False; /* False means top bar */
19
20 /*
21 * Where to place a new tab when it is opened. When npisrelative is True,
22 * then the current position is changed + newposition. If npisrelative
23 * is False, then newposition is an absolute position.
24 */
25 static int newposition = 0;
26 static Bool npisrelative = False;
27
28 #define SETPROP(p) { \
29 .v = (char *[]){ "/bin/sh", "-c", \
30 "prop=\"`xwininfo -children -id $1 | grep '^ 0x' | sed -e's@^ *\\(0x[0-9a-f]*\\) \"\\([^\"]*\\)\".*@\\1 \\2@' | xargs -0 printf %b | dmenu -l 10`\" &&" \
31 "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
32 p, winid, NULL \
33 } \
34 }
35
36 #define MODKEY ControlMask
37 static Key keys[] = { \
38 /* modifier key function argument */
39 { MODKEY|ShiftMask, XK_Return, focusonce, { 0 } },
40 { MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
41 { MODKEY, XK_t, spawn, SETPROP("_TABBED_SELECT_TAB") },
42 { MODKEY, XK_b, togglebar, { 0 } },
43 { MODKEY, XK_m, toggletop, { 0 } },
44
45 { MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
46 { MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
47 { MODKEY|ShiftMask, XK_j, movetab, { .i = -1 } },
48 { MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
49 { MODKEY, XK_Tab, rotate, { .i = 0 } },
50
51 { MODKEY, XK_1, move, { .i = 0 } },
52 { MODKEY, XK_2, move, { .i = 1 } },
53 { MODKEY, XK_3, move, { .i = 2 } },
54 { MODKEY, XK_4, move, { .i = 3 } },
55 { MODKEY, XK_5, move, { .i = 4 } },
56 { MODKEY, XK_6, move, { .i = 5 } },
57 { MODKEY, XK_7, move, { .i = 6 } },
58 { MODKEY, XK_8, move, { .i = 7 } },
59 { MODKEY, XK_9, move, { .i = 8 } },
60 { MODKEY, XK_0, move, { .i = 9 } },
61
62 { MODKEY, XK_q, killclient, { 0 } },
63
64 { MODKEY, XK_u, focusurgent, { .v = NULL } },
65 { MODKEY|ShiftMask, XK_u, toggle, { .v = (void *)&urgentswitch } },
66 { MODKEY|ShiftMask, XK_e, togglefg, { 0 } },
67
68 { 0, XK_F11, fullscreen, { 0 } },
69 };
70