dwm

From Gentoo Wiki
Jump to:navigation Jump to:search
Other languages:

dwm (shortened from dynamic window manager) is a dynamic window manager for X11 from suckless.org. dwm is a single binary, and its source code is intended to never exceed 2000 SLOC.

dwm is configured by editing the C source code, and recompiling it. The suckless website states that the project focuses on advanced and experienced computer users, and - perhaps tongue in cheek - that customization through editing source code "keeps its userbase small and elitist".

Window model

dwm is a dynamic window manager, as such it manages windows in tiled, monocle and floating layouts. All of the layouts can be applied dynamically, optimizing the environment for the application in use and the task performed.

Launch a few terminals with Shift+Alt+Enter and dwm will tile the windows between the master and stack. A new terminal appears on the master window. Existing windows are pushed upon a stack to the right of the screen. Alt+Enter toggles windows between master and stack.

   +------+----------------------------------+--------+
   | tags | title                            | status +
   +------+---------------------+------------+--------+
   |                            |                     |
   |                            |                     |
   |                            |                     |
   |                            |                     |
   |          master            |        stack        |
   |                            |                     |
   |                            |                     |
   |                            |                     |
   |                            |                     |
   +----------------------------+---------------------+

Installation

USE flags

USE flags for x11-wm/dwm a dynamic window manager for X11

savedconfig Use this to restore your config from /etc/portage/savedconfig ${CATEGORY}/${PN}. Make sure your USE flags allow for appropriate dependencies
xinerama Add support for querying multi-monitor screen geometry through the Xinerama API

Users should consider enabling the savedconfig USE flag in order to save customized configuration file to /etc/portage/savedconfig/x11-wm/dwm-6.0.h for later editing.

root #euse --enable savedconfig

Users with multiple monitors should enable the xinerama USE flag regardless of whether or not Xinerama will be used.

root #euse --enable xinerama

Emerge

Install x11-wm/dwm:

root #emerge --ask x11-wm/dwm

Configuration

Starting

The information in this section is probably outdated. You can help the Gentoo community by verifying and updating this section.

To start dwm use a display manager or the startx command.

Those choosing to go the startx route need to create the following file:

FILE ~/.xinitrc
exec dbus-launch --sh-syntax --exit-with-session dwm

Main dwm configuration file (dwm.h file)

As stated previously, the main dwm configuration file is the /etc/portage/savedconfig/x11-wm/dwm-6.0 file and after each change, dwm needs to be recompiled for any changes to take effect.

In order for the editor to properly display syntax highlighting for C code, create a symlink using a C header filename extension.

root #ln -s /etc/portage/savedconfig/x11-wm/dwm-6.0 /etc/portage/savedconfig/x11-wm/dwm-6.0.h

or consult the documentation of your editor of choice on how to change the syntax highlighting used for a file independent of its extension.

To use a new configuration after recompilation, if already within a dwm session, quit dwm (Mod+Shift+Q) then reload it, to replace the currently executing binary in memory.

Settings file (dwmrc)

The default xsession file provided by the Gentoo Ebuild (/etc/X11/Sessions/dwm) provides for a default status box that displays system load and the date/time or whatever shell code the user has inside ~/.dwm/dwmrc. The present mechanism (as of dwm-6.0) for sending text to a status box in the window manager's bar is to use 'xsetroot', as illustrated by the default xsession mentioned above. With a few lines of shell code, one can use this mechanism to send arbitrary text to the status bar (for example, the CPU temperature, the current track on the music player, number of unread emails, etc.)

Additional features

dmenu

dmenu is a dynamic menu for X, originally designed for dwm.

Installation

Emerge

Install dmenu:

root #emerge --ask x11-misc/dmenu
Configuration

dmenu's options can be customized using the dwm.h file, such as displaying the menu at the bottom of the display.

