diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-01-11 07:25:55 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-11 18:42:33 +0530 |
commit | 381edd6432fcca790760881a279204c16cd4ca2f (patch) | |
tree | 73ea6bede5d7119ff79037f75f198d6ef26cbbcb /config.def.h | |
parent | 45e0b8ac85e57eff9356fb468ccef93b9c71012e (diff) |
switch out dmsounds for damb, https://git.sinanmohd.com/sds
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 4911266..23bb9cb 100644 --- a/config.def.h +++ b/config.def.h @@ -80,12 +80,12 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbordercolor, "-sf", selfgcolor, NULL }; static const char *termcmd[] = { "st", NULL }; static const char *scrnlock[] = { "slock", NULL }; -static const char *mem_sleep[] = { "msleep", NULL }; +static const char *mem_sleep[] = { "msleep", NULL }; static const char *scrnshot[] = { "scst", NULL }; static const char *scrnshotsel[] = { "scst", "s", NULL }; static const char *nnnfm[] = { "st", "nnn", "-decC", NULL }; static const char *bluctl[] = { "bluctl", NULL }; -static const char *dmsounds[] = { "dmsounds", NULL }; +static const char *damb[] = { "damb", NULL }; static const char *web[] = { "tabbed", "-c", "surf", "-e", NULL }; static const char *webalt[] = { "librewolf", NULL }; static const char *ncmpcpp[] = { "st", "ncmpcpp-ueberzug", NULL }; @@ -145,7 +145,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_s, spawn, {.v = scrnshot } }, { MODKEY, XK_a, spawn, {.v = nnnfm } }, { MODKEY, XK_F3, spawn, {.v = bluctl } }, - { MODKEY|ShiftMask, XK_a, spawn, {.v = dmsounds } }, + { MODKEY|ShiftMask, XK_a, spawn, {.v = damb } }, { MODKEY, XK_w, spawn, {.v = web } }, { MODKEY|ShiftMask, XK_w, spawn, {.v = webalt } }, { MODKEY, XK_n, spawn, {.v = ncmpcpp } }, |