Archived
1
0
Fork
You've already forked dwm
0
dynamic window manager
This repository has been archived on 2025年06月27日. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • C 92%
  • Roff 4.9%
  • Makefile 1.9%
  • Nix 1.2%
Find a file
2025年03月15日 09:42:21 +01:00
.astylerc Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
.dir-locals.el Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
.envrc Initial commit. 2024年08月07日 23:25:53 +02:00
.gitignore Initial commit. 2024年08月07日 23:25:53 +02:00
config.h Replaced firefox with librewolf. 2025年03月02日 17:50:43 +01:00
config.mk bump version to 6.5 2024年03月19日 12:13:16 +01:00
drw.c Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
drw.h Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
dwm.1 Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
dwm.c Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
dwm.png alternate dwm.png 2006年07月19日 14:49:19 +02:00
flake.lock Update codeberg username in url. 2025年03月15日 09:42:21 +01:00
flake.nix Update codeberg username in url. 2025年03月15日 09:42:21 +01:00
LICENSE LICENSE: add Chris Down 2022年04月26日 15:50:32 +02:00
Makefile Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
README Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
transient.c Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
util.c Added astyle for suckless formatting. 2024年12月27日 18:35:11 +01:00
util.h import new drw from libsl and minor fixes. 2016年06月26日 13:52: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.