My dwm-flexipatch repo

loliconshik3 57305b32c8 Update config 2 년 전
.github 3bf6eeca75 Create FUNDING.yml 4 년 전
patch e206d65f1e Add swallow/window icon compatibility (#336) 2 년 전
.gitignore a6b2e8423a Some config updates 2 년 전
LICENSE f2b37c411c LICENSE: add Chris Down 3 년 전
Makefile 2a8e68c5df Correcting path to /usr/local/share/xsessions/ ref. #317 2 년 전
README c34c536f3e Adding alpha patch 6 년 전
README.md 91551329e9 Bump to 712d663. 2 년 전
config.def.h f713ddee39 cyclelayouts: reimplementing patch to not require the NULL layout, addresses #331 2 년 전
config.h 57305b32c8 Update config 2 년 전
config.mk c613917d6b config.mk - passing __XSI_VISIBLE=1 via CPPFLAGS as needed for compilation on BSD systems ref. #340 2 년 전
drw.c 4912e3129a Bump to 50ad171. 2 년 전
drw.h adc05c2332 Upgrading winicon patch to v2.1 ref. #238 3 년 전
dwm.1 474c91ea0c dwm.1: fix wrong text in man page (aaad5f) 5 년 전
dwm.c 91551329e9 Bump to 712d663. 2 년 전
dwm.desktop 1ac17a4937 Add dwm.desktop file (#301) 2 년 전
dwm.png c34c536f3e Adding alpha patch 6 년 전
patches.def.h fcbe686ff2 pertag vanitygaps patch - adjust description ref. #342 2 년 전
patches.h a6b2e8423a Some config updates 2 년 전
transient.c 0733c39e0c sed source files to end with 1 new line 4 년 전
util.c 91cb32c3ed Bump to e0dee91. 3 년 전
util.h 0733c39e0c sed source files to end with 1 new line 4 년 전

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.