public
Description: Personal dwm fork.
Homepage:
Clone URL: git://github.com/chneukirchen/dwm-chris2.git
name age message
file LICENSE Thu Jul 31 06:17:33 -0700 2008 Initial commit of dwm-5.1 [chneukirchen]
file Makefile Thu Jul 31 06:17:33 -0700 2008 Initial commit of dwm-5.1 [chneukirchen]
file README Thu Jul 31 06:17:33 -0700 2008 Initial commit of dwm-5.1 [chneukirchen]
file bstack.c Thu Jul 31 06:23:20 -0700 2008 Apply dwm-5.1-bstack.diff [chneukirchen]
file config.def.h Thu Jul 31 06:23:20 -0700 2008 Apply dwm-5.1-bstack.diff [chneukirchen]
file config.h Sat Aug 02 05:24:04 -0700 2008 Fix keyclash [chneukirchen]
file config.mk Thu Jul 31 06:23:51 -0700 2008 Adapt config.mk for NetBSD [chneukirchen]
file dwm-status Thu Jul 31 06:25:37 -0700 2008 Add status script [chneukirchen]
file dwm.1 Thu Jul 31 06:17:33 -0700 2008 Initial commit of dwm-5.1 [chneukirchen]
file dwm.c Sat Aug 02 05:23:36 -0700 2008 Apply dwm-5.1-pertag.diff [chneukirchen]
README
dwm - dynamic window manager
============================
dwm is an extremely fast, small, and dynamic window manager for X.


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


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

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

    make clean install

If you are going to use the default bluegray color scheme it is highly
recommended to also install the bluegray files shipped in the dextra package.


Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:

    exec dwm

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

    DISPLAY=foo.bar:1 exec dwm

(This will start dwm 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 | dwm


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