aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/term
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-06 19:28:06 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-06 19:28:06 -0700
commit186fe25ab798fe559be242dbe2eaff8e553c4e06 (patch)
tree44c3bbf82b188cf160b093082cc6f5b89724cebb /sys/cmd/term
parent20b38eb32bd4118b283f791db35d06c559008118 (diff)
checkin: before adding swallow
Diffstat (limited to 'sys/cmd/term')
-rw-r--r--sys/cmd/term/config.h4
-rw-r--r--sys/cmd/term/rules.mk2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/cmd/term/config.h b/sys/cmd/term/config.h
index 81b11b0..fcbe775 100644
--- a/sys/cmd/term/config.h
+++ b/sys/cmd/term/config.h
@@ -6,7 +6,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "Hack:pixelsize=14:antialias=true:autohint=true";
+static char *font = "consolas:pixelsize=14:antialias=true";
static int borderpx = 2;
/*
@@ -95,7 +95,7 @@ char *termname = "term-256color";
uint tabspaces = 4;
/* bg opacity */
-float alpha = 0.85;
+float alpha = 0.95;
/* Terminal colors (16 first used in escape sequence) */
static char *colorname[] = {
diff --git a/sys/cmd/term/rules.mk b/sys/cmd/term/rules.mk
index 1b0fae3..55e85c3 100644
--- a/sys/cmd/term/rules.mk
+++ b/sys/cmd/term/rules.mk
@@ -2,7 +2,7 @@ include share/push.mk
# Iterate through subdirectory tree
# Local sources
-SRCS_$(d) := $(d)/term.c $(d)/x.c $(d)/util.c
+SRCS_$(d) := $(d)/term.c $(d)/x.c #$(d)/util.c
BINS_$(d) := $(d)/term
include share/paths.mk