sowm

An itsy bitsy floating window manager (220~ sloc!).
git clone git://mfeller.io/sowm.git
Log | Files | Refs | README | LICENSE

commit 57c9abbc15356b025db024890d08fb8d1ac385cd
parent 8c06f70b13177350e7b29ea2367da8598b4ac371
Author: Dylan Araps <dylan.araps@gmail.com>
Date:   Fri, 11 Oct 2019 21:32:23 +0300

catwm: run bud

Diffstat:
Mconfig.h | 10++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/config.h b/config.h @@ -13,10 +13,11 @@ #define MOD Mod4Mask -const char* menu[] = {"dmenu_run",NULL}; -const char* term[] = {"st",NULL}; -const char* voldown[] = {"amixer","sset","Master","5\%-",NULL}; -const char* volup[] = {"amixer","sset","Master","5\%+",NULL}; +const char* menu[] = {"dmenu_run", NULL}; +const char* term[] = {"st", NULL}; +const char* voldown[] = {"amixer", "sset", "Master", "5\%-", NULL}; +const char* volup[] = {"amixer", "sset", "Master", "5\%+", NULL}; +const char* colors[] = {"bud", "/home/goldie/Pictures/Wallpapers", NULL}; #define DESKTOP(K,N) \ { MOD, K, ws_go, {.i = N}}, \ @@ -29,6 +30,7 @@ static struct key keys[] = { {Mod1Mask, XK_Tab, win_next, {NULL}}, {MOD, XK_d, run, {.com = menu}}, + {MOD, XK_w, run, {.com = colors}}, {MOD, XK_Return, run, {.com = term}}, {0, XF86XK_AudioLowerVolume, run, {.com = voldown}}, {0, XF86XK_AudioRaiseVolume, run, {.com = volup}},