fixed some syntax errors in dwm

This commit is contained in:
2014-03-29 12:57:03 -06:00
parent ee149fddf7
commit eacae4ea3e
+3 -3
View File
@@ -51,9 +51,9 @@ static const Layout layouts[] = {
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
static const char *termcmd[] = { "uxterm", NULL }; static const char *termcmd[] = { "uxterm", NULL };
/*functions for volume control*/ /*functions for volume control*/
static const char *upvol[] = { "amixer, "sset", "Master", "5%+", NULL}; static const char *upvol[] = { "amixer", "sset", "Master", "5%+", NULL};
static const char *updown[] = { "amixer, "sset", "Master", "5%-", NULL}; static const char *downvol[] = { "amixer", "sset", "Master", "5%-", NULL};
static const char *mute[] = { "amixer, "sset", "Master", "toggle", NULL}; static const char *mute[] = { "amixer", "sset", "Master", "toggle", NULL};
static Key keys[] = { static Key keys[] = {
/* modifier key function argument */ /* modifier key function argument */