From 11290fbeaff2c800193562a977bdffe44491d346 Mon Sep 17 00:00:00 2001 From: randomuser Date: Sat, 6 Mar 2021 21:45:03 -0600 Subject: [PATCH] change config.def.h to add desktops 7-10, various shortcuts --- config.def.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 82d377f..f63e399 100644 --- a/config.def.h +++ b/config.def.h @@ -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