suckless dwm

locoeng 478b4205d8 update 1 miesiąc temu
LICENSE 55942c69ac initial commit 2 miesięcy temu
Makefile 55942c69ac initial commit 2 miesięcy temu
README 55942c69ac initial commit 2 miesięcy temu
README.md 4ae51f63ea inital commit 2 miesięcy temu
config.def.h 478b4205d8 update 1 miesiąc temu
config.h 478b4205d8 update 1 miesiąc temu
config.mk 55942c69ac initial commit 2 miesięcy temu
drw.c 55942c69ac initial commit 2 miesięcy temu
drw.h 55942c69ac initial commit 2 miesięcy temu
drw.o 55942c69ac initial commit 2 miesięcy temu
dwm 478b4205d8 update 1 miesiąc temu
dwm-autostart-20210120-cb3f58a.diff 0eaf520ff0 update 2 miesięcy temu
dwm.1 55942c69ac initial commit 2 miesięcy temu
dwm.c 55942c69ac initial commit 2 miesięcy temu
dwm.c.orig 55942c69ac initial commit 2 miesięcy temu
dwm.o 478b4205d8 update 1 miesiąc temu
dwm.png 55942c69ac initial commit 2 miesięcy temu
re-make.sh b472477257 update 2 miesięcy temu
transient.c 55942c69ac initial commit 2 miesięcy temu
util.c 55942c69ac initial commit 2 miesięcy temu
util.h 55942c69ac initial commit 2 miesięcy temu
util.o 55942c69ac initial commit 2 miesięcy temu

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.