Skip to content

Commit

Permalink
fix previous fix
Browse files Browse the repository at this point in the history
  • Loading branch information
User committed Jul 19, 2021
1 parent 5882319 commit cbda263
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 } },
Expand Down Expand Up @@ -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'") },
Expand Down

0 comments on commit cbda263

Please sign in to comment.