From 0f7c157efaa0c2febf0531bfa6d2b6c29c492c06 Mon Sep 17 00:00:00 2001 From: julian T Date: Mon, 3 Dec 2018 19:31:29 +0100 Subject: Changes keyboard input and brightness control --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 49bd8ca..b85e6c4 100644 --- a/config.h +++ b/config.h @@ -82,8 +82,8 @@ static const Layout layouts[] = { static const char *upvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "+5%", NULL}; static const char *downvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "-5%", NULL}; static const char *mutevol[] = { "/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL}; -static const char *brightup[] = { "xbacklight", "-inc", "10", NULL}; -static const char *brightdown[] = { "xbacklight", "-dec", "10", NULL}; +static const char *brightup[] = { "xbacklight", "-inc", "5", NULL}; +static const char *brightdown[] = { "xbacklight", "-dec", "5", NULL}; static const char *exitXsession[] = { "/home/julian/.dwmSession.sh", "-e" }; #define MODKEY Mod1Mask @@ -99,7 +99,7 @@ static const char *exitXsession[] = { "/home/julian/.dwmSession.sh", "-e" }; /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; -static const char *termcmd[] = { "terminator", NULL }; +static const char *termcmd[] = { "st", NULL }; static Key keys[] = { /* modifier key function argument */ -- cgit v1.2.3