This is a mirror of http://vitali64.duckdns.org/git/suckless/dwm.git . Issues are accepted.

Ferass 'Vitali64' EL HAFIDI 14f4e2ff45 ? What happened ? преди 2 години
patches db839b82ef pywal improvements преди 2 години
pkg b856f6a1ac move away from GitLab and GitHub преди 3 години
.gitignore b856f6a1ac move away from GitLab and GitHub преди 3 години
LICENSE b856f6a1ac move away from GitLab and GitHub преди 3 години
Makefile b856f6a1ac move away from GitLab and GitHub преди 3 години
README.md bf7a385534 README imporvements+new screenshot+other things преди 2 години
Screenshot.png bf7a385534 README imporvements+new screenshot+other things преди 2 години
config.def.h 5d9ba618ac Pywal support! преди 2 години
config.def.h.orig 14f4e2ff45 ? What happened ? преди 2 години
config.def.h.rej 5d9ba618ac Pywal support! преди 2 години
config.h 687f71aa77 Move the bar to the top преди 2 години
config.h.orig b856f6a1ac move away from GitLab and GitHub преди 3 години
config.h.rej b856f6a1ac move away from GitLab and GitHub преди 3 години
config.mk b856f6a1ac move away from GitLab and GitHub преди 3 години
config.mk.orig b856f6a1ac move away from GitLab and GitHub преди 3 години
drw.c 5d9ba618ac Pywal support! преди 2 години
drw.c.orig 5d9ba618ac Pywal support! преди 2 години
drw.h 5d9ba618ac Pywal support! преди 2 години
dwm.1 b856f6a1ac move away from GitLab and GitHub преди 3 години
dwm.c db839b82ef pywal improvements преди 2 години
dwm.c.orig 14f4e2ff45 ? What happened ? преди 2 години
dwm.c.rej 5d9ba618ac Pywal support! преди 2 години
layoutmenu.sh b856f6a1ac move away from GitLab and GitHub преди 3 години
transient.c b856f6a1ac move away from GitLab and GitHub преди 3 години
util.c b856f6a1ac move away from GitLab and GitHub преди 3 години
util.h b856f6a1ac move away from GitLab and GitHub преди 3 години

README.md

v64-dwm - Vitali64's dynamic window manager build

dwm is an extremely fast, small, and dynamic window manager for X.

dwmblocks and wallpaper AREN'T included

My build

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).

Requirements

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

Installation

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

Running dwm

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.