The dwm window manager with some custom modifications
git clone https://git.8pit.net/dwm.git
1dwm - dynamic window manager 2============================ 3dwm is an extremely fast, small, and dynamic window manager for X. 4 5 6Requirements 7------------ 8In order to build dwm you need the Xlib header files. 91011Installation12------------13Edit config.mk to match your local setup (dwm is installed into14the /usr/local namespace by default).1516Afterwards enter the following command to build and install dwm (if17necessary as root):1819 make clean install202122Running dwm23-----------24Add the following line to your .xinitrc to start dwm using startx:2526 exec dwm2728In order to connect dwm to a specific display, make sure that29the DISPLAY environment variable is set correctly, e.g.:3031 DISPLAY=foo.bar:1 exec dwm3233(This will start dwm on display :1 of the host foo.bar.)3435In order to display status info in the bar, you can do something36like this in your .xinitrc:3738 while xsetroot -name "`date` `uptime | sed 's/.*,//'`"39 do40 sleep 141 done &42 exec dwm434445Configuration46-------------47The configuration of dwm is done by creating a custom config.h48and (re)compiling the source code.