diff options
| author | Anselm R Garbe <anselm@garbe.us> | 2010-05-28 11:42:49 +0100 |
|---|---|---|
| committer | Anselm R Garbe <anselm@garbe.us> | 2010-05-28 11:42:49 +0100 |
| commit | 8623bf5d196cb0bed4bdca025f23664b2bdcdd8b (patch) | |
| tree | eb87cfdd938e02ebb7d5c4c159f19c9a14a7b379 | |
| parent | 5bc288b2b1270957baab2142e1e8b20b796fed11 (diff) | |
prepared dmenu-4.1 release
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | Makefile | 6 | ||||
| -rw-r--r-- | config.def.h (renamed from config.h) | 0 | ||||
| -rw-r--r-- | dmenu.c | 8 |
4 files changed, 10 insertions, 6 deletions
| @@ -1,7 +1,7 @@ | |||
| 1 | MIT/X Consortium License | 1 | MIT/X Consortium License |
| 2 | 2 | ||
| 3 | © 2010 Connor Lane Smith <cls@lubutu.com> | 3 | © 2010 Connor Lane Smith <cls@lubutu.com> |
| 4 | © 2006-2009 Anselm R. Garbe <anselm@garbe.us> | 4 | © 2006-2010 Anselm R Garbe <anselm@garbe.us> |
| 5 | © 2009 Gottox <gottox@s01.de> | 5 | © 2009 Gottox <gottox@s01.de> |
| 6 | © 2009 Markus Schnalke <meillo@marmaro.de> | 6 | © 2009 Markus Schnalke <meillo@marmaro.de> |
| 7 | © 2009 Evan Gates <evan.gates@gmail.com> | 7 | © 2009 Evan Gates <evan.gates@gmail.com> |
| @@ -20,6 +20,10 @@ options: | |||
| 20 | 20 | ||
| 21 | ${OBJ}: config.h config.mk | 21 | ${OBJ}: config.h config.mk |
| 22 | 22 | ||
| 23 | config.h: | ||
| 24 | @echo creating $@ from config.def.h | ||
| 25 | @cp config.def.h $@ | ||
| 26 | |||
| 23 | dmenu: ${OBJ} | 27 | dmenu: ${OBJ} |
| 24 | @echo CC -o $@ | 28 | @echo CC -o $@ |
| 25 | @${CC} -o $@ ${OBJ} ${LDFLAGS} | 29 | @${CC} -o $@ ${OBJ} ${LDFLAGS} |
| @@ -31,7 +35,7 @@ clean: | |||
| 31 | dist: clean | 35 | dist: clean |
| 32 | @echo creating dist tarball | 36 | @echo creating dist tarball |
| 33 | @mkdir -p dmenu-${VERSION} | 37 | @mkdir -p dmenu-${VERSION} |
| 34 | @cp -R LICENSE Makefile README config.mk dmenu.1 config.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION} | 38 | @cp -R LICENSE Makefile README config.mk dmenu.1 config.def.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION} |
| 35 | @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION} | 39 | @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION} |
| 36 | @gzip dmenu-${VERSION}.tar | 40 | @gzip dmenu-${VERSION}.tar |
| 37 | @rm -rf dmenu-${VERSION} | 41 | @rm -rf dmenu-${VERSION} |
| @@ -42,8 +42,8 @@ typedef struct { | |||
| 42 | typedef struct Item Item; | 42 | typedef struct Item Item; |
| 43 | struct Item { | 43 | struct Item { |
| 44 | char *text; | 44 | char *text; |
| 45 | Item *next; /* traverses all items */ | 45 | Item *next; /* traverses all items */ |
| 46 | Item *left, *right; /* traverses items matching current search pattern */ | 46 | Item *left, *right; /* traverses items matching current search pattern */ |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | /* forward declarations */ | 49 | /* forward declarations */ |
| @@ -85,8 +85,8 @@ static unsigned int numlockmask = 0; | |||
| 85 | static Bool running = True; | 85 | static Bool running = True; |
| 86 | static Display *dpy; | 86 | static Display *dpy; |
| 87 | static DC dc; | 87 | static DC dc; |
| 88 | static Item *allitems = NULL; /* first of all items */ | 88 | static Item *allitems = NULL; /* first of all items */ |
| 89 | static Item *item = NULL; /* first of pattern matching items */ | 89 | static Item *item = NULL; /* first of pattern matching items */ |
| 90 | static Item *sel = NULL; | 90 | static Item *sel = NULL; |
| 91 | static Item *next = NULL; | 91 | static Item *next = NULL; |
| 92 | static Item *prev = NULL; | 92 | static Item *prev = NULL; |
