Sen descrición

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

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.