tabbed.h (3258B) download
1/* See LICENSE file for copyright and license details. */
2
3static const char black[] = "#282828";
4static const char blue[] = "#83a598"; // focused window border
5static const char gray2[] = "#282828"; // unfocused window border
6static const char gray3[] = "#3c3836";
7static const char gray4[] = "#282828";
8static const char green[] = "#8ec07c";
9static const char orange[] = "#fe8019";
10static const char pink[] = "#d3869b";
11static const char red[] = "#fb4934";
12static const char white[] = "#ebdbb2";
13static const char yellow[] = "#b8bb26";
14static const char col_borderbar[] = "#1e2122";
15
16/* appearance */
17static const char font[] = "Fira Code:size=10";
18static const char *normbgcolor = gray3;
19static const char *normfgcolor = white;
20static const char *selbgcolor = "#fff";
21static const char *selfgcolor = black;
22static const char *urgbgcolor = blue;
23static const char *urgfgcolor = red;
24static const char before[] = "<";
25static const char after[] = ">";
26static const char titletrim[] = "...";
27static const int tabwidth = 200;
28static const Bool foreground = True;
29static Bool urgentswitch = False;
30
31/*
32 * Where to place a new tab when it is opened. When npisrelative is True,
33 * then the current position is changed + newposition. If npisrelative
34 * is False, then newposition is an absolute position.
35 */
36static int newposition = 0;
37static Bool npisrelative = False;
38
39#define SETPROP(p) \
40 { \
41 .v = (char *[]) { \
42 "/bin/sh", "-c", \
43 "prop=\"`xwininfo -children -id $1 | grep '^ 0x' |" \
44 "sed -e's@^ *\\(0x[0-9a-f]*\\) \"\\([^\"]*\\)\".*@\\1 \\2@' |" \
45 "xargs -0 printf %b | dmenu -l 10 -w $1`\" &&" \
46 "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
47 p, winid, NULL \
48 } \
49 }
50
51#define MODKEY ControlMask
52static const Key keys[] = {
53 /* modifier key function argument */
54 {MODKEY | ShiftMask, XK_Return, focusonce, {0}},
55 {MODKEY | ShiftMask, XK_Return, spawn, {0}},
56
57 {MODKEY | ShiftMask, XK_l, rotate, {.i = +1}},
58 {MODKEY | ShiftMask, XK_h, rotate, {.i = -1}},
59 {MODKEY | ShiftMask, XK_j, movetab, {.i = -1}},
60 {MODKEY | ShiftMask, XK_k, movetab, {.i = +1}},
61 {MODKEY, XK_Tab, rotate, {.i = 0}},
62
63 {MODKEY, XK_grave, spawn, SETPROP("_TABBED_SELECT_TAB")},
64 {MODKEY, XK_1, move, {.i = 0}},
65 {MODKEY, XK_2, move, {.i = 1}},
66 {MODKEY, XK_3, move, {.i = 2}},
67 {MODKEY, XK_4, move, {.i = 3}},
68 {MODKEY, XK_5, move, {.i = 4}},
69 {MODKEY, XK_6, move, {.i = 5}},
70 {MODKEY, XK_7, move, {.i = 6}},
71 {MODKEY, XK_8, move, {.i = 7}},
72 {MODKEY, XK_9, move, {.i = 8}},
73 {MODKEY, XK_0, move, {.i = 9}},
74
75 {MODKEY, XK_q, killclient, {0}},
76
77 {MODKEY, XK_u, focusurgent, {0}},
78 {MODKEY | ShiftMask, XK_u, toggle, {.v = (void *)&urgentswitch}},
79
80 {0, XK_F11, fullscreen, {0}},
81};