summaryrefslogtreecommitdiff
path: root/src/keyevents.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-05-22 15:58:27 +0200
committerDaniel Friesel <derf@finalrewind.org>2014-05-22 15:58:27 +0200
commit28053de1b28721e39a74e2190d75183c700acdc9 (patch)
treec1144f66f5c1b93421fef9a31a50ac94553ed023 /src/keyevents.c
parentbc13f70153cdad3e836a3c55d2a80fc85956d5d5 (diff)
do not depend on HOME being set
this introduces a bug in feh_wm_set_bg, which will be fixed in the next commit (only applies when run without HOME)
Diffstat (limited to 'src/keyevents.c')
-rw-r--r--src/keyevents.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/keyevents.c b/src/keyevents.c
index 97acb3e..83fc358 100644
--- a/src/keyevents.c
+++ b/src/keyevents.c
@@ -157,15 +157,14 @@ void init_keyevents(void) {
feh_set_kb(&keys.toggle_keep_vp, 0, XK_k, 0, 0, 0, 0);
home = getenv("HOME");
- if (!home)
- eprintf("No HOME in environment");
-
confhome = getenv("XDG_CONFIG_HOME");
if (confhome)
confpath = estrjoin("/", confhome, "feh/keys", NULL);
- else
+ else if (home)
confpath = estrjoin("/", home, ".config/feh/keys", NULL);
+ else
+ return;
conf = fopen(confpath, "r");