.bashrc: Move *_proxy earlier; I do not remember why.
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 5c9b4a0..50b8eac 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -9,6 +9,14 @@ fi
 
 export PERL5LIB="$HOME/perl5/lib/perl5/`uname -m`-linux-thread-multi:$HOME/perl5/lib/perl5";
 
+if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp \
+|| grep 2>/dev/null -q '^....: 00000000000000000000000000000000:0C38 00000000000000000000000000000000:0000 0A ' /proc/net/tcp6 \
+;then
+       export  http_proxy=http://127.0.0.1:3128/
+       export https_proxy=http://127.0.0.1:3128/
+       export   ftp_proxy=http://127.0.0.1:3128/
+fi
+
 # "$PS1" for interactive shells detection.
 if [ -n "$PS1" -a -z "$_home_short_dotbashrc" ];then
        # We permit later reinitialization by unsetting it.
@@ -202,6 +210,7 @@ export TZ=":/usr/share/zoneinfo/Europe/Prague"
 #export TZ=":/usr/share/zoneinfo/Canada/Eastern"
 export PYTHONUNBUFFERED=1
 export ASAN_OPTIONS=detect_leaks=0
+export GTK_OVERLAY_SCROLLING=0
 export MAKEFLAGS=
 cpus="`getconf _NPROCESSORS_ONLN`"
 if [ -n "$cpus" ];then
@@ -216,13 +225,6 @@ unset cpus
 # as Sun workaround as Debian misses: /etc/termcap
 # expects: $uname_p
 [ "$TERM" = vt220 -a "${uname_p%86}" != "$uname_p" ] && export TERM=linux
-if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp \
-|| grep 2>/dev/null -q '^....: 00000000000000000000000000000000:0C38 00000000000000000000000000000000:0000 0A ' /proc/net/tcp6 \
-;then
-       export  http_proxy=http://127.0.0.1:3128/
-       export https_proxy=http://127.0.0.1:3128/
-       export   ftp_proxy=http://127.0.0.1:3128/
-fi
 _selfabs=
 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$BASH_SOURCE"
 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$PWD/.bashrc"
@@ -351,6 +353,7 @@ function binutilscvscheckout { sourcewarecvscheckout binutils; }
 function uri_escape   { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape   $_;'; };
 function uri_unescape { perl -MURI::Escape -le '$_=<>;chomp;print uri_unescape $_;'; };
 alias fetchmail='n fetchmail'
+function sleep_until { (set -x;sleep $[$(date -d "$*" +%s)-$(date +%s)]); }
 function rpmsrclist
 {
        if [ -z "$*" ]; then
@@ -382,6 +385,7 @@ function valgrind {(set -e;unset valgrind;s=~/.python.valgrind;rm -f $s;cp -p /u
 function yumupdate {(ulimit -v unlimited;yum makecache;yum -y --skip-broken update "$@";);}
 function gitcommit { git commit -a -m .; }
 function gpg {(unset gpg; http_proxy= all_proxy= HTTP_PROXY= ALL_PROXY= gpg "$@"; );}
+function swap() {( set -ex;local TMPFILE=tmp.$$;[ $# = 2 ] && mv "$1" $TMPFILE && mv "$2" "$1" && mv $TMPFILE "$2" && echo done )}
 
 ulimit -S -c 0
 set +H