diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-08-29 13:18:14 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-05-27 23:53:42 +0400 |
commit | 48713517508b579dba5bb1de617636a832ac99fd (patch) | |
tree | 1a5ccf8a9fb56531965234e9b66efcc138097508 /config.h | |
parent | a37c9d75cc2189c018a4a34b5caf6b9c15e953b8 (diff) |
float mode focus and tiling mode focus seperated
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ /* appearance */ static const unsigned int borderpx = 2; /* border pixel of windows */ -static const int startwithgaps = 1; /* 1 means gaps are used by default */ +static const int startwithgaps = 1; /* 1 means gaps are used by default */ static const unsigned int gappx = 16; /* default gap between windows in pixels */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ @@ -103,6 +103,7 @@ static const Key keys[] = { { MODKEY, XK_equal, setgaps, {.i = +1 } }, { MODKEY, XK_n, focusmaster, {0} }, + { MODKEY, XK_a, togglefocusfloat, {0} }, { MODKEY, XK_s, togglescratch, {.v = scratchpadcmd } }, |