From ddc175317cc1d24c23ea4458c10a66b335f034b3 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Sun, 7 May 2023 16:50:27 -0700 Subject: [PATCH] Update readme and config.def.h --- README.md | 23 +++++++++++++++++++++++ README => README.orig | 0 config.def.h | 4 ++-- 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 README.md rename README => README.orig (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..6c4033d --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Zander671's dwm +## Overview +This is my personal configuration of dwm that I use on all of my production +machines on a daily basis. It is currently based on dwm 6.4, however, I tend to +update it when new releases come out. The `config.def.h` file contains the +framework I use when I first install this on a new computer. + +Check `README.orig` for the stock dwm `README` file. + +## Patches +The following patches are included: +1. cfacts +2. alwaysontop +3. colorbar +4. combo +5. fixborders +6. systray +7. A modified version of preserve on restart that only takes effect when the + restart function (default Mod+Shift+R is used) + +## Building +Just `make && sudo make install`. Remember to customize `config.h` and +`config.mk`. diff --git a/README b/README.orig similarity index 100% rename from README rename to README.orig diff --git a/config.def.h b/config.def.h index 0d8c645..57b6e75 100644 --- a/config.def.h +++ b/config.def.h @@ -55,9 +55,9 @@ static const Layout layouts[] = { /* key definitions */ #define MODKEY Mod4Mask #define TAGKEYS(KEY,TAG) \ - { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ + { MODKEY, KEY, comboview, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ - { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ + { MODKEY|ShiftMask, KEY, combotag, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, /* helper for spawning shell commands in the pre dwm-5.0 fashion */