change config.def.h to add desktops 7-10, various shortcuts

This commit is contained in:
randomuser 2021-03-06 21:45:03 -06:00
parent 16549e7305
commit 11290fbeaf
1 changed files with 9 additions and 1 deletions

View File

@ -28,7 +28,7 @@ static struct key keys[] = {
{MOD, XK_j, win_move, {.com = (const char*[]){"move", "s"}, .i = 10}},
{MOD, XK_l, win_move, {.com = (const char*[]){"move", "e"}, .i = 10}},
{MOD, XK_h, win_move, {.com = (const char*[]){"move", "w"}, .i = 10}},
{MOD|SFT, XK_k, win_move, {.com = (const char*[]){"resize", "n"}, .i = 10}},
{MOD|SFT, XK_j, win_move, {.com = (const char*[]){"resize", "s"}, .i = 10}},
{MOD|SFT, XK_l, win_move, {.com = (const char*[]){"resize", "e"}, .i = 10}},
@ -64,6 +64,14 @@ static struct key keys[] = {
{MOD|SFT, XK_5, win_to_ws, {.i = 5}},
{MOD, XK_6, ws_go, {.i = 6}},
{MOD|SFT, XK_6, win_to_ws, {.i = 6}},
{MOD, XK_7, ws_go, {.i = 7}},
{MOD|SFT, XK_7, win_to_ws, {.i = 7}},
{MOD, XK_8, ws_go, {.i = 8}},
{MOD|SFT, XK_8, win_to_ws, {.i = 8}},
{MOD, XK_9, ws_go, {.i = 9}},
{MOD|SFT, XK_9, win_to_ws, {.i = 9}},
{MOD, XK_0, ws_go, {.i = 10}},
{MOD|SFT, XK_0, win_to_ws, {.i = 10}},
};
#endif