From ea8c0e5bdce00cc27d22c6c128d6e9a306ef2175 Mon Sep 17 00:00:00 2001 From: uint23 Date: Tue, 15 Apr 2025 11:29:44 +0100 Subject: can quit --- src/usercfg.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/usercfg.h (limited to 'src/usercfg.h') 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 +#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 -- cgit v1.2.3