summaryrefslogtreecommitdiff
path: root/src/usercfg.h
blob: 111ae03059e61208904f8eef6d52da2a5c541b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef USER_CONFIG
#define USER_CONFIG

#include <X11/keysym.h>
#include "defs.h"

#define MOD	ALT

static const char *termcmd[] = {"st", NULL};

static const Binding binds[] = {
	BIND(MOD, 			Return,		termcmd),
	CALL(MOD|SHIFT,		q,			quit),
};

#endif