dotfiles/stuff/manual-programs/suckless/dwm
iceyrazor 34ed301bed typical update of files 2025-02-11 15:48:30 -06:00
..
dwmstatus reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
LICENSE reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
Makefile reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
README reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
awesome-glyphs.txt reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
config.def.h.orig reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
config.h reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
config.mk reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
drw.c reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
drw.h reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
drw.o reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm typical update of files 2025-02-11 15:48:30 -06:00
dwm-autostart-20161205-bb3bd6f.diff reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm-bottomstack-6.1.diff reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm-fullgaps-6.2.diff reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm-systray-6.2.diff reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm.1 reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm.c reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm.c.orig typical update of files 2025-02-11 15:48:30 -06:00
dwm.o reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
dwm.png reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
endx reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
shiftview.c reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
transient.c reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
util.c reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
util.h reinit 3. git reset --hard was not right. thanks ai 2024-11-24 04:50:59 -06:00
util.o typical update of files 2025-02-11 15:48:30 -06:00

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


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 xsetroot -name "`date` `uptime | sed 's/.*,//'`"
    do
    	sleep 1
    done &
    exec dwm


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