aboutsummaryrefslogtreecommitdiffstats
path: root/.w3m/cgi-bin/restore_session.cgi
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-12-10 07:34:35 +0000
committerterminaldweller <thabogre@gmail.com>2022-12-10 07:34:35 +0000
commitaf89305dfee7222bdbbdc8b9572c9c80575541ad (patch)
tree93f241e61b671d3a8224db050025f65f9caf334b /.w3m/cgi-bin/restore_session.cgi
parentupdate (diff)
downloadscripts-af89305dfee7222bdbbdc8b9572c9c80575541ad.tar.gz
scripts-af89305dfee7222bdbbdc8b9572c9c80575541ad.zip
update
Diffstat (limited to '')
-rwxr-xr-x.w3m/cgi-bin/restore_session.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/.w3m/cgi-bin/restore_session.cgi b/.w3m/cgi-bin/restore_session.cgi
index 4e30311..2262211 100755
--- a/.w3m/cgi-bin/restore_session.cgi
+++ b/.w3m/cgi-bin/restore_session.cgi
@@ -29,7 +29,7 @@ mkdir -p "$HOME/.w3m/bin"
RESTORE_SESSSION="$HOME/.w3m/bin/w3mlastsession"
# add shell header
echo "#!/usr/bin/env sh" > "$RESTORE_SESSSION"
-echo "torsocks w3m -graph \\" >> "$RESTORE_SESSSION"
+echo "proxychains4 -q -f ~/proxies/ice/proxychains.conf w3m -o auto_image=FALSE -graph \\" >> "$RESTORE_SESSSION"
# remove dupes without sorting, add -N flag at beginning and append trailing slash to each url
awk '!x[$0]++' "$HOME/.w3m/RestoreSession.txt" | while read -r line ; do echo "-N '$line' \\" >> "$RESTORE_SESSSION" ; done
# echo "2>/dev/null" >> "$RESTORE_SESSSION"