Modified config
This commit is contained in:
@@ -71,16 +71,11 @@ static const Layout layouts[] = {
|
|||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
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_cyan, "-sf", col_gray4, NULL };
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
//sets st as the default terminal
|
//sets st as the default terminal
|
||||||
static const char *termcmd[] = { "alacritty","-o","font.size=8", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
////volume controls
|
//volume controls
|
||||||
static const char *upvol[] = { "amixer", "-q", "set", "Master", "5%+", "unmute", NULL };
|
static const char *upvol[] = { "amixer", "-q", "set", "Master", "5%+", "unmute", NULL };
|
||||||
static const char *downvol[] = { "amixer", "-q", "set", "Master", "5%-", "unmute", NULL };
|
static const char *downvol[] = { "amixer", "-q", "set", "Master", "5%-", "unmute", NULL };
|
||||||
static const char *mutevol[] = { "amixer", "-q", "set", "Master", "toggle", NULL };
|
static const char *mutevol[] = { "amixer", "-q", "set", "Master", "toggle", NULL };
|
||||||
////Brightness Controls
|
|
||||||
static const char *brightup[] = { "/usr/bin/brightness", "+10", NULL};
|
|
||||||
static const char *brightdown[] = { "/usr/bin/brightness", "-10", NULL};
|
|
||||||
////Launches i3lock-fancy screen locker
|
|
||||||
static const char *browser[] = { "i3lock-fancy","-g", "-p", "-t What's The Password Mothafucka'", NULL };
|
|
||||||
|
|
||||||
static Key keys[] = {
|
static Key keys[] = {
|
||||||
/* modifier key function argument */
|
/* modifier key function argument */
|
||||||
@@ -113,9 +108,6 @@ static Key keys[] = {
|
|||||||
{ MODKEY, XK_F3, spawn, {.v = upvol } },
|
{ MODKEY, XK_F3, spawn, {.v = upvol } },
|
||||||
{ MODKEY, XK_F2, spawn, {.v = downvol } },
|
{ MODKEY, XK_F2, spawn, {.v = downvol } },
|
||||||
{ MODKEY, XK_F1, spawn, {.v = mutevol } },
|
{ MODKEY, XK_F1, spawn, {.v = mutevol } },
|
||||||
{ MODKEY, XK_F11, spawn, {.v = brightdown } },
|
|
||||||
{ MODKEY, XK_F12, spawn, {.v = brightup } },
|
|
||||||
{ MODKEY, XK_s, spawn, {.v = browser } },
|
|
||||||
TAGKEYS( XK_1, 0)
|
TAGKEYS( XK_1, 0)
|
||||||
TAGKEYS( XK_2, 1)
|
TAGKEYS( XK_2, 1)
|
||||||
TAGKEYS( XK_3, 2)
|
TAGKEYS( XK_3, 2)
|
||||||
|
|||||||
Reference in New Issue
Block a user