diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2022-10-03 20:43:34 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2022-10-03 20:43:34 +0200 |
commit | 9139d7dda4da7c4f4d78fd1514f182696056cbb1 (patch) | |
tree | c432bdddd999f00f62044c3abf4d48c7db25750b /pinentry-dmenu | |
parent | 727c5167e71e594d7f0987fd999adaf43868b910 (diff) |
pinentry-dmenu
Diffstat (limited to 'pinentry-dmenu')
-rw-r--r-- | pinentry-dmenu/config.h | 19 | ||||
-rw-r--r-- | pinentry-dmenu/config.mk | 36 |
2 files changed, 55 insertions, 0 deletions
diff --git a/pinentry-dmenu/config.h b/pinentry-dmenu/config.h new file mode 100644 index 0000000..8e5d90a --- /dev/null +++ b/pinentry-dmenu/config.h @@ -0,0 +1,19 @@ +/* See LICENSE file for copyright and license details. */ +/* Default settings; can be overriden by command line. */ + +static int bottom = 0; +static int embedded = 0; +static int minpwlen = 32; +static int mon = -1; + +static const char *asterisk = "*"; +static const char *fonts[] = { + "monospace:size=10" +}; +static const char *prompt = NULL; +static const char *colors[SchemeLast][4] = { + [SchemePrompt] = { "#bbbbbb", "#222222" }, + [SchemeNormal] = { "#bbbbbb", "#222222" }, + [SchemeSelect] = { "#eeeeee", "#005577" }, + [SchemeDesc] = { "#bbbbbb", "#222222" } +}; diff --git a/pinentry-dmenu/config.mk b/pinentry-dmenu/config.mk new file mode 100644 index 0000000..94b1542 --- /dev/null +++ b/pinentry-dmenu/config.mk @@ -0,0 +1,36 @@ +# Pinentry settings +DATE = $$(date +'%B %Y') +VERSION = 0.1 +BUGREPORT = https:\/\/github.com\/ritze\/pinentry-dmenu + +# Paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# Xinerama, comment if you don't want it +XINERAMALIBS = -lXinerama +XINERAMAFLAGS = -DXINERAMA + +# Freetype +FREETYPELIBS = -lfontconfig -lXft +FREETYPEINC = /usr/include/freetype2 +# OpenBSD (uncomment) +# FREETYPEINC = ${X11INC}/freetype2 +# ADDINCS = -I/usr/local/include +# ADDLIBS = -L/usr/local/lib + +# Includes and libs +INCS = -I${X11INC} -I${FREETYPEINC} ${ADDINCS} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${ADDLIBS} + + +# Flags +CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -DPACKAGE_VERSION=\"${VERSION}\" -DPACKAGE_BUGREPORT=\"${BUGREPORT}\" +CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +LDFLAGS = -s ${LIBS} + +# Compiler and linker +CC = cc |