aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/term/config.h
diff options
context:
space:
mode:
authorNicholas Noll <nnoll523@gmail.com>2020-06-26 16:11:15 +0200
committerNicholas Noll <nnoll523@gmail.com>2020-06-26 16:11:15 +0200
commit63424e9709751108c564f884cb4fdffab77c933d (patch)
tree6d9eb9e94e2fc553852ffce39f43201c005151c1 /sys/cmd/term/config.h
parent641ea1557ccc0099ef5471a16503938bd00924af (diff)
patched term to allow for arbitrary sizes
Diffstat (limited to 'sys/cmd/term/config.h')
-rw-r--r--sys/cmd/term/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/cmd/term/config.h b/sys/cmd/term/config.h
index 1002e17..4cd1a09 100644
--- a/sys/cmd/term/config.h
+++ b/sys/cmd/term/config.h
@@ -95,7 +95,7 @@ char *termname = "term-256color";
uint tabspaces = 4;
/* bg opacity */
-float alpha = 0.95;
+float alpha = 0.98;
/* Terminal colors (16 first used in escape sequence) */
static char *colorname[] = {
@@ -196,8 +196,8 @@ static Shortcut shortcuts[] = {
{ ControlMask, XK_Print, toggleprinter, {.i = 0} },
{ ShiftMask, XK_Print, printscreen, {.i = 0} },
{ XK_ANY_MOD, XK_Print, printsel, {.i = 0} },
- { TERMMOD, XK_Prior, zoom, {.f = +1} },
- { TERMMOD, XK_Next, zoom, {.f = -1} },
+ { TERMMOD, XK_plus, zoom, {.f = +1} },
+ { ControlMask, XK_minus, zoom, {.f = -1} },
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
{ TERMMOD, XK_V, clippaste, {.i = 0} },