Compare commits

..

No commits in common. "6ab007a849254110eec20758a1be52800a30e657" and "106be0e1ef46b2d92c22a8d4c9417379daf61d04" have entirely different histories.

1 changed files with 2 additions and 13 deletions

View File

@ -9,7 +9,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 0; /* 0 means bottom bar */
static const char *fonts[] = { "SauceCodePro Nerd Font Mono:size=10:antialias:true:autohint:true" };
static const char *fonts[] = { "SauceCodePro Nerd Font Mono:size=20:antialias:true:autohint:true" };
static const char color_black[] = "#1D2021";
static const char color_green[] = "#98971A";
static const char color_red[] = "#CC241D";
@ -66,8 +66,7 @@ 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 *volmute[] = { "/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL};
static const char *brightup[] = { "/usr/bin/brightnessctl", "set", "10%+", NULL};
static const char *brightdown[] = { "/usr/bin/brightnessctl", "set", "10%-", NULL};
@ -84,7 +83,6 @@ static Key keys[] = {
{ 0, 0x1008ff11, spawn, {.v = voldown } },
{ 0, 0x1008ff12, spawn, {.v = volmute } },
{ 0, 0x1008ff13, spawn, {.v = volup } },
{ 0, 0x1008ffb2, spawn, {.v = micmute } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
@ -117,15 +115,6 @@ static Key keys[] = {
TAGKEYS( XK_7, 6)
TAGKEYS( XK_8, 7)
TAGKEYS( XK_9, 8)
TAGKEYS( XK_ampersand, 0)
TAGKEYS( XK_eacute, 1)
TAGKEYS( XK_quotedbl, 2)
TAGKEYS( XK_apostrophe, 3)
TAGKEYS( XK_parenleft, 4)
TAGKEYS( XK_minus, 5)
TAGKEYS( XK_egrave, 6)
TAGKEYS( XK_underscore, 7)
TAGKEYS( XK_ccedilla, 8)
{ MODKEY|ShiftMask, XK_q, quit, {0} },
};