This is a mirror of http://vitali64.duckdns.org/git/suckless/dwm.git . Issues are accepted.
Ferass 'Vitali64' EL HAFIDI 14f4e2ff45 ? What happened ? | 2 jaren geleden | |
---|---|---|
patches | 2 jaren geleden | |
pkg | 3 jaren geleden | |
.gitignore | 3 jaren geleden | |
LICENSE | 3 jaren geleden | |
Makefile | 3 jaren geleden | |
README.md | 2 jaren geleden | |
Screenshot.png | 2 jaren geleden | |
config.def.h | 2 jaren geleden | |
config.def.h.orig | 2 jaren geleden | |
config.def.h.rej | 2 jaren geleden | |
config.h | 2 jaren geleden | |
config.h.orig | 3 jaren geleden | |
config.h.rej | 3 jaren geleden | |
config.mk | 3 jaren geleden | |
config.mk.orig | 3 jaren geleden | |
drw.c | 2 jaren geleden | |
drw.c.orig | 2 jaren geleden | |
drw.h | 2 jaren geleden | |
dwm.1 | 3 jaren geleden | |
dwm.c | 2 jaren geleden | |
dwm.c.orig | 2 jaren geleden | |
dwm.c.rej | 2 jaren geleden | |
layoutmenu.sh | 3 jaren geleden | |
transient.c | 3 jaren geleden | |
util.c | 3 jaren geleden | |
util.h | 3 jaren geleden |
dwm is an extremely fast, small, and dynamic window manager for X.
dwmblocks and wallpaper AREN'T included
My build adds a lot of patches. The colors also adapt to the wallpaper if pywal is installed, otherwise, it will use the default (Mod+F5).
In order to build dwm you need the Xlib header files, GNU+Linux or BSD (FreeBSD, OpenBSD, ...) with Xorg installed. It doesn't and will not work on other systems such as macOS and Windows because this relies on libraries available exclusively on Linux.
This has been tested on Artix Linux but should work with any other distro such as Ubuntu Linux
Edit config.mk
to match your local setup (most of the time, the config.mk
provided here should work without any modifications).
Afterwards enter the following command to build (if necessary as root):
make
And if you want to install it on the system, run the following :
sudo make clean install
Add the following line to your .xinitrc to start dwm using startx:
exec <where the binary file is located>/dwm
In order to connect dwm to a specific display, make sure that the DISPLAY environment variable is set correctly, e.g.:
DISPLAY=foobar: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
You can also use dwmblocks for that.