Без опису

Anas Elgarhy a52ab7d308 Add me o the license 😊 2 роки тому
.github cbcfedc39a fix Permission🤐 2 роки тому
keys 89071e4950 Add more keys 🥰🥰🥰 2 роки тому
layouts f8c84c4041 Applay the centeredmaster layout 🥰 2 роки тому
patches f8c84c4041 Applay the centeredmaster layout 🥰 2 роки тому
screenshots aaaaa81662 Add more screenshots 🥰 2 роки тому
.gitignore 5d1a1a5bd7 Add git ignore file 2 роки тому
CODE_OF_CONDUCT.md b99ec56e5d Create code of conduct 💚 2 роки тому
CONTRIBUTING.md 05708f36c5 Create contributing guide 💙 2 роки тому
LICENSE a52ab7d308 Add me o the license 😊 2 роки тому
Makefile e78b4a9207 Makefile: just show the compiler output 6 роки тому
README 3bd8466e93 update README: remove mentioning the old dextra repo 7 роки тому
README.md 89071e4950 Add more keys 🥰🥰🥰 2 роки тому
config.def.h cb06c11453 Update config.def file 😇🥰 2 роки тому
config.h c4e02d6d8e Move the keys definetions to a separate file ⌨️🥰 2 роки тому
config.mk 3ef48bcaca Up the version to 6.3-0.1.0 😃 2 роки тому
drw.c b9684430a1 Suport colred emoji 🥰🤭 2 роки тому
drw.h 3cb34830eb ColBorder has been moved to the enum with ColFg and ColBg. 7 роки тому
dwm.1 165a60c0fe Improve man page 2 роки тому
dwm.c 3ec665c593 Move the monocle layout function to a separate file 🥰🥰 2 роки тому
dwm.png 801d11c7e7 alternate dwm.png 18 роки тому
movestack.c aef49fcc62 Add mov stack patch 2 роки тому
transient.c 0de4197cc5 applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver 13 роки тому
util.c 24849acada die() on calloc failure 8 роки тому
util.h 7af4d439bd import new drw from libsl and minor fixes. 8 роки тому

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.