Navigation Menu

Skip to content

Commit

Permalink
Reference volOSD script in bin for adjusting volume
Browse files Browse the repository at this point in the history
  • Loading branch information
falconindy committed Jan 16, 2010
1 parent d78ce01 commit a30531a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions config.h
Expand Up @@ -55,8 +55,11 @@ static const char *dmenucmd[] = { "dmenu_run", "-b", "-fn", font, "-nb", normbgc
static const char *termcmd[] = { "urxvtc", NULL }; static const char *termcmd[] = { "urxvtc", NULL };


/* General Sound */ /* General Sound */
static const char *volup[] = { "amixer", "-q", "set", "PCM", "5+" }; //static const char *volup[] = { "amixer", "-q", "set", "PCM", "5+" };
static const char *voldown[] = { "amixer", "-q", "set", "PCM", "5-" }; //static const char *voldown[] = { "amixer", "-q", "set", "PCM", "5-" };

static const char *volup[] = { "volOSD", "up", "5" };
static const char *voldown[] = { "volOSD", "down", "5" };


/* mpd shortcuts */ /* mpd shortcuts */
static const char *mpcnext[] = { "mpc", "next", NULL }; static const char *mpcnext[] = { "mpc", "next", NULL };
Expand Down

0 comments on commit a30531a

Please sign in to comment.