Created
June 3, 2020 13:34
-
-
Save bricewge/4a097a3f91f6e422af1e55ee46b1d68e to your computer and use it in GitHub Desktop.
Start IceCat proxying trough Tor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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