blob: 5a113529d70963d658834dc12630bf3412df8ef2 (
plain)
1
2
3
4
5
6
7
8
|
xcape -e "Control_L=Escape"
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
ssh-agent > ~/.ssh-agent-thing
fi
if [[ "$SSH_AGENT_PID" == "" ]]; then
eval "$(<~/.ssh-agent-thing)"
fi
|