diff options
author | joe <rbo@gmx.us> | 2025-09-12 17:48:45 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-12 17:48:45 +0200 |
commit | 894d84c26ee61ce9cc51e988d36ceb7f18ecf921 (patch) | |
tree | 2bd6247a1df3f67066484e3a9360ef76f163c880 /config.def.h | |
parent | cmus (diff) | |
download | dwm-894d84c26ee61ce9cc51e988d36ceb7f18ecf921.tar.gz dwm-894d84c26ee61ce9cc51e988d36ceb7f18ecf921.tar.bz2 dwm-894d84c26ee61ce9cc51e988d36ceb7f18ecf921.tar.xz dwm-894d84c26ee61ce9cc51e988d36ceb7f18ecf921.tar.zst dwm-894d84c26ee61ce9cc51e988d36ceb7f18ecf921.zip |
up
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 9e16bab..875b6e8 100644 --- a/config.def.h +++ b/config.def.h @@ -184,7 +184,7 @@ static const char *vol_inc_cmd[] = { "mixer-set", "raise", NULL }; static const char *mic_cmd[] = { "mic", NULL }; static const char *mpc_prev_cmd[] = { "mpc", "prev", NULL }; static const char *mpc_next_cmd[] = { "mpc", "next", NULL }; -static const char *mpc_tog_cmd[] = { "mpc", "toggle", NULL }; +static const char *cmus_tog_cmd[] = { "cmus-remote", "-u", NULL }; static const char *mpc_stop_cmd[] = { "mpc", "stop", NULL }; static const char *killespeak_cmd[] = { "/home/jozan/.local/bin/shutup", NULL }; @@ -208,7 +208,7 @@ static const Key keys[] = { { MODKEY, XK_F11, spawn, {.v = htop_cmd } }, { MODKEY, XK_F12, spawn, {.v = top_cmd } }, { MODKEY|ShiftMask, XK_F6, spawn, {.v = mpc_prev_cmd } }, - { MODKEY|ShiftMask, XK_F7, spawn, {.v = mpc_tog_cmd } }, + { MODKEY|ShiftMask, XK_F7, spawn, {.v = cmus_tog_cmd } }, { MODKEY|ShiftMask, XK_F8, spawn, {.v = mpc_next_cmd } }, { MODKEY|ShiftMask, XK_F9, spawn, {.v = mpc_stop_cmd } }, { MODKEY|ShiftMask, XK_F10, spawn, {.v = vol_tog_cmd } }, @@ -233,7 +233,7 @@ static const Key keys[] = { { 0, XF86XK_AudioRaiseVolume, spawn, {.v = vol_inc_cmd } }, { 0, XF86XK_AudioLowerVolume, spawn, {.v = vol_dec_cmd } }, { 0, XF86XK_AudioMute, spawn, {.v = vol_tog_cmd } }, - { 0, XF86XK_AudioPlay, spawn, {.v = mpc_tog_cmd } }, + { 0, XF86XK_AudioPlay, spawn, {.v = cmus_tog_cmd } }, { 0, XF86XK_AudioPrev, spawn, {.v = mpc_prev_cmd } }, { 0, XF86XK_AudioNext, spawn, {.v = mpc_next_cmd } }, { MODKEY, XK_Delete, spawn, {.v = killespeak_cmd } }, |