Skip to content

Commit

Permalink
Merge pull request #46 from Markov-Komarov/fix-crash-setlayout
Browse files Browse the repository at this point in the history
Fix Crash when pressing Modkey+Space
  • Loading branch information
ChrisTitusTech authored Jul 30, 2024
2 parents 19804cb + 492a211 commit 731415e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ static Key keys[] = {
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, // set tile layout
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, // set floating layout
{ MODKEY, XK_m, fullscreen, {0} }, // toggles fullscreen for the currently selected client
{ MODKEY, XK_space, setlayout, {-1} }, // toggles between current and previous layout
{ MODKEY, XK_space, setlayout, {0} }, // toggles between current and previous layout
{ MODKEY|ShiftMask, XK_m, togglefloating, {0} }, // toggles between tiled and floating arrangement for the currently focused client
{ MODKEY|ShiftMask, XK_y, togglefakefullscreen, {0} }, // toggles "fake" fullscreen for the selected window
{ MODKEY, XK_0, view, {.ui = ~0 } }, // view all tags on the current monitor
Expand Down

0 comments on commit 731415e

Please sign in to comment.