X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=b102708faeafbe320c9843b69b32ee3b2ffe0982;hp=5c9b4a055481b96dedb66675db1c9797e3b91b5c;hb=2ce026f0312d6ae8136c8e662a671d2c4969650e;hpb=cbe38aac1a2fbde6d16d0720655d6a5adc3d07b1 diff --git a/.bashrc b/.bashrc index 5c9b4a0..b102708 100644 --- a/.bashrc +++ b/.bashrc @@ -202,6 +202,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 @@ -351,6 +352,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 +384,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