aewl

diff config.h @ 766:3f7c68a720b5

undone naming change: "group" is "tag" again (but without plural)
author meillo@marmaro.de
date Fri, 05 Dec 2008 19:43:56 +0100
parents f1d4bc4afcd9
children 706991d15451
line diff
     1.1 --- a/config.h	Fri Dec 05 19:13:24 2008 +0100
     1.2 +++ b/config.h	Fri Dec 05 19:43:56 2008 +0100
     1.3 @@ -3,8 +3,8 @@
     1.4   * See LICENSE file for license details.
     1.5   */
     1.6  
     1.7 -#define NAMESEL "Das Alles"
     1.8 -#define NAMENSEL "Das Nichts"
     1.9 +#define NAMETAGGED "Das Alles"
    1.10 +#define NAMEUNTAGGED "Das Nichts"
    1.11  
    1.12  #define BORDERPX		1
    1.13  #define DEFMODE			domax		/* dotile */
    1.14 @@ -36,17 +36,17 @@
    1.15  	{ MODKEY|ShiftMask,		XK_space,	togglefloat,	"" }, \
    1.16  	{ MODKEY,			XK_plus,		incnmaster,	"" }, \
    1.17  	{ MODKEY,			XK_minus,		decnmaster,	"" }, \
    1.18 -	{ MODKEY,		XK_F3,		togglegroup,		"" }, \
    1.19 +	{ MODKEY,		XK_F3,		toggletag,		"" }, \
    1.20  };
    1.21  
    1.22  /* Query class:instance:title for regex matching info with following command:
    1.23   * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
    1.24  #define RULES \
    1.25  static Rule rule[] = { \
    1.26 -	/* class:instance:title regex, group (0=first/1=second/-1=curr), isfloat */ \
    1.27 -	{ "URxvt.*",	  	  	1,	    	False }, \
    1.28 +	/* class:instance:title regex, tag (1=tag/0=untag/-1=curr), isfloat */ \
    1.29 +	{ "URxvt.*",	  	  	0,	    	False }, \
    1.30  	{ "MPlayer.*",		  	-1,	    	True }, \
    1.31  	{ "qiv.*",		  	    -1,	    	False }, \
    1.32 -	{ "Gimp.*",	      		0,		True }, \
    1.33 -	{ ".*",		          	0,	    	False }, \
    1.34 +	{ "Gimp.*",	      		1,		True }, \
    1.35 +	{ ".*",		          	1,	    	False }, \
    1.36  };