Find a file
2007-09-06 23:26:48 +02:00
layouts deprected nexttiled, add IS_TILED macro to check if a client is tiled to current tags 2007-09-06 20:02:30 +02:00
client.c Rework settrans 2007-09-06 22:45:05 +02:00
client.h Rework settrans 2007-09-06 22:45:05 +02:00
config.c add taglayouts in jdwmconf as tag_layouts 2007-09-06 21:53:45 +02:00
config.h add taglayouts in jdwmconf as tag_layouts 2007-09-06 21:53:45 +02:00
config.mk first import 2007-09-05 20:15:00 +02:00
draw.c remove textw function, change it with a macro 2007-09-06 22:09:00 +02:00
draw.h remove textw function, change it with a macro 2007-09-06 22:09:00 +02:00
event.c remove extern seltags, put it in jdwmconf 2007-09-06 19:05:26 +02:00
event.h first import 2007-09-05 20:15:00 +02:00
jdwm.1 first import 2007-09-05 20:15:00 +02:00
jdwm.c remove blank lines 2007-09-06 22:04:02 +02:00
jdwm.doxygen first import 2007-09-05 20:15:00 +02:00
jdwm.h remove bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +02:00
jdwmrc first import 2007-09-05 20:15:00 +02:00
layout.c remove nexttiled 2007-09-06 23:26:48 +02:00
layout.h remove nexttiled 2007-09-06 23:26:48 +02:00
LICENSE first import 2007-09-05 20:15:00 +02:00
Makefile remove doc on clean 2007-09-05 22:47:43 +02:00
README first import 2007-09-05 20:15:00 +02:00
tag.c add taglayouts in jdwmconf as tag_layouts 2007-09-06 21:53:45 +02:00
tag.h deprected nexttiled, add IS_TILED macro to check if a client is tiled to current tags 2007-09-06 20:02:30 +02:00
util.c first import 2007-09-05 20:15:00 +02:00
util.h first import 2007-09-05 20:15:00 +02:00

jdwm - Julien's dynamic window manager
============================
jdwm is an extremely fast, small, and dynamic window manager for X.
It's based on dwm.

Requirements
------------
In order to build jdwm you need the Xlib header files.

Installation
------------
Edit config.mk to match your local setup (jdwm is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install jdwm (if
necessary as root):

    make clean install

Running jdwm
-----------
Add the following line to your .xinitrc to start jdwm using startx
or to .xsession to start jdwm using gdm/kdm/xdm...:

    exec jdwm

In order to connect jdwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:

    DISPLAY=foo.bar:1 exec jdwm

(This will start jdwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something
like this in your .xinitrc:

    while true
    do
        echo `date` `uptime | sed 's/.*,//'`
        sleep 1
    done | jdwm


Configuration
-------------
The configuration of jdwm is done by creating a custom config.h
and (re)compiling the source code.