dmenu

customized build of dmenu, the dynamic menu for X
git clone git://src.adamsgaard.dk/dmenu
Log | Files | Refs | README | LICENSE

commit 57a49f411adbc029306450c1b6caaed4ee62793e
parent dbb31a6e629eaf1443bc532a542bb8a6b8b3729d
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu,  2 Jan 2020 09:56:36 +0100

Update font and copyright notice

Diffstat:
MLICENSE | 1+
Mconfig.h | 2+-
Mconfig.mk | 2+-
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -10,6 +10,7 @@ MIT/X Consortium License © 2010-2012 Connor Lane Smith <cls@lubutu.com> © 2014-2019 Hiltjo Posthuma <hiltjo@codemadness.org> © 2015-2019 Quentin Rameau <quinq@fifth.space> +© 2019-2020 Anders Damsgaard <anders@adamsgaard.dk> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/config.h b/config.h @@ -4,7 +4,7 @@ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "terminus:size=8" + "dina:size=9:antialias=false" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { diff --git a/config.mk b/config.mk @@ -16,7 +16,7 @@ XINERAMAFLAGS = -DXINERAMA FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) -#FREETYPEINC = $(X11INC)/freetype2 +FREETYPEINC = $(X11INC)/freetype2 # includes and libs INCS = -I$(X11INC) -I$(FREETYPEINC)