diff options
Diffstat (limited to 'dwm')
-rw-r--r-- | dwm/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm/config.h b/dwm/config.h index a2ed44e..4b0fcbe 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -58,8 +58,8 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col, "-sf", col_gray4, NULL }; static const char *passmenucmd[] = { "passmenu", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col, "-sf", col_gray4, NULL }; -static const char *volumeup[] = { "amixer", "-D", "pulse", "sset", "Master", "5%+", NULL}; -static const char *volumedown[] = { "amixer", "-D", "pulse", "sset", "Master", "5%-", NULL}; +static const char *volumeup[] = { "amixer", "sset", "Master", "5%+", NULL}; +static const char *volumedown[] = { "amixer", "sset", "Master", "5%-", NULL}; static const char *termcmd[] = { "st", NULL }; static Key keys[] = { |