Skip to content

Instantly share code, notes, and snippets.

@bricewge
Created June 3, 2020 13:34
Show Gist options
  • Save bricewge/4a097a3f91f6e422af1e55ee46b1d68e to your computer and use it in GitHub Desktop.
Save bricewge/4a097a3f91f6e422af1e55ee46b1d68e to your computer and use it in GitHub Desktop.
Start IceCat proxying trough Tor
profile=/tmp/profile
mkdir "$profile" && cat <<EOF > "$profile"/prefs.js
user_pref("browser.startup.homepage", "https://check.torproject.org/");
user_pref("network.proxy.socks", "localhost");
user_pref("network.proxy.socks_port", 9050);
user_pref("network.proxy.type", 1);
EOF
icecat --safe-mode --profile "$profile"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment