.ssh/config: +host1vps2
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 57623c7..9328b48 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -198,7 +198,7 @@ if [ -n "$PS1" ];then       # set only in interactive sessions
                export PS1='[bash]${LOGNAME}@MOCK-'"`cat /MOCK`"':${PWD}# '
        fi
        export PS1='\[\017\]'"$PS1"     # \017=std charmap
-       if [ "${SHELL#*/com.termux/}" = "$SHELL" ];then
+       if [ "${SHELL#*/com.termux/}" = "$SHELL" -a "${SSH_CLIENT#2a02:2b88:6:3b57::8f }" = "$SSH_CLIENT" ];then
                export PS1='\[\033%G\]'"$PS1"   # \033%G=utf-8
        fi
        # Do not: kbd_mode -u # utf-8
@@ -224,6 +224,9 @@ if [ -n "$cpus" ];then
        MAKEFLAGS="$MAKEFLAGS -j$[$cpus*1]"
 fi
 unset cpus
+if (which icecc && pidof iceccd) &>/dev/null;then
+       export CCACHE_PREFIX=icecc
+fi
 # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220
 # as Sun workaround as Debian misses: /etc/termcap
 # expects: $uname_p
@@ -388,6 +391,7 @@ function yumupdate {(ulimit -v unlimited;yum makecache;yum -y --skip-broken upda
 function gitcommit { git commit -a --allow-empty-message -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 )}
+alias gthumb='rm -rf ~/.cache/thumbnails/fail/;gthumb'
 
 ulimit -S -c 0
 set +H