summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2010-05-24 21:23:39 +0200
committerEnno Boland (tox) <tox@s01.de>2010-05-24 21:23:39 +0200
commitaadcd5b3f0afadfffecfa19f56512c33e136b7ab (patch)
treebae0a6a191417268571f598b7a321776a3b0dad2
parent7fcf7450925295022a94611f5d9d07694e93ec9e (diff)
downloadsurf-aadcd5b3f0afadfffecfa19f56512c33e136b7ab.tar.gz
surf-aadcd5b3f0afadfffecfa19f56512c33e136b7ab.tar.bz2
surf-aadcd5b3f0afadfffecfa19f56512c33e136b7ab.zip
implementing downloading.
-rw-r--r--config.def.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 6d2c6cb..e1d4d86 100644
--- a/config.def.h
+++ b/config.def.h
@@ -8,13 +8,21 @@ static char *cookiefile = ".surf/cookies.txt";
static time_t sessiontime = 3600;
#define NOBACKGROUND 0
-#define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \
+#define SETPROP(p, q) { \
+ .v = (char *[]){ "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(p) { \
+ .v = (char *[]){ "/bin/sh", "-c", \
+ "prop=\"`xprop -id $1 $0 | cut -d '\"' -f 2 | tr -d '\\''`\";" \
+ "xterm -e \"wget --load-cookies '~/.surf/cookies.txt' '$prop';\"", \
+ p, winid, NULL } }
+
#define MODKEY GDK_CONTROL_MASK
static Key keys[] = {
/* modifier keyval function arg Focus */
+ { MODKEY, GDK_s, spawn, DOWNLOAD("_SURF_HILIGHT") },
{ MODKEY|GDK_SHIFT_MASK,GDK_r, reload, { .b = TRUE } },
{ MODKEY, GDK_r, reload, { .b = FALSE } },
{ MODKEY|GDK_SHIFT_MASK,GDK_p, print, { 0 } },