Last active
September 27, 2023 18:20
-
-
Save neuro-sys/2570361 to your computer and use it in GitHub Desktop.
dwm volume control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* config.h | |
* ALT + F11 | F12 | |
*/ | |
static const char *upvol[] = { "amixer", "set", "Master", "3+", NULL }; | |
static const char *downvol[] = { "amixer", "set", "Master", "3-", NULL }; | |
static const char *mutevol[] = { "amixer", "set", "Master", "toggle", NULL }; | |
static Key keys[] = { | |
{ MODKEY, XK_F12, spawn, {.v = upvol } }, | |
{ MODKEY, XK_F11, spawn, {.v = downvol } }, | |
{ MODKEY, XK_F9, spawn, {.v = mutevol } }, | |
}; |
what if i login as non root user, the upvol and downvol didn't work for me
if i try sudo amixer set Master 3+ null, on terminal it worked,
Great
If anyone's wondering why the vol up and down aren't working for them, just use sudo amixer
in place of amixer
for people that use pamixer instead of amixer
static const char *upvol[] = { "pamixer", "--increase", "3", NULL };
static const char *downvol[] = { "pamixer", "--decrease", "3", NULL };
static const char *mutevol[] = { "pamixer", "-t", NULL };
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sick!