summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Barrett <tom@tombarrett.xyz>2022-10-03 20:43:34 +0200
committerTom Barrett <tom@tombarrett.xyz>2022-10-03 20:43:34 +0200
commit9139d7dda4da7c4f4d78fd1514f182696056cbb1 (patch)
treec432bdddd999f00f62044c3abf4d48c7db25750b
parent727c5167e71e594d7f0987fd999adaf43868b910 (diff)
pinentry-dmenu
-rwxr-xr-xbuild2
-rw-r--r--pinentry-dmenu/config.h19
-rw-r--r--pinentry-dmenu/config.mk36
3 files changed, 57 insertions, 0 deletions
diff --git a/build b/build
index d317cec..fb83c4e 100755
--- a/build
+++ b/build
@@ -42,6 +42,8 @@ ln -s "$ST_DIR/st" "$HOME/bin"
PE_DIR="$HOME/src/pinentry-dmenu"
git clone https://git.tombarrett.xyz/git/pinentry-dmenu "$PE_DIR"
+cp "$RC_DIR/pinentry-dmenu/config*" "$PE_DIR"
+
make -C "$PE_DIR"
ln -s "$PE_DIR/pinentry-dmenu" "$HOME/bin"
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