From 4b0ef5bf1644520bcec05a7b2f59d6787eb616f8 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 22 Apr 2021 10:29:35 -0700 Subject: chore(refactor): explicit definition of useful interfaces --- sys/cmd/dwm/util.c | 2 +- sys/cmd/term/config.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/cmd') diff --git a/sys/cmd/dwm/util.c b/sys/cmd/dwm/util.c index 445d479..c64e652 100644 --- a/sys/cmd/dwm/util.c +++ b/sys/cmd/dwm/util.c @@ -35,7 +35,7 @@ getparentprocess(pid_t p) uint v = 0; #if defined(__linux__) - Stream *f; + io·Stream *f; char buf[256]; snprintf(buf, sizeof(buf) - 1, "/proc/%u/stat", (unsigned)p); diff --git a/sys/cmd/term/config.h b/sys/cmd/term/config.h index 1e4603a..f638e8a 100644 --- a/sys/cmd/term/config.h +++ b/sys/cmd/term/config.h @@ -6,8 +6,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -// static char *font = "consolas:pixelsize=16:antialias=true"; -static char *font = "FiraCode:pixelsize=16:antialias=true"; +static char *font = "consolas:pixelsize=16:antialias=true"; static int borderpx = 2; /* -- cgit v1.2.1