Skip to content

Instantly share code, notes, and snippets.

@mirakui
Created May 11, 2010 03:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mirakui/396902 to your computer and use it in GitHub Desktop.
Save mirakui/396902 to your computer and use it in GitHub Desktop.
Pops up a growl notification when a command spends over 5 seconds
# source: http://d.hatena.ne.jp/umezo/20100508/1273332857
local COMMAND=""
local COMMAND_TIME=""
function precmd() {
if [ "$COMMAND_TIME" -ne "0" ] ; then
local d=`date +%s`
d=`expr $d - $COMMAND_TIME`
if [ "$d" -ge "5" ] ; then
COMMAND="$COMMAND "
growlnotify -t "${${(s: :)COMMAND}[1]}" -m "$COMMAND"
fi
fi
COMMAND="0"
COMMAND_TIME="0"
}
function preexec () {
COMMAND="${1}"
if [ "`perl -e 'print($ARGV[0]=~/ssh|^vi/)' $COMMAND`" -ne 1 ] ; then
COMMAND_TIME=`date +%s`
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment