My dwm build
Go to file
2024-01-18 18:59:11 +01:00
libs various shit 2024-01-18 18:59:11 +01:00
modules Update, some minor changes 2023-09-13 15:24:02 +02:00
.gitignore Add swapmon patch, remove dwm, change font to monospace 8 2023-09-25 17:16:33 +02:00
config.h various shit 2024-01-18 18:59:11 +01:00
config.mk Use flexipatch instead 2023-09-13 10:57:58 +02:00
drw.c Use flexipatch instead 2023-09-13 10:57:58 +02:00
drw.h Use flexipatch instead 2023-09-13 10:57:58 +02:00
dwm.1 Use flexipatch instead 2023-09-13 10:57:58 +02:00
dwm.c Some changes 2023-12-04 17:59:08 +01:00
dwm.desktop Add dwm_init 2023-09-13 15:27:11 +02:00
dwm.png Initial commit 2023-07-02 01:39:07 +02:00
dwm_init various shit 2024-01-18 18:59:11 +01:00
file Update, some minor changes 2023-09-13 15:24:02 +02:00
LICENSE Use flexipatch instead 2023-09-13 10:57:58 +02:00
Makefile Use flexipatch instead 2023-09-13 10:57:58 +02:00
meson.build various shit 2024-01-18 18:59:11 +01:00
meson_options.txt Add meson 2023-07-06 19:10:41 +02:00
README Initial commit 2023-07-02 01:39:07 +02:00
status.c Update, some minor changes 2023-09-13 15:24:02 +02:00
status.h Update, some minor changes 2023-09-13 15:24:02 +02:00
transient.c Use flexipatch instead 2023-09-13 10:57:58 +02:00
util.c Initial commit 2023-07-02 01:39:07 +02:00
util.h Use flexipatch instead 2023-09-13 10:57:58 +02: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.