1
0
Fork
You've already forked dwm
0
ciinamon's build of dwm
  • C 92.6%
  • Roff 5.4%
  • Makefile 2%
2026年03月29日 22:54:38 +05:30
.gitignore meow mrrp nyaa~ 2025年12月19日 23:27:32 +05:30
config.def.h add systray patch 2026年03月29日 22:54:38 +05:30
config.mk bump version to 6.6 2025年08月09日 14:34:03 +02:00
drw.c fix for issue causing transparent window borders 2026年03月22日 18:24:18 +05:30
drw.h cleanup schemes and colors 2025年09月27日 12:10:17 +02:00
dwm.1 add actualfullscreen patch and change colors 2026年01月10日 20:56:41 +05:30
dwm.c add systray patch 2026年03月29日 22:54:38 +05:30
dwm.png
LICENSE LICENSE: add Chris Down 2022年04月26日 15:50:32 +02:00
Makefile Makefile: remove the options target 2023年09月22日 15:13:29 +02:00
movestack.c meow mrrp nyaa~ 2025年12月19日 23:27:32 +05:30
README update readme 2026年03月29日 22:53:36 +05:30
transient.c applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver 2011年07月29日 20:01:22 +02:00
util.c util.c: output function might override errno and thus affect perror() 2024年10月27日 20:10:07 +01:00
util.h sync drw.{c,h} from dmenu 2024年10月05日 13:06:08 +02:00

dwm - dynamic window manager
============================
dwm is an extremely fast, small, and dynamic window manager for X.
Patches
-------
actualfullscreen - https://dwm.suckless.org/patches/actualfullscreen
fullgaps - https://dwm.suckless.org/patches/fullgaps
movestack - https://dwm.suckless.org/patches/movestack
systray - https://dwm.suckless.org/patches/systray
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.