diff options
author | Tom Canich <tcanich@canich.net> | 2011-02-19 23:03:31 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-02-28 09:42:04 -0600 |
commit | b3ea517f6e6241be714fa669c3c564c0574ca1f5 (patch) | |
tree | 06ec4582684ee557797cf1f76a8f3075a97cc66c /desktop/dwm/README.CONFIG | |
parent | bf7fd773bfa5fee9cc9bc6a8fbe4d261cba3fb05 (diff) | |
download | slackbuilds-b3ea517f6e6241be714fa669c3c564c0574ca1f5.tar.gz |
desktop/dwm: Added (suckless dynamic window manager)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/dwm/README.CONFIG')
-rw-r--r-- | desktop/dwm/README.CONFIG | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/desktop/dwm/README.CONFIG b/desktop/dwm/README.CONFIG new file mode 100644 index 0000000000..8e9e4a28a2 --- /dev/null +++ b/desktop/dwm/README.CONFIG @@ -0,0 +1,44 @@ +README.CONFIG for dwm + +In tiled layout, windows are managed in a master and stacking area. +The master area contains the windows which currently need most +attention, whereas the stacking area contains all other windows. In +floating layout, windows can be resized and moved freely. Dialog +windows are always managed floating, regardless of the layout +selected. + +Windows are grouped by tags. Each window can be tagged with one or +multiple tags. Selecting certain tags displays all windows with those +tags. + +dwm contains a small status bar which displays all available tags, the +layout, the title of the focused window, and the text read from the +name of the root window. The selected tags are highlighted with a +different color, while the tags of the focused window are highlighted +with a small point. + +dwm draws a small border around windows to indicate their focus state. + +CUSTOMIZATION +------------- +Place patches in patches/ . Any files in this directory will be +applied before the build. If you wish to make changes to the default +keybindings or other settings, produce a patch against config.h. +config.h is a copy of config.def.h distributed with the source +tarball. + +Place any patches in the patches/ directory before starting the +SlackBuild script. + +Example: + +$ cd dwm-5.8.2 +$ cp config.def.h config.h +$ vi config.h +[make customizations] +$ diff -u config.h config.def.h >> ../patches/config.patch +$ cd .. +$ sh dwm.SlackBuild + + + |