wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 665671e7e0066816a528dcfea9b9a7746cb1c254
parent 67cac9a10e4640288a3b18f86f6b424f007f9f06
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Sun,  5 Mar 2006 02:02:58 +0100

added tag and name fields to Tag and Client


Diffstat:
cmd/wm/wm.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/cmd/wm/wm.h b/cmd/wm/wm.h @@ -83,6 +83,7 @@ struct Area { }; struct Tag { + char name[256]; unsigned short id; Area **area; unsigned int areasz; @@ -99,6 +100,7 @@ struct Frame { struct Client { char name[256]; + char tags[256]; int proto; unsigned int border; Bool destroyed;