Find a file
2007-09-06 18:43:49 +02:00
layouts remove bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +02:00
client.c first import 2007-09-05 20:15:00 +02:00
client.h first import 2007-09-05 20:15:00 +02:00
config.c remove bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +02:00
config.h remove bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +02:00
config.mk first import 2007-09-05 20:15:00 +02:00
draw.c documentation 2007-09-06 18:43:49 +02:00
draw.h first import 2007-09-05 20:15:00 +02:00
event.c rename handler functions 2007-09-05 22:46:18 +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 bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +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 bpos from global var, added in jdwmconf 2007-09-05 20:39:11 +02:00
layout.h first import 2007-09-05 20:15:00 +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 first import 2007-09-05 20:15:00 +02:00
tag.h first import 2007-09-05 20:15:00 +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.