-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.def.h
More file actions
21 lines (18 loc) · 941 Bytes
/
config.def.h
File metadata and controls
21 lines (18 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* See LICENSE file for copyright and license details. */
/* appearance */
static const char font[] = "-*-terminus-medium-r-*-*-14-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#444444";
static const char normbgcolor[] = "#222222";
static const char normfgcolor[] = "#bbbbbb";
static const char selbordercolor[] = "#005577";
static const char selbgcolor[] = "#005577";
static const char selfgcolor[] = "#eeeeee";
static const int bordersize = 1; /* widget border spacing in pixels */
#define MODKEY ControlMask
static Key keys[] = { \
/* modifier key function argument */
{ MODKEY, XK_q, quit, { 0 } },
{ MODKEY, XK_c, closewindow, { 0 } },
{ MODKEY, XK_j, toggleselect, { .i = +1 } },
{ MODKEY, XK_k, toggleselect, { .i = -1 } },
};