diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2023-02-12 17:06:17 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2023-02-12 17:06:17 +0100 |
commit | d42be4aae613212561e8b0e608ca313be5d89330 (patch) | |
tree | 85b00e66960b553712d3a92557cd6482c00ce6e6 /pinentry-dmenu | |
parent | c9d032760c886d5b639df15e50ac8b0636cb0524 (diff) |
2023 update
Diffstat (limited to 'pinentry-dmenu')
-rw-r--r-- | pinentry-dmenu/config.h | 19 | ||||
-rw-r--r-- | pinentry-dmenu/config.mk | 36 |
2 files changed, 0 insertions, 55 deletions
diff --git a/pinentry-dmenu/config.h b/pinentry-dmenu/config.h deleted file mode 100644 index 8e5d90a..0000000 --- a/pinentry-dmenu/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* 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 deleted file mode 100644 index 94b1542..0000000 --- a/pinentry-dmenu/config.mk +++ /dev/null @@ -1,36 +0,0 @@ -# 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 |