# HG changeset patch # User Anselm R.Garbe # Date 1155623111 -7200 # Node ID 093744cc5353707d4c94f9eea4def59f25480c42 # Parent 4aa632b6ba6649b372bcb9e273b9e324ed61816a applied jk_to_tab patch diff -r 4aa632b6ba66 -r 093744cc5353 config.default.h --- a/config.default.h Tue Aug 15 07:31:42 2006 +0200 +++ b/config.default.h Tue Aug 15 08:25:11 2006 +0200 @@ -18,34 +18,34 @@ #define KEYS \ static Key key[] = { \ /* modifier key function arguments */ \ + { MODKEY|ShiftMask, XK_Return, spawn, { .cmd = "exec xterm" } }, \ + { MODKEY, XK_Tab, focusnext, { 0 } }, \ + { MODKEY|ShiftMask, XK_Tab, focusprev, { 0 } }, \ + { MODKEY, XK_Return, zoom, { 0 } }, \ + { MODKEY, XK_m, togglemax, { 0 } }, \ + { MODKEY|ShiftMask, XK_0, tag, { .i = 0 } }, \ + { MODKEY|ShiftMask, XK_1, tag, { .i = 1 } }, \ + { MODKEY|ShiftMask, XK_2, tag, { .i = 2 } }, \ + { MODKEY|ShiftMask, XK_3, tag, { .i = 3 } }, \ + { MODKEY|ShiftMask, XK_4, tag, { .i = 4 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_0, toggletag, { .i = 0 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, { .i = 1 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, { .i = 2 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, { .i = 3 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_4, toggletag, { .i = 4 } }, \ + { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ + { MODKEY, XK_space, togglemode, { 0 } }, \ { MODKEY, XK_0, view, { .i = 0 } }, \ { MODKEY, XK_1, view, { .i = 1 } }, \ { MODKEY, XK_2, view, { .i = 2 } }, \ { MODKEY, XK_3, view, { .i = 3 } }, \ { MODKEY, XK_4, view, { .i = 4 } }, \ - { MODKEY, XK_j, focusnext, { 0 } }, \ - { MODKEY, XK_k, focusprev, { 0 } }, \ - { MODKEY, XK_m, togglemax, { 0 } }, \ - { MODKEY, XK_space, togglemode, { 0 } }, \ - { MODKEY, XK_Return, zoom, { 0 } }, \ { MODKEY|ControlMask, XK_0, toggleview, { .i = 0 } }, \ { MODKEY|ControlMask, XK_1, toggleview, { .i = 1 } }, \ { MODKEY|ControlMask, XK_2, toggleview, { .i = 2 } }, \ { MODKEY|ControlMask, XK_3, toggleview, { .i = 3 } }, \ { MODKEY|ControlMask, XK_4, toggleview, { .i = 4 } }, \ - { MODKEY|ShiftMask, XK_0, tag, { .i = 0 } }, \ - { MODKEY|ShiftMask, XK_1, tag, { .i = 1 } }, \ - { MODKEY|ShiftMask, XK_2, tag, { .i = 2 } }, \ - { MODKEY|ShiftMask, XK_3, tag, { .i = 3 } }, \ - { MODKEY|ShiftMask, XK_4, tag, { .i = 4 } }, \ - { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \ - { MODKEY|ShiftMask, XK_Return, spawn, { .cmd = "exec xterm" } }, \ - { MODKEY|ControlMask|ShiftMask, XK_0, toggletag, { .i = 0 } }, \ - { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, { .i = 1 } }, \ - { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, { .i = 2 } }, \ - { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, { .i = 3 } }, \ - { MODKEY|ControlMask|ShiftMask, XK_4, toggletag, { .i = 4 } }, \ }; #define RULES \ diff -r 4aa632b6ba66 -r 093744cc5353 dwm.1 --- a/dwm.1 Tue Aug 15 07:31:42 2006 +0200 +++ b/dwm.1 Tue Aug 15 08:25:11 2006 +0200 @@ -46,28 +46,46 @@ to/from the view. .SS Keyboard commands .TP +.B Mod1-Shift-Return +Start +.BR xterm (1). +.TP +.B Mod1-Tab +Focus next +.BR window . +.TP +.B Mod1-Shift-Tab +Focus previous +.BR window . +.TP .B Mod1-Return Zoom current .B window to the .B master -column. -.TP -.B Mod1-j -Focus next -.BR window . -.TP -.B Mod1-k -Focus previous -.BR window . +column +.RB ( tiling +mode only). .TP .B Mod1-m Maximize current .BR window . .TP -.B Mod1-[0..n] -View all windows with -.BR "tag n" . +.B Mod1-Shift-[0..n] +Apply +.B nth tag +to current +.BR window . +.TP +.B Mod1-Control-Shift-[0..n] +Add/remove +.B nth tag +to/from current +.BR window . +.TP +.B Mod1-Shift-c +Close focused +.B window. .TP .B Mod1-space Toggle between @@ -77,52 +95,42 @@ mode (affects .BR "all windows" ). .TP -.B Mod1-Shift-[0..n] -Apply -.B nth tag -to current -.BR window . -.TP -.B Mod1-Shift-c -Close focused -.B window. -.TP -.B Mod1-Shift-q -Quit -.B dwm. -.TP -.B Mod1-Shift-Return -Start -.BR terminal . +.B Mod1-[0..n] +View all windows with +.BR "tag n" . .TP .B Mod1-Control-[0..n] Add/remove all windows with .B tag n to/from the view. .TP -.B Mod1-Control-Shift-[0..n] -Add/remove -.B nth tag -to/from current -.BR window . +.B Mod1-Shift-q +Quit +.B dwm. .SS Mouse commands .TP .B Mod1-Button1 Move current .B window -while dragging. +while dragging +.RB ( floating +mode only). .TP .B Mod1-Button2 Zoom current .B window to the .B master -column. +column +.RB ( tiling +mode only). .TP .B Mod1-Button3 Resize current .B window -while dragging. +while dragging +.RB ( floating +mode only). .SH CUSTOMIZATION .B dwm is customized by creating a custom config.h and (re)compiling the source diff -r 4aa632b6ba66 -r 093744cc5353 main.c --- a/main.c Tue Aug 15 07:31:42 2006 +0200 +++ b/main.c Tue Aug 15 08:25:11 2006 +0200 @@ -291,9 +291,8 @@ strcpy(stext, "broken pipe"); drawstatus(); } - if(FD_ISSET(xfd, &rd)) - procevent(); } + procevent(); } cleanup(); XCloseDisplay(dpy);