summaryrefslogtreecommitdiff
path: root/.config/uzbl/scripts/download.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/uzbl/scripts/download.sh')
-rwxr-xr-x.config/uzbl/scripts/download.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/.config/uzbl/scripts/download.sh b/.config/uzbl/scripts/download.sh
deleted file mode 100755
index c8eb6ba..0000000
--- a/.config/uzbl/scripts/download.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# just an example of how you could handle your downloads
-# try some pattern matching on the uri to determine what we should do
-
-# Some sites block the default wget --user-agent..
-GET="wget --user-agent=Firefox"
-
-dest="$HOME"
-url="$8"
-
-http_proxy="$9"
-export http_proxy
-
-test "x$url" = "x" && { echo "you must supply a url! ($url)"; exit 1; }
-
-# only changes the dir for the $get sub process
-if echo "$url" | grep -E '.*\.torrent' >/dev/null;
-then
- ( cd "$dest"; eval "$GET" "$url")
-else
- ( cd "$dest"; eval "$GET" "$url")
-fi