diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-04-12 17:06:29 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-04-12 17:06:29 +0200 |
commit | cbe9af1d1d72741d6e5d5d0152934abc31d78bcb (patch) | |
tree | 51a3bf5e37a4aeff798038d642d6ea26272756a0 /dwm | |
parent | 0cf1fd3a283f8a4b0d0418402a875d03ceb002dd (diff) |
moving to decouple from systemd
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[] = { |