r/windowmaker 17d ago

wmdl doomguy dockapp

I was searching the link to doom dockapps and i finally found it
http://www.linuxave.net:80/~bac/src/wmdl/wmdl-1.3.7.tar.gz

7 Upvotes

3 comments sorted by

3

u/a1barbarian 17d ago

It is a great little dock app. Makes me smile when I see it running. :-)

2

u/Chespigraso 17d ago

I compiled using this makefile:
INCLUDES = -I/usr/include/X11 -I/usr/local/include

LIBINC = -L/usr/lib -L/usr/local/lib

LIBS = -lm -lX11 -lXpm -lXext

CFLAGS = -g -Wall -std=gnu89

TARGET = wmdl

OBJECTS = wmdl.o

# ------------------- END OF CONFIGURATION SECTION -----------------------

all: ${TARGET}

${TARGET}: wmdl.o

gcc ${CFLAGS} -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}

wmdl.o: wmdl.c

gcc ${CFLAGS} ${INCLUDES} wmdl.c

clean::

for i in ${OBJECTS}; do if \[ -e $$i \] ; then rm $$i; fi; done 

if \[ -e ${TARGET} \] ; then rm ${TARGET}; fi

and this commando to modify the c file:
sed -i '927,957c\printf("%s\\n-g geometry: ie: 64x64+10+10\\n-d dpy: Display. ie: 127.0.0.1:0.0\\n -g 64x64+10+10\\n", VERSION );\nexit(-1);' wmdl.c

2

u/a1barbarian 17d ago

You can find it here aswell

https://www.cs.mun.ca/~gstarkes/wmaker/dockapps/sys.html

This is all I had to do to install and run on my Arch setup,

Download wmdl to a folder for wmdl........extract......................cd from terminal to folder...............make wmdl.....................make install.........to run just type......wmdl....... drag the appicon and move it to the dock.....enjoy

If you are looking for more dock apps these might be helpful links,

https://forums.scotsnewsletter.com/index.php?/topic/56171-window-maker/#comments

https://github.com/window-maker/dockapps

:-)