tAdd binding for casting microphone - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 786a9ed7f3f238fcb55faac15162f1a1a4d11532
(DIR) parent 4764faafda34e251f34bd1d8bc9342ea1f22c6fd
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Wed, 27 May 2020 08:43:05 +0200
Add binding for casting microphone
Diffstat:
M config.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/config.h b/config.h
t@@ -103,6 +103,7 @@ static const char *displaycmd[] = {"displayselect", NULL};
static const char *textcmd[] = {"text.sh", "-i", NULL};
static const char *videocmd[] = {"videotoggle", NULL};
static const char *screenrecordcmd[] = {"screenrecord", NULL};
+static const char *castcmd[] = {"adcast", NULL};
static const char *plumbcmd[] = {"clipplumb", NULL};
static const char *plumb2cmd[] = {"clipplumb", "-c", NULL};
t@@ -146,7 +147,6 @@ static Key keys[] = {
{ MODKEY, XK_space, spawn, {.v = searchcmd } },
{ MODKEY, XK_a, spawn, {.v = articlesearchcmd } },
{ MODKEY|ShiftMask, XK_a, spawn, {.v = jabbrevcmd } },
- { MODKEY, XK_o, spawn, {.v = fuzzylaunchcmd } },
{ MODKEY, XK_grave, spawn, {.v = unicodecmd } },
{ MODKEY, XK_slash, spawn, {.v = definecmd } },
{ MODKEY, XK_p, spawn, {.v = passcmd } },
t@@ -163,6 +163,7 @@ static Key keys[] = {
{ MODKEY, XK_v, spawn, {.v = videocmd } },
{ MODKEY, XK_r, spawn, {.v = screenrecordcmd } },
+ { MODKEY, XK_o, spawn, {.v = castcmd } },
{ MODKEY, XK_c, spawn, {.v = calendarcmd } },
{ MODKEY, XK_d, spawn, {.v = todocmd } },
{ MODKEY|ShiftMask, XK_d, spawn, {.v = journalcmd } },