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