summaryrefslogtreecommitdiff
path: root/pinentry-dmenu.c
diff options
context:
space:
mode:
authorMoritz Luedecke <ritze@skweez.net>2017-08-20 14:15:20 +0200
committerMoritz Luedecke <ritze@skweez.net>2017-08-20 14:15:20 +0200
commit53659c31e28654e2c16625150420fbbc5c7b0a52 (patch)
tree52fc319f59a3c0946c6c673f77e4ea3f244b2637 /pinentry-dmenu.c
parent46c871b744fa4d741996d0602fe4787f09e1832d (diff)
Set config path to ~/.gnupg/pinentry-dmenu.conf
Diffstat (limited to 'pinentry-dmenu.c')
-rw-r--r--pinentry-dmenu.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/pinentry-dmenu.c b/pinentry-dmenu.c
index 2243599..a80f981 100644
--- a/pinentry-dmenu.c
+++ b/pinentry-dmenu.c
@@ -7,6 +7,7 @@
#include <stdlib.h>
#include <string.h>
#include <strings.h>
+#include <pwd.h>
#include <time.h>
#include <unistd.h>
@@ -25,13 +26,13 @@
#include "pinentry/memory.h"
/* macros */
+#define CONFIG "/.gnupg/pinentry-dmenu.conf"
#define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \
&& MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
#define LENGTH(X) (sizeof X / sizeof X[0])
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
#define MINDESCLEN 8
-#define CONFIGPATH $HOME/.gnupg/pinentry-dmenu.conf
/* enums */
enum { SchemePrompt, SchemeNormal, SchemeSelect, SchemeDesc, SchemeLast }; /* color schemes */
@@ -564,8 +565,14 @@ pinentry_cmd_handler_t pinentry_cmd_handler = cmdhandler;
int
main(int argc, char *argv[]) {
Bool bval;
- int val;
+ int i, val;
const char *str;
+ char path[PATH_MAX];
+ struct passwd *pw = getpwuid(getuid());
+
+ i = strlen(pw->pw_dir);
+ strcpy(path, pw->pw_dir);
+ strcpy(&path[i], CONFIG);
config_t cfg;
config_setting_t *setting;
@@ -573,8 +580,8 @@ main(int argc, char *argv[]) {
config_init(&cfg);
/* Read the file. If there is an error, report it and exit. */
- if (!config_read_file(&cfg, "example.cfg")) {
- fprintf(stderr, "%s:%d - %s\n", config_error_file(&cfg),
+ if (config_read_file(&cfg, path)) {
+ if (config_lookup_string(&cfg, "asterisk", &str)) {
config_error_line(&cfg), config_error_text(&cfg));
config_destroy(&cfg);
return(EXIT_FAILURE);