all repos — dwm @ 7b5638f61d5c8b5a76bc3f7a5962cb7490da3b6b

fork of suckless dynamic window manager

README (view raw)

 1dwm - dynamic window manager
 2----------------------------
 3dwm is an extremely fast, small, and dynamic X11 window manager.
 4
 5
 6Requirements
 7------------
 8In order to build dwm you need the Xlib header files.
 9
10
11Installation
12------------
13Edit config.mk to match your local setup (dwm is installed into
14the /usr/local namespace by default).
15
16Afterwards enter the following command to build and install dwm (if
17necessary as root):
18
19    make clean install
20
21
22Running dwm
23-----------
24Add the following line to your .xinitrc to start dwm using startx:
25
26    exec dwm
27
28In order to connect dwm to a specific display, make sure that
29the DISPLAY environment variable is set correctly, e.g.:
30
31    DISPLAY=foo.bar:1 exec dwm
32
33This will start dwm on display :1 of the host foo.bar.
34
35
36Displaying status info
37----------------------
38In order to display status info in the bar, you can do something
39like this in your .xinitrc:
40
41    while true
42    do
43        echo `date` `uptime | sed 's/.*://; s/,//g'`
44        sleep 1
45    done | dwm
46
47
48Configuration
49-------------
50The configuration of dwm is done by customizing its source code
51(grep for the CUSTOMIZE keyword).