tconfig.h: make all mpc commands quiet - 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 ee171ddf2a1224a8d24a0e5055cbd6b50524b827
(DIR) parent 29da772c260cea5c643ae532b0ab5c34323c8496
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Fri, 6 Nov 2020 12:41:58 +0100
config.h: make all mpc commands quiet
Diffstat:
M config.h | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
---
(DIR) diff --git a/config.h b/config.h
t@@ -132,15 +132,15 @@ static const char *mixercmd[] = TERMCMD("audiomixer");
static const char *musiccmd[] = TERMCMD("ncmpc");
static const char *music_remote_cmd[] = TERMCMD("ncmpc", "-h", MPD_REMOTE);
-static const char *mpdtogglecmd[] = {"mpc", "toggle", NULL};
-static const char *mpdnextcmd[] = {"mpc", "next", NULL};
-static const char *mpdprevcmd[] = {"mpc", "prev", NULL};
-static const char *mpdstopcmd[] = {"mpc", "stop", NULL};
+static const char *mpdtogglecmd[] = {"mpc", "toggle", "-q", NULL};
+static const char *mpdnextcmd[] = {"mpc", "next", "-q", NULL};
+static const char *mpdprevcmd[] = {"mpc", "prev", "-q", NULL};
+static const char *mpdstopcmd[] = {"mpc", "stop", "-q", NULL};
-static const char *mpd_remote_togglecmd[] = {"mpc", "toggle", "-h", MPD_REMOTE, NULL};
-static const char *mpd_remote_nextcmd[] = {"mpc", "next", "-h", MPD_REMOTE, NULL};
-static const char *mpd_remote_prevcmd[] = {"mpc", "prev", "-h", MPD_REMOTE, NULL};
-static const char *mpd_remote_stopcmd[] = {"mpc", "stop", "-h", MPD_REMOTE, NULL};
+static const char *mpd_remote_togglecmd[] = {"mpc", "toggle", "-q", "-h", MPD_REMOTE, NULL};
+static const char *mpd_remote_nextcmd[] = {"mpc", "next", "-q", "-h", MPD_REMOTE, NULL};
+static const char *mpd_remote_prevcmd[] = {"mpc", "prev", "-q", "-h", MPD_REMOTE, NULL};
+static const char *mpd_remote_stopcmd[] = {"mpc", "stop", "-q", "-h", MPD_REMOTE, NULL};
static const char *audioextvolupcmd[] = {"sndioctl", "output.level=+0.05", NULL};
static const char *audioextvoldncmd[] = {"sndioctl", "output.level=-0.05", NULL};