Update shortcuts

This commit is contained in:
Franck STAUFFER 2021-05-12 19:36:32 +02:00
parent 6ab007a849
commit 52ce9fabdd
Signed by: franck.stauffer
GPG Key ID: AAF5A94045CEC261
1 changed files with 12 additions and 12 deletions

View File

@ -58,18 +58,18 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "/usr/bin/dmenu_run", "-m", dmenumon, NULL };
static const char *pmenucmd[] = { "/usr/bin/passmenu", NULL };
static const char *termcmd[] = { "/usr/bin/xterm", NULL };
static const char *lockcmd[] = { "/usr/bin/slock", NULL };
static const char *mailcmd[] = { "/usr/bin/thunderbird", NULL };
static const char *webcmd[] = { "/usr/lib/firefox/firefox", NULL };
static const char *volup[] = { "/usr/bin/pactl", "set-sink-volume", "@DEFAULT_SINK@", "+5%", NULL};
static const char *voldown[] = { "/usr/bin/pactl", "set-sink-volume", "@DEFAULT_SINK@", "-5%", NULL};
static const char *volmute[] = { "/usr/bin/pactl", "set-sink-mute", "@DEFAULT_SINK@", "toggle", NULL};
static const char *micmute[] = { "/usr/bin/pactl", "set-source-mute", "@DEFAULT_SOURCE@", "toggle", NULL};
static const char *brightup[] = { "/usr/bin/brightnessctl", "set", "10%+", NULL};
static const char *brightdown[] = { "/usr/bin/brightnessctl", "set", "10%-", NULL};
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 *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 *brightup[] = { "/bin/xbacklight", "-inc", "1", "-perceived", NULL};
static const char *brightdown[] = { "/bin/xbacklight", "-dec", "1", "-perceived", NULL};
static Key keys[] = {
/* modifier key function argument */