diff options
author | Acid Bong <acid-bong@cock.lt> | 2022-10-24 21:44:00 +0300 |
---|---|---|
committer | Acid Bong <acid-bong@cock.lt> | 2022-10-24 21:44:00 +0300 |
commit | 1e3c3c09527b3ceecf9c4294ed03262ba29e4bba (patch) | |
tree | ef14da3c0d54e3b98672a2ca5279b54caad076d8 /config.def.h | |
parent | 2f7cf6d41b9c6e0e6f1e1180bba68421149bc4ee (diff) | |
download | dwm-1e3c3c09527b3ceecf9c4294ed03262ba29e4bba.tar.gz |
keys: gopher browser and a powermenu stub
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index f80395f..fa27961 100644 --- a/config.def.h +++ b/config.def.h @@ -105,6 +105,7 @@ static const Key keys[] = { { MODKEY, XK_w, spawn, SHCMD("firefox") }, { MODKEY, XK_f, spawn, SHCMD("st ranger") }, { ControlMask|ShiftMask, XK_Escape, spawn, SHCMD("st btop") }, + { MODKEY, XK_b, spawn, SHCMD("st bombadillo") }, /* volume control */ { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 5; kill -35 $(pidof dwmblocks)") }, { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 5; kill -35 $(pidof dwmblocks)") }, @@ -131,6 +132,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Up, movestack, {.i = -1 } }, /* focusurgent patch */ { MODKEY, XK_a, focusurgent, {0} }, + { 0, XF86XK_PowerOff, spawn, SHCMD("notify-send 'turning off your machine, bitch'") }, }; /* button definitions */ |