My fork of DWM from Suckless. https://dwm.suckless.org/
Go to file
Dan Anglin d7583b81f0
fix: bar height patch and customisations
- Apply the bar height patch
- Update font
- Change the tag icons
- Change the master area size factor from 0.55 to 0.50
2022-05-25 04:13:38 +01:00
patches fix: bar height patch and customisations 2022-05-25 04:13:38 +01:00
.gitignore feat: add dwm 2022-03-25 20:52:29 +00:00
config.def.h fix: upgrade dwm to v6.3 and config refresh 2022-05-22 05:01:44 +01:00
config.h fix: bar height patch and customisations 2022-05-25 04:13:38 +01:00
config.mk fix: bar height patch and customisations 2022-05-25 04:13:38 +01:00
drw.c fix: upgrade dwm to v6.3 and config refresh 2022-05-22 05:01:44 +01:00
drw.h feat: add dwm 2022-03-25 20:52:29 +00:00
dwm.1 fix: upgrade dwm to v6.3 and config refresh 2022-05-22 05:01:44 +01:00
dwm.c fix: bar height patch and customisations 2022-05-25 04:13:38 +01:00
dwm.png feat: add dwm 2022-03-25 20:52:29 +00:00
LICENSE feat: add dwm 2022-03-25 20:52:29 +00:00
Makefile feat: add dwm 2022-03-25 20:52:29 +00:00
README.md fix: bar height patch and customisations 2022-05-25 04:13:38 +01:00
transient.c feat: add dwm 2022-03-25 20:52:29 +00:00
util.c feat: add dwm 2022-03-25 20:52:29 +00:00
util.h feat: add dwm 2022-03-25 20:52:29 +00:00

My custom DWM build.

This repository is a fork of the Dynamic Window Manager (DWM) from suckless which contains additional patches and custom configurations.

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

Version: 6.3

Additional patches

  • titlecolor: Allows you to set a separate colour scheme for your title bar.
  • useless gap: Primarily adds 'useless' gaps around windows.

Requirements

In order to build dwm you need the Xlib header files.

Installation

The config.mk file was edited so that the installation path is set to ${HOME}/.local. This can be edited to match your own local setup.

Enter the following command to build and install dwm (if necessary as root):

$ make clean install

Running dwm

Add the following line to your ${HOME}/.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.

Keybindings

The MODKEY is set to the Super key (Windows key).

Key bindings Action
MODKEY + SHIFT + RETURN open the st terminal
MODKEY + b toggle the bar
MODKEY + SHIFT + b open firefox
MODKEY + SHIFT + t open tmux in the st terminal
MODKEY + SHIFT + c close a window
MODKEY + SHIFT + q quit dwm
MODKEY + SHIFT + <N> move the active window to workspace
MODKEY + <N> move to workspace
MODKEY + p run dmenu