acosail_dwm/dwm-6.4
2022-12-08 15:48:56 +08:00
..
config.def.h 1 支持参数运行dwm 2022-12-08 15:43:18 +08:00
config.def.h.orig init 2022-12-02 16:22:44 +08:00
config.def.h.rej init 2022-12-02 16:22:44 +08:00
config.h 1 支持参数运行dwm 2022-12-08 15:43:18 +08:00
config.mk init 2022-12-02 16:22:44 +08:00
config.mk.orig init 2022-12-02 16:22:44 +08:00
config.mk.rej init 2022-12-02 16:22:44 +08:00
drw.c init 2022-12-02 16:22:44 +08:00
drw.c.orig init 2022-12-02 16:22:44 +08:00
drw.c.rej init 2022-12-02 16:22:44 +08:00
drw.h init 2022-12-02 16:22:44 +08:00
drw.h.orig init 2022-12-02 16:22:44 +08:00
drw.h.rej init 2022-12-02 16:22:44 +08:00
dwm-alpha-6.1.diff init 2022-12-02 16:22:44 +08:00
dwm-alpha-20201019-61bb8b2.diff init 2022-12-02 16:22:44 +08:00
dwm-anybar-polybar-tray-fix-20200810-bb2e722.diff init 2022-12-02 16:22:44 +08:00
dwm-autostart-20210120-cb3f58a.diff init 2022-12-02 16:22:44 +08:00
dwm-fixborders-6.2.diff init 2022-12-02 16:22:44 +08:00
dwm-ipc-20201106-f04cac6.diff init 2022-12-02 16:22:44 +08:00
dwm-msg.c init 2022-12-02 16:22:44 +08:00
dwm-xfce4-panel-20220306-d39e2f3.diff init 2022-12-02 16:22:44 +08:00
dwm.1 init 2022-12-02 16:22:44 +08:00
dwm.c 去掉 ewmh的强依赖 2022-12-08 15:48:56 +08:00
dwm.c.orig init 2022-12-02 16:22:44 +08:00
dwm.c.rej init 2022-12-02 16:22:44 +08:00
dwm.png init 2022-12-02 16:22:44 +08:00
ipc.c init 2022-12-02 16:22:44 +08:00
ipc.h init 2022-12-02 16:22:44 +08:00
IPCClient.c init 2022-12-02 16:22:44 +08:00
IPCClient.h init 2022-12-02 16:22:44 +08:00
LICENSE init 2022-12-02 16:22:44 +08:00
Makefile add clean for dwm-msg.o 2022-12-06 10:31:10 +08:00
README init 2022-12-02 16:22:44 +08:00
transient.c init 2022-12-02 16:22:44 +08:00
util.c init 2022-12-02 16:22:44 +08:00
util.c.orig init 2022-12-02 16:22:44 +08:00
util.h init 2022-12-02 16:22:44 +08:00
yajl_dumps.c init 2022-12-02 16:22:44 +08:00
yajl_dumps.h init 2022-12-02 16:22:44 +08: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.