diff options
author | uint23 <[email protected]> | 2025-04-17 13:22:12 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-04-17 13:22:12 +0100 |
commit | a6fe40e67b8d0dbde3cac2a0be913c7dd4df9643 (patch) | |
tree | 606ff6da27352145e67b7a1613d7f5f26e289864 /src/usercfg.h | |
parent | c1aa40459115b5476726abd8ab793d57d4523bd0 (diff) |
inc, dec gaps
Diffstat (limited to 'src/usercfg.h')
-rw-r--r-- | src/usercfg.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/usercfg.h b/src/usercfg.h index b5ed815..738ecd1 100644 --- a/src/usercfg.h +++ b/src/usercfg.h @@ -17,11 +17,13 @@ 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), + CALL(MOD|SHIFT, e, quit), + CALL(MOD, j, focus_next), + CALL(MOD, k, focus_prev), + CALL(MOD|SHIFT, q, close_focused), CALL(MOD, f, toggle_floating), + CALL(MOD, equal, inc_gaps), + CALL(MOD, minus, dec_gaps), }; #endif |