diff options
Diffstat (limited to 'src/usercfg.h')
-rw-r--r-- | src/usercfg.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/usercfg.h b/src/usercfg.h new file mode 100644 index 0000000..111ae03 --- /dev/null +++ b/src/usercfg.h @@ -0,0 +1,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 |