SSHKeychain 〜風に語りて part II

私はMac OS XX11なときは、~/.xinitrcで

eval `ssh-agent -s`
if [ "X${SSH_AGENT_PID}" != "X" ]; then
    if [ -e ${HOME}/.ssh/id_rsa ]; then
        echo '' | ssh-add ${HOME}/.ssh/id_rsa
    fi
fi
xterm -ls -geometry 80x5+5+5 & 
   :   :   :
quartz-wm &
   :   :   :

とかしてるです。