Personal fork of dwm, the Suckless window manager
Go to file
2023-05-01 23:35:49 -07:00
patches Various changes 2023-05-01 23:35:49 -07:00
.gitignore Initial commit 2022-08-28 02:59:08 -07:00
config.def.h Various changes 2023-05-01 23:35:49 -07:00
config.def.mk Remove script dir from config.def.mk 2023-03-06 20:09:21 -08:00
drw.c Various changes 2023-05-01 23:35:49 -07:00
drw.h Update to dwm 6.4 2023-02-21 09:49:45 -08:00
dwm.1 Initial commit 2022-08-28 02:59:08 -07:00
dwm.c Add preserveonrestart path 2023-05-01 23:01:37 -07:00
dwm.png Initial commit 2022-08-28 02:59:08 -07:00
LICENSE Update to dwm 6.4 2023-02-21 09:49:45 -08:00
Makefile Auto-copy config.def.mk 2022-12-14 14:13:03 -08:00
README Initial commit 2022-08-28 02:59:08 -07:00
transient.c Initial commit 2022-08-28 02:59:08 -07:00
util.c Update to dwm 6.4 2023-02-21 09:49:45 -08:00
util.h Initial commit 2022-08-28 02:59:08 -07:00

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.