URI: 
       implementing downloading. - surf - [fork] surf browser, a WebKit based browser
  HTML git clone git@git.drkhsh.at/surf.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit aadcd5b3f0afadfffecfa19f56512c33e136b7ab
   DIR parent 7fcf7450925295022a94611f5d9d07694e93ec9e
  HTML Author: Enno Boland (tox) <tox@s01.de>
       Date:   Mon, 24 May 2010 21:23:39 +0200
       
       implementing downloading.
       Diffstat:
         M config.def.h                        |      10 +++++++++-
       
       1 file changed, 9 insertions(+), 1 deletion(-)
       ---
   DIR diff --git 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 } },