diff options
author | uint23 <[email protected]> | 2025-04-15 12:02:50 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-04-15 12:02:50 +0100 |
commit | dc3b91874677ebb2b0f6ec517b2dce661a92f2fe (patch) | |
tree | acaed0fd5b67b9f1b34fd707cef6caa0aef25179 /src/usercfg.h | |
parent | da9cfa48b7135f080b725faa4e0a2250037c48a8 (diff) |
changed to O3 optimizations, can map windows
Diffstat (limited to 'src/usercfg.h')
-rw-r--r-- | src/usercfg.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/usercfg.h b/src/usercfg.h index 24ba909..ea39c8e 100644 --- a/src/usercfg.h +++ b/src/usercfg.h @@ -4,11 +4,13 @@ #include <X11/keysym.h> #include "defs.h" -#define MOD ALT -#define BORDERWIDTH 2 +#define BORDER_WIDTH 2 +#define BORDER_FOC_COL "#00FF00" +#define BORDER_UFOC_COL "#FF0000" static const char *termcmd[] = {"st", NULL}; +#define MOD ALT static const Binding binds[] = { BIND(MOD, Return, termcmd), CALL(MOD|SHIFT, q, quit), |