summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h
index a8a4a7b..f858f5a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -61,12 +61,11 @@ static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
}
/* DOWNLOAD(URI, referer) */
-#define DOWNLOAD(d, r) { \
- .v = (const char *[]){ "/bin/sh", "-c", \
- "st -e /bin/sh -c \"curl -g -L -J -O --user-agent '$1'" \
- " --referer '$2' -b $3 -c $3 '$0';" \
- " sleep 5;\"", \
- d, useragent, r, cookiefile, NULL \
+#define DOWNLOAD(u, r) { \
+ .v = (const char *[]){ "st", "-e", "/bin/sh", "-c",\
+ "curl -g -L -J -O -A \"$1\" -b \"$2\" -c \"$2\"" \
+ " -e \"$3\" \"$4\"; read", \
+ "surf-download", useragent, cookiefile, r, u, NULL \
} \
}