diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-03-14 14:35:45 +0000 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-03-14 14:35:45 +0000 |
commit | e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed (patch) | |
tree | da79e7fb7f8a05c3ec739aca9f62224d7adbbee7 /config.def.h | |
parent | dd9ee6d248397dcd3483131808e5c967bad3900f (diff) | |
download | dwm-e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed.tar dwm-e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed.tar.gz dwm-e237b2a76fb3dac1f43b91e5c7b6adb9ef04c9ed.tar.bz2 |
some changes towards 4.9
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index c1eedd4..4254c43 100644 --- a/config.def.h +++ b/config.def.h @@ -14,13 +14,16 @@ const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; Rule rules[] = { - /* class:instance:title substr tags ref isfloating */ - { "Firefox", tags[8], False }, - { "Gimp", NULL, True }, - { "MPlayer", NULL, True }, - { "Acroread", NULL, True }, + /* class instance title tags ref isfloating */ + { NULL, NULL, "Firefox", tags[8], False }, + { NULL, NULL, "Gimp", NULL, True }, + { NULL, NULL, "MPlayer", NULL, True }, + { NULL, NULL, "Acroread", NULL, True }, }; +/* geometry function */ +void (*setgeoms)(void) = setdefgeoms; + /* layout(s) */ #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ #define SNAP 32 /* snap pixel */ |