dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 9556ba76cee2a405c1129eee637741bb2a3a22ff
parent 383e88784662db8590af71a6ad2eb7ff033de4a3
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Thu, 16 Jun 2016 17:03:07 -0700

Config.h: Fix tabbed key mappings

Diffstat:
config.h/tabbed.config.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.h/tabbed.config.h b/config.h/tabbed.config.h @@ -57,10 +57,10 @@ static Key keys[] = { { MODKEY, XK_9, move, { .i = 8 } }, { MODKEY, XK_0, move, { .i = 9 } }, - { MODKEY, XK_q, killclient, { 0 } }, + { MODKEY|ShiftMask, XK_q, killclient, { 0 } }, - { MODKEY, XK_u, focusurgent, { 0 } }, - { MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } }, + { MODKEY|ShiftMask, XK_u, focusurgent, { 0 } }, + { MODKEY|Mod1Mask, XK_u, toggle, { .v = (void*) &urgentswitch } }, { 0, XK_F11, fullscreen, { 0 } }, };