better config

This commit is contained in:
TiynGER 2020-03-29 14:54:13 +02:00
parent b9a4b0754a
commit 65c3121c65
1 changed files with 6 additions and 0 deletions

View File

@ -82,6 +82,9 @@ char *termname = "xterm-256color";
*/
unsigned int tabspaces = 8;
/*bg opacity*/
float alpha = 0.92;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
@ -183,6 +186,9 @@ static Shortcut shortcuts[] = {
{ MODKEY, XK_v, clippaste, {.i = 0} },
{ MODKEY, XK_p, selpaste, {.i = 0} },
{ MODKEY, XK_Num_Lock, numlock, {.i = 0} },
{ MODKEY, XK_k, kscrollup, {.i = 1} },
{ MODKEY, XK_j, kscrolldown, {.i = 1} },
{ TERMMOD, XK_U, zoom, {.f = +1} },
{ TERMMOD, XK_U, zoom, {.f = +1} },
{ TERMMOD, XK_I, zoom, {.f = -1} },
};