FILE /etc/portage/savedconfig/x11-misc/dmenu-4.9.h
static const char *dmenucmd[] = { "dmenu_run", "-b", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
Usage

By default, Alt + P key sequence enables the menu.

Additional status information

To display additional status information on dwm's menu bar, one should use x11-apps/xsetroot, which sets text information into the upper right corner.

First of all, install x11-apps/xsetroot if it's not installed yet.

Then, use a script or side program to loop current information in dwm status.

root #emerge --ask x11-apps/xsetroot

Conky

For example, try Conky to display current information about the system. Prefer installing with -X USE flag as only text information is piped through to the dwm instance. (USE flags for consideration are "-X hddtemp iostats wifi".)

root #emerge --ask app-admin/conky

An example ~/.config/conky/conky.conf file. The configuration file is divided into two sections: conky.config and conky.text. The conky.config section contains options related to Conky, while the conky.text section defines what and how information is displayed. To use Conky on your system, you may need to adjust some settings in the conky.text section, such as the path to network interfaces or hard drives, as those can vary depending on your system.

FILE ~/.config/conky/conky.conf
conky.config = {
 
background = no,
format_human_readable = yes,
out_to_console = yes,
temperature_unit = celsius,
total_run_times = 0,
update_interval = 1,
#use_spacer = left,
use_spacer = none,
 
};
 
conky.text = [[
 
M ${memperc}%/${swapperc}% | \
/sda ${diskio sda} /sdb ${diskio sdb} \
/sdc ${diskio sdc} | \
${if_existing /proc/net/route ppp0}P0 U ${upspeed ppp0} D ${downspeed ppp0} |${endif}\
${if_existing /proc/net/route eth0}E0 U ${upspeed eth0} D ${downspeed eth0} |${endif}\
${if_existing /proc/net/route wlan0}W0 U ${upspeed eth0} D ${downspeed eth0}\
${wireless_ap wlan0} ${wireless_link_qual_perc wlan0} ${endif}\
CPU ${hwmon 1 temp 1}F \
/sda ${hddtemp /dev/sda}F \
/sdb ${hddtemp /dev/sdb}F \
     ${time %a, %b %d %Y  %H:%M (%z)}
 
]]
Note
If Conky was used some time before, pay attention to new syntax with braces and equal signs.

Add a line in the ~/.xinitrc file before the dwm execution command, mentioned earlier.

FILE ~/.xinitrc
conky | while read -r; do xsetroot -name "$REPLY"; done &
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session dwm

Custom script

Instead of emerging side programs, create a simple loop to show date, time, weather and other system information.

For example, to show weather, date and time create a shell script file, in ~/.scripts/:

FILE ~/.scripts/xsetloop.sh
#!/bin/sh
 
let loop=0
while true; do
	if [[ $loop%300 -eq 0 ]]; then
		weather="$(curl 'https://wttr.in?format=1')"
		let loop=0
	fi
	xsetroot -name " $weather | $(date '+%b %d %a') | $(date '+%H:%M') "
	let loop=$loop+1
	sleep 1
done

Since the script is already looped, we just need to set it within xroot in our ~/.xinitrc file.

FILE ~/.xinitrc
. ~/.scripts/xsetloop.sh &
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session dwm

Usage

Keys and key functions

All (default) dwm key bindings work with a certain MODKEY, which is defined in dwm.h. The default MODKEY value is Mod1Mask, which means Alt key for PC keyboards. In the rest of this article, Mod is used to represent MODKEY.

Moving a window manually

To move a window to another window tag manually, hold down the Mod key and left click anywhere on the window. Then, while still holding down Mod, click again on the window tag to move the window to.

Default shortcuts

Those shortcuts are used by default in x11-wm/dwm.

Window management
  • Mod+2 - Display window tag number two
  • Mod+Shift+1-9 - Hover mouse over window and press keys. Puts window on tag number specified.
  • Mod+Shift+0 - Hover mouse over window and press keys. Puts window on all tags.
Utilities
  • Mod+Shift+Enter - Launch a terminal
  • Mod+Shift+C - Kills a window
  • Mod+P - dmenu
  • Mod+J or Mod+K - Move to another terminal.
  • Mod+Enter - Toggles Windows between stack and master.
  • Mod+Shift+Q - Quit dwm
Changing layout
  • Mod+F - Change layout on floating.
  • Mod+T - Change layout on tiled.

Volume keys

Warning
"..." means to be included in x11-wm/dwm not at the file end.

Add the following lines to the config file and re-emerge dwm:

FILE /etc/portage/savedconfig/x11-wm/dwm-6.0
#include <X11/XF86keysym.h>
 
...
 
/* commands */
static const char *upvol[] = { "amixer", "set", "Master", "2+", NULL };
static const char *downvol[] = { "amixer", "set", "Master", "2-", NULL };
 
// for muting/unmuting //
static const char *mute[] = { "amixer", "-q", "set", "Master", "toggle", NULL };
 
// for pulse compatible //
static const char *upvol[] = { "amixer", "-q", "sset", "Master", "1%+", NULL };
static const char *downvol[] = { "amixer", "-q", "sset", "Master", "1%-", NULL };
static const char *mute[] = { "amixer", "-q", "-D", "pulse", "sset", "Master", "toggle", NULL };
 
...
 
static Key keys[] = {
        /* modifier                     key        function        argument */
        { 0,              XF86XK_AudioRaiseVolume, spawn,          {.v = upvol } },
        { 0,              XF86XK_AudioLowerVolume, spawn,          {.v = downvol } },
        { 0,              XF86XK_AudioMute,        spawn,          {.v = mute } },

Customization

dwm is customized through editing its source code

(Put user customization tricks & tips here.)

Patching

Gentoo has a specific way of patching dwm. If the patches are ready to be merged with dwm source, there is special function called eapply_user that can be called during the emerge process. This function allows user patches to be applied to the source. Move the necessary patches one of the two locations:

Patches in /etc/portage/patches/category/application

First create the following directory:

root #mkdir -p /etc/portage/patches/x11-wm/dwm

Copy the dwm patches to /etc/portage/patches/x11-wm/dwm/ and make sure each patch is prefixed with a number, like so: 01-name_of_patch.patch. Also the filename needs to end with .patch or .diff otherwise Portage will not apply it. For this example we will assume that the patch is located in the home directory (/home/larry) of the user called larry.

root #cp /home/larry/01-dwm.6.0-xft.patch /etc/portage/patches/x11-wm/dwm/

Now just install dwm, emerge will take care of applying patches

root #emerge --ask x11-wm/dwm

Put patches in an ebuild repository configured with Portage

Creating an ebuild repository for the dwm patches can help when wanting to share them, either on another machine, or publicly.

Copy x11-wm/dwm from /var/db/repos/gentoo/ to a new ebuild repository, or to whatever repository is appropriate.

Place patches in the files directory (for this example, the repository created to hold these files is named "dwm_patches"):

root #cp /home/larry/01-dwm-6.0-xft.diff /var/db/repos/dwm_patches/x11-wm/dwm/files/

Open the ebuild file in a text editor, /var/db/repos/dwm_patches/x11-wm/dwm/dwm-6.1.ebuild, and list them in the PATCHES variable array for automatic patching:

FILE /var/db/repos/dwm_patches/x11-wm/dwm-6.1.ebuild
PATCHES=( "${FILESDIR}/01-dwm-6.0-xft.diff"
          "${FILESDIR}/02-dwm-6.1-x11.diff"
)

Fire up emerge and enjoy

root #emerge --ask x11-wm/dwm

Assigning applications to window tags

A user can have their favorite applications start on a different window tag, such as starting MPlayer on window tag number five.

First, know the name of the application recorded by Xorg so dwm can be aware of this window on startup. To find this, start the target application (MPlayer in this example) and then further execute the xprop command (x11-apps/xprop). Click on the MPlayer window and xprop will report Xorg's data on the MPlayer window. Use the second window name identified on the WM_CLASS(STRING) line. Now we have the name of the window dwm needs to be aware of.

Note
Sometimes an application will have multiple windows of itself and will report one window with capital letters, while the second will have no capital letters. Wildcard characters are allowed within window names.
FILE /etc/portage/savedconfig/x11-wm/dwm-6.0.h
static const Rule rules[] ={
    { "MPlayer",    NULL,       NULL,   1 << 4,     True,        0 },
};

Troubleshooting

Upgrading to dwm-6.0

Upgrading from dwm-5.9 to dwm-6.0 incorporated many changes making the previous config.h a likely problem for compiling dwm-6.0. Likely problems displayed might be compiler error messages "'nmaster' undeclared". To resolve, compile and install dwm-6.0 without using the custom config.h file and then find the default dwm-6.0 config.h file and diff against the old config.h file. (Or, decompress the dwm-6.0 tarball to acquire the default dwm-6.0 config.h file.)

Fix " Permission Denied"

A logind provider, like systemd or elogind, must be running in order to start a X session as non privileged user. If a logind provider is not running and the user issues startx dwm fails to start and message similar to this appears:

(EE) parse_vt_settings: Cannot open /dev/tty0 (Permission denied)

If this is the case and the system is OpenRC-based, add elogind to boot and start the service:

root #rc-update add elogind boot
root #/etc/init.d/elogind start

for more information, please visit Non root Xorg wiki page.

Remap mod key

If there are conflicts with the default dwm Alt conflicting with other console interface applications, use the Esc while within the console application. The Esc is an immediate usable fall back escape key. Another option, redefine the Mod key to use the keyboard Super (Windows) or other additional keys near the Space.

FILE /etc/portage/savedconfig/x11-wm/dwm-6.0.h
#define MODKEY Mod4Mask         /* Use Super Key */

To assign a second Mod key allowing a user to have a Mod key on both sides of the keyboard, mimic or copy this keys activity to another key on the keyboard. The Microsoft Menu key (or context menu key) on Microsoft keyboards is directly opposite of the Super (Windows). The x11-apps/xmodmap package is required for this. (For reference, the two key's values are: showkey 125/127 and xev 133/135 respectively - on MS NEK4000 keyboard.)

FILE $HOME/.xinitrc
# Top of $HOME/.xinitrc file is a good place for this.
# This reassigns MS NEK4000 right Menu key to simulate DWM Mod4Key as well.
xmodmap -e "keycode 135 = Super_L" # reassign MS Menu Keypress to Super_L
xmodmap -e "remove mod1 = Super_L" # make sure X keeps it out of the mod1 group

Now, a user should have a non-conflicting and easily accessible Mod key on both sides of the keyboard!

Fix Java application misbehaving

Java-based applications are known to misbehave as Java doesn't know the WM being used. This result in GUI of specific Java applications to not work properly. To solve this we need to set the window manager name property of the root window. This can be done using the wmname tool and set it to LG3D.

Install the tool:

root #emerge --ask x11-misc/wmname

and set the property name:

user $wmname LG3D

To make this setting permanent add this command to ~/.xinitrc.

Tip
It is also useful to export AWT_TOOLKIT if some Java applications are using AWT, as noted below.

Blank (grey) windows of Java applications

Java-based applications, such as Apache NetBeans, does not render properly. To mitigate this problem set the AWT_TOOLKIT variable as:

user $AWT_TOOLKIT=MToolkit; export AWT_TOOLKIT

To make the action permanent is is required to add the command to the startup script, for example ~/.xinitrc.

Background not redrawing

Sometimes the background may not properly redraw when the current view is switched. For example, some terminal emulators such as st don't draw the entirety of their allocated window space. In these cases, X root window must have a properly defined color. This can be done with the xsetroot command. For example:

user $xsetroot -solid black