X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.def.h;h=da5a08f9a25de368f8d4344418d7a55d56269f75;hb=3e972f8e2a170f15e76fae7dc4de656963deb89b;hp=1cba4d78835f29512adcecd40701fd7112b8785d;hpb=0415175e10880585c765613af0bd43e02de87116;p=surf.git diff --git a/config.def.h b/config.def.h index 1cba4d7..da5a08f 100644 --- a/config.def.h +++ b/config.def.h @@ -2,19 +2,12 @@ static char *useragent = "Mozilla/5.0 (X11; U; Unix; en-US) " "AppleWebKit/537.15 (KHTML, like Gecko) Chrome/24.0.1295.0 " "Safari/537.15 Surf/"VERSION; -static char *progress = "#0000FF"; -static char *progress_untrust = "#FF0000"; -static char *progress_trust = "#00FF00"; -static char *progress_proxy = "#FFFF00"; -static char *progress_proxy_trust = "#66FF00"; -static char *progress_proxy_untrust = "#FF6600"; static char *stylefile = "~/.surf/style.css"; static char *scriptfile = "~/.surf/script.js"; static char *cookiefile = "~/.surf/cookies.txt"; static time_t sessiontime = 3600; static char *cafile = "/etc/ssl/certs/ca-certificates.crt"; static char *strictssl = FALSE; /* Refuse untrusted SSL connections */ -static int indicator_thickness = 2; /* Webkit default features */ static Bool enablespatialbrowsing = TRUE; @@ -35,10 +28,10 @@ static Bool hidebackground = FALSE; /* DOWNLOAD(URI, referer) */ #define DOWNLOAD(d, r) { \ .v = (char *[]){ "/bin/sh", "-c", \ - "st -e /bin/sh -c \"wget '$0'" \ - " --load-cookies ~/.surf/cookies.txt" \ - " --user-agent '$1'" \ - " --referer '$2' ; sleep 5\"", d, useragent, r, NULL \ + "st -e /bin/sh -c \"curl -J -O --user-agent '$1'" \ + " --referer '$2' -b $3 -c $3 '$0';" \ + " sleep 5;\"", \ + d, useragent, r, cookiefile, NULL \ } \ }