1
0
Fork
You've already forked dwm
0
Personal fork of the dwm window manager (with some patches). Refer to https://dwm.suckless.org/ for more information.
  • C 92.3%
  • Roff 5.4%
  • Makefile 2.3%
Armin 725cdd7145 Revert "add systray patch"
Check "systray" branch instead.
This reverts commit c5529b5e7a.
2023年10月01日 16:46:09 +02:00
patches config cleanup; move patch files to patches/ 2023年09月22日 17:17:55 +02:00
.gitignore new patch set state 2023年09月18日 22:37:57 +02:00
config.def.h Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
config.def.h.orig Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
config.h Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
config.mk new patch set state 2023年09月18日 22:37:57 +02:00
config.mk.orig new patch set state 2023年09月18日 22:37:57 +02:00
drw.c new patch set state 2023年09月18日 22:37:57 +02:00
drw.h new patch set state 2023年09月18日 22:37:57 +02:00
drw.o new patch set state 2023年09月18日 22:37:57 +02:00
dwm.1 add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
dwm.c Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
dwm.c.orig Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
dwm.c.rej Revert "add systray patch" 2023年10月01日 16:46:09 +02:00
dwm.png add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
LICENSE add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
Makefile add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
movestack.c commit new working state 2023年09月18日 21:36:36 +02:00
nextprevtag.c apply nextprevtag, add focusonclick 2023年09月18日 23:50:33 +02:00
README add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
selfrestart.c apply restart patch 2023年09月18日 22:58:23 +02:00
systray.patch new patch set state 2023年09月18日 22:37:57 +02:00
transient.c add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
util.c add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
util.h add 6.4 upstream release 2023年09月18日 18:11:03 +02:00
util.o commit new working state 2023年09月18日 21:36:36 +02: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.