diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-03-06 10:16:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-03-06 10:16:13 +0100 |
commit | 3c72c568d7a6ce40e052c29a16e1ec4805a09335 (patch) | |
tree | 33692dfa92a153b82b6a3906b379145fafe6d1b5 | |
parent | 8c6aba6e8f45166b86c4524167d47f5a5371cb8d (diff) |
zshrc: Disable proxy by default, add aliases to enable it
-rw-r--r-- | etc/.zshrc | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -72,10 +72,6 @@ if (( EUID != 0)) { export MAKEFLAGS=j$(grep -c '^processor' /proc/cpuinfo) -if [[ -e /sys/class/net/vpn ]] { - export http_proxy='http://10.200.200.2:8080/' -} - if [[ -n ${commands[clang]} ]] { export CC=clang } @@ -400,6 +396,9 @@ alias x='unsetopt bg_nice; startx &! exit' alias xxz='xz -v -9 -M 800M' +alias wprox='http_proxy=http://10.200.200.2:8080/' +alias eprox='export http_proxy=http://10.200.200.2:8080/' + # }}} if [[ ${distro} == debian ]] { #{{{ |