tadded dmenu run - dmenu - Dmenu fork with xft fonts.
 (HTM) git clone git://r-36.net/dmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit d8688f7a4fe734b827cac3c156cae0db5aa4d740
 (DIR) parent 09d0926bb96989304646c4b4e0c51031a85dc2a2
 (HTM) Author: anselm@anselm1 <unknown>
       Date:   Sat, 22 Dec 2007 12:20:20 +0000
       
       added dmenu run
       Diffstat:
         Makefile                            |       6 ++++--
         config.mk                           |       2 +-
         dmenu_run                           |       2 ++
       
       3 files changed, 7 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -31,7 +31,7 @@ clean:
        dist: clean
                @echo creating dist tarball
                @mkdir -p dmenu-${VERSION}
       -        @cp -R LICENSE Makefile README config.mk dmenu.1 config.h dmenu_path ${SRC} dmenu-${VERSION}
       +        @cp -R LICENSE Makefile README config.mk dmenu.1 config.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION}
                @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
                @gzip dmenu-${VERSION}.tar
                @rm -rf dmenu-${VERSION}
       t@@ -39,9 +39,10 @@ dist: clean
        install: all
                @echo installing executable file to ${DESTDIR}${PREFIX}/bin
                @mkdir -p ${DESTDIR}${PREFIX}/bin
       -        @cp -f dmenu dmenu_path ${DESTDIR}${PREFIX}/bin
       +        @cp -f dmenu dmenu_path dmenu_run ${DESTDIR}${PREFIX}/bin
                @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
                @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_path
       +        @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_run
                @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
                @mkdir -p ${DESTDIR}${MANPREFIX}/man1
                @sed "s/VERSION/${VERSION}/g" < dmenu.1 > ${DESTDIR}${MANPREFIX}/man1/dmenu.1
       t@@ -50,6 +51,7 @@ install: all
        uninstall:
                @echo removing executable file from ${DESTDIR}${PREFIX}/bin
                @rm -f ${DESTDIR}${PREFIX}/bin/dmenu ${DESTDIR}${PREFIX}/bin/dmenu_path
       +        @rm -f ${DESTDIR}${PREFIX}/bin/dmenu ${DESTDIR}${PREFIX}/bin/dmenu_run
                @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
                @rm -f ${DESTDIR}${MANPREFIX}/man1/dmenu.1
        
 (DIR) diff --git a/config.mk b/config.mk
       t@@ -1,5 +1,5 @@
        # dmenu version
       -VERSION = 3.4
       +VERSION = 3.5
        
        # Customize below to fit your system
        
 (DIR) diff --git a/dmenu_run b/dmenu_run
       t@@ -0,0 +1,2 @@
       +#!/bin/sh
       +exe=`dmenu_path | dmenu $*` && exec $exe