Go to file
Out Of Ideas 5da11ea582 Change keybind 2023-10-23 14:18:18 -05:00
Patches Change boarder color of focused clients 2023-10-22 21:26:40 -05:00
.gitignore remove generated files 2023-10-15 20:24:03 -05:00
Backup Initial commit 2023-10-15 14:50:32 -05:00
LICENSE Initial commit 2023-10-15 14:50:32 -05:00
Makefile Initial commit 2023-10-15 14:50:32 -05:00
README Add to README 2023-10-22 21:29:56 -05:00
config.def.h to 2023-10-22 21:35:50 -05:00
config.def.h.rej scratchpads 2023-10-21 20:27:28 -05:00
config.h Change keybind 2023-10-23 14:18:18 -05:00
config.mk Initial commit 2023-10-15 14:50:32 -05:00
config_openbsd.mk Initial commit 2023-10-15 14:50:32 -05:00
drw.c Initial commit 2023-10-15 14:50:32 -05:00
drw.h Initial commit 2023-10-15 14:50:32 -05:00
dwm.1 Initial commit 2023-10-15 14:50:32 -05:00
dwm.c Remove extra space 2023-10-23 12:30:47 -05:00
dwm.c.rej Accessnthmonitor 2023-10-22 16:13:57 -05:00
dwm.png Initial commit 2023-10-15 14:50:32 -05:00
flextile-deluxe.c Flextile Delux Full patch added. Vanity gaps removed. 2023-10-20 11:27:51 -05:00
flextile-deluxe.h Flextile Delux Full patch added. Vanity gaps removed. 2023-10-20 11:27:51 -05:00
tags scratchpads 2023-10-21 20:27:28 -05:00
transient.c Initial commit 2023-10-15 14:50:32 -05:00
util.c Initial commit 2023-10-15 14:50:32 -05:00
util.h Initial commit 2023-10-15 14:50:32 -05:00
vanitygaps.c Vanity gaps 2023-10-21 12:51:02 -05:00

README

Changes
=======
So far I have added some patches and made some changes to the config.h.

Patches
-------
Flextile Delux
Vanity Gaps
Resize Points
Hide Vacant Tags
Float Rules
Scratchpads
Access nth Monitor
Toggle Layout

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.