about summary refs log tree commit diff
path: root/config.def.h
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-11-20 11:53:29 +0100
committerChristoph Lohmann <20h@r-36.net>2012-11-20 11:53:29 +0100
commita7ea753f93837ee5eed1e2c80b6642d08e6143e0 (patch)
tree4de7acd23196689799f62c0e8ae0474b84db6bae /config.def.h
parentUseragent strings do not count anymore. This is adding some text so every (diff)
downloadsurf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.tar.gz
surf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.tar.bz2
surf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.zip
Add a referer argument to the DOWNLOAD macro. Some sites need this. Thanks
Hiltjo Posthuma!
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index d227b80..b71f9c1 100644
--- a/config.def.h
+++ b/config.def.h
@@ -20,16 +20,22 @@ static int   indicator_thickness = 2;
 static Bool spatialbrowsing = TRUE;
 static Bool hidebackground  = FALSE;
 
-#define SETPROP(p, q)     { .v = (char *[]){ "/bin/sh", "-c", \
+#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \
 	"prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
 	"xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
 	p, q, winid, NULL } }
-#define DOWNLOAD(d) {			  \
+
+/* DOWNLOAD(URI, referer) */
+#define DOWNLOAD(d, r) { \
 	.v = (char *[]){ "/bin/sh", "-c", \
 	"xterm -e \"wget '$0' \
 --load-cookies ~/.surf/cookies.txt \
---user-agent '$1' ; sleep 5\"", d, useragent, NULL } }
+--user-agent '$1' \
+--referer '$2' ; sleep 5\"", d, useragent, NULL } }
+
 #define MODKEY GDK_CONTROL_MASK
+
+/* hotkeys */
 static Key keys[] = {
     /* modifier	            keyval      function    arg             Focus */
     { MODKEY|GDK_SHIFT_MASK,GDK_r,      reload,     { .b = TRUE } },