Find a file
Julien Danjou 604ab3e702 cosmetic
2007-09-10 12:02:45 +02:00
layouts add resize_hints config 2007-09-10 12:01:36 +02:00
client.c remove sx and sy since they are always 0, LOL 2007-09-07 17:36:21 +02:00
client.h remove global selscreen variable and remove unused vars from setup() 2007-09-07 12:53:30 +02:00
config.c cosmetic 2007-09-10 12:02:45 +02:00
config.h add resize_hints config 2007-09-10 12:01:36 +02:00
config.mk first import 2007-09-05 20:15:00 +02:00
draw.c move barwin to Statusbar 2007-09-07 17:29:36 +02:00
draw.h remove textw function, change it with a macro 2007-09-06 22:09:00 +02:00
event.c move barwin to Statusbar 2007-09-07 17:29:36 +02:00
event.h set *handler as local to main, not global/extern, and set handler functions no-static 2007-09-07 12:29:54 +02:00
jdwm.1 first import 2007-09-05 20:15:00 +02:00
jdwm.c remove sx and sy since they are always 0, LOL 2007-09-07 17:36:21 +02:00
jdwm.doxygen first import 2007-09-05 20:15:00 +02:00
jdwm.h move bpos to Statusbar struct and change name of default_statubar_position in jdwmconf 2007-09-07 16:35:46 +02:00
jdwmrc add resize_hints config 2007-09-10 12:01:36 +02:00
layout.c move barwin to Statusbar 2007-09-07 17:29:36 +02:00
layout.h remove jdwmprops as global var, replaced by a macro 2007-09-07 16:46:46 +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 add libconfig requirement 2007-09-07 17:58:58 +02:00
tag.c remove useless string.h inclusion 2007-09-07 11:48:30 +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 and libconfig.

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.