Playing with the font size again, same as the previous commit.
[dwm] / README
CommitLineData
7b563492
AT
1This git repository contains my personal branch of dwm-6.4.
2
3The changes made to stock dwm add the following abilities.
4
8f6a31e7
AT
5 - Draw per-client indicators in the tag section of the status bar.
6 <https://dwm.suckless.org/patches/clientindicators/>
7
1da78b82
AT
8 - Prompt the user before exiting/restarting dwm.
9 <https://dwm.suckless.org/patches/quitprompt/>
10
c56e7560
AT
11 - Assign text names to tags at runtime.
12 <https://dwm.suckless.org/patches/nametag/>
13
14 - Layout menu popup presents available layouts.
15 <https://dwm.suckless.org/patches/layoutmenu/>
7b563492
AT
16
17 - Select multiple tags for simultaneous display or window assignment.
18 <https://dwm.suckless.org/patches/combo/>
19
20 - Deselect ALL tags, displaying an empty desktop.
21 <https://dwm.suckless.org/patches/emptyview/>
22
23 - Center window names in status bar.
24 <https://dwm.suckless.org/patches/centeredwindowname/>
25
d9c1cfe3
AT
26 - Customized rules/keybindings in `config.h`.
27
c56e7560
AT
28In addition to the usual dependencies and installation tasks for dwm (see the
29original README at the bottom of this file), there are the following new
30dependencies/tasks.
7b563492
AT
31
32 - xmenu from <https://github.com/phillbush/xmenu>. This requires freetype2
33 and imlib2, available in FreeBSD's ports collection under `print/freetype2`
c56e7560 34 and `graphics/imlib2`. This is required for the layout menu popup.
7b563492 35
c56e7560 36 - Customize (if needed) and install `layoutmenu.sh` somewhere in your `$PATH`.
a4f2fca0 37 Remember to make it executable.
7b563492
AT
38
39================================================================================
40================================================================================
41================================================================================
42
43Below is the original dwm README file.
44
45================================================================================
46================================================================================
47================================================================================
48
49
5715edf5
AT
50dwm - dynamic window manager
51============================
52dwm is an extremely fast, small, and dynamic window manager for X.
53
54
55Requirements
56------------
57In order to build dwm you need the Xlib header files.
58
59
60Installation
61------------
62Edit config.mk to match your local setup (dwm is installed into
63the /usr/local namespace by default).
64
65Afterwards enter the following command to build and install dwm (if
66necessary as root):
67
68 make clean install
69
70
71Running dwm
72-----------
73Add the following line to your .xinitrc to start dwm using startx:
74
75 exec dwm
76
77In order to connect dwm to a specific display, make sure that
78the DISPLAY environment variable is set correctly, e.g.:
79
80 DISPLAY=foo.bar:1 exec dwm
81
82(This will start dwm on display :1 of the host foo.bar.)
83
84In order to display status info in the bar, you can do something
85like this in your .xinitrc:
86
87 while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
88 do
89 sleep 1
90 done &
91 exec dwm
92
93
94Configuration
95-------------
96The configuration of dwm is done by creating a custom config.h
97and (re)compiling the source code.