Small changes on shortcuts

This commit is contained in:
Franck STAUFFER 2021-06-16 22:25:25 +02:00
parent 52ce9fabdd
commit ddb0be9a54
Signed by: franck.stauffer
GPG Key ID: AAF5A94045CEC261
1 changed files with 6 additions and 6 deletions

View File

@ -61,13 +61,13 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
static const char *dmenucmd[] = { "/bin/dmenu_run", "-m", dmenumon, NULL };
static const char *pmenucmd[] = { "/bin/passmenu", NULL };
static const char *termcmd[] = { "/bin/xterm", NULL };
static const char *lockcmd[] = { "/bin/slock", NULL };
static const char *mailcmd[] = { "/bin/xterm", "-e", "/bin/torsocks", "env", "TZ=UTC", "/bin/neomutt", NULL };
static const char *lockcmd[] = { "/bin/xlock", NULL };
static const char *mailcmd[] = { "/bin/xterm", "-e", "/bin/proxychains", "-q", "env", "TZ=UTC", "/bin/neomutt", NULL };
static const char *webcmd[] = { "/bin/palemoon", NULL };
static const char *volup[] = { "/bin/amixer", "set", "Master", "5%+", NULL};
static const char *voldown[] = { "/bin/amixer", "set", "Master", "5%-", NULL};
static const char *volmute[] = { "/bin/amixer", "set", "Master", "toggle", NULL};
static const char *micmute[] = { "/bin/amixer", "set", "Capture", "toggle", NULL};
static const char *volup[] = { "/bin/amixer", "set", "-q", "Master", "5%+", NULL};
static const char *voldown[] = { "/bin/amixer", "set", "-q", "Master", "5%-", NULL};
static const char *volmute[] = { "/bin/amixer", "set", "-q", "Master", "toggle", NULL};
static const char *micmute[] = { "/bin/amixer", "set", "-q", "Capture", "toggle", NULL};
static const char *brightup[] = { "/bin/xbacklight", "-inc", "1", "-perceived", NULL};
static const char *brightdown[] = { "/bin/xbacklight", "-dec", "1", "-perceived", NULL};