From cbda2632898f39aa43d539e88752cf02ad8bebbd Mon Sep 17 00:00:00 2001 From: User Date: Mon, 19 Jul 2021 21:51:15 +0300 Subject: [PATCH] fix previous fix --- config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index 16cd104..345d73b 100644 --- a/config.h +++ b/config.h @@ -100,8 +100,8 @@ static Key keys[] = { { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, - { MODKEY, XK_Left, focusstack, {.i = +1 } }, - { MODKEY, XK_Right, focusstack, {.i = -1 } }, + { MODKEY, XK_Right, focusstack, {.i = +1 } }, + { MODKEY, XK_Left, focusstack, {.i = -1 } }, { MODKEY, XK_space, focusmaster, {0} }, { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, @@ -142,8 +142,8 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_l, spawn, {.v = slockcmd } }, - { MODKEY|ControlMask, XK_Left, view_adjacent, { .i = +1 } }, - { MODKEY|ControlMask, XK_Right, view_adjacent, { .i = -1 } }, + { MODKEY|ControlMask, XK_Right, view_adjacent, { .i = +1 } }, + { MODKEY|ControlMask, XK_Left, view_adjacent, { .i = -1 } }, { 0, XK_Print, spawn, SHCMD("maim ~/Pictures/Screenshots/$(date +%Y-%m-%d-%H%M%S)_scrot.png ; notify-send 'Screen captured'") }, { ShiftMask, XK_Print, spawn, SHCMD("maim -s ~/Pictures/Screenshots/$(date +%Y-%m-%d-%H%M%S)_scrot.png -u ; notify-send 'Screen captured'") }, { MODKEY, XK_Print, spawn, SHCMD("maim | xclip -selection clipboard -t image/png ; notify-send 'Screen captured and copied to clipboard'") },