1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef USER_CONFIG
#define USER_CONFIG
#include <X11/keysym.h>
#include "defs.h"
#define BORDER_WIDTH 1
#define BORDER_FOC_COL "#AAFFFA" // the border color when focused
#define BORDER_UFOC_COL "#FF4439" // the border color when unfocused
#define GAPS 10 // how many pixels wide the border is
#define MASTER_WIDTH 0.6 // how much of the screen the master window takes up (0.0-1.0)
static const char *termcmd[] = {"st", NULL};
#define MOD ALT
static const Binding binds[] = {
BIND(MOD, Return, termcmd),
CALL(MOD|SHIFT, q, quit),
CALL(MOD, k, focus_next),
CALL(MOD, j, focus_prev),
CALL(MOD, c, close_focused),
};
#endif
|