X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_zshrc;h=af7b3517d178bb0250438fe828498d5c3b6186de;hb=HEAD;hp=b995aef50d94b638569acf70d52bd9daff603982;hpb=8d80c9c947c1dd49c46258f52aefef6272dbc9c2;p=sugar.git diff --git a/dot-files/_zshrc b/dot-files/_zshrc index b995aef..4d0f974 100644 --- a/dot-files/_zshrc +++ b/dot-files/_zshrc @@ -2,7 +2,7 @@ bindkey -e stty -ixon ixany -stty erase '^H' +#stty erase '^H' # The following lines were added by compinstall zstyle :compinstall filename "$HOME/.zshrc" @@ -17,6 +17,7 @@ zstyle ':completion:*' use-cache true if [[ -d "$HOME/.zfunc" ]]; then fpath=($HOME/.zfunc $fpath) autoload -U ~/.zfunc/*(:t) + compinit function r() { local f f=(~/.zfunc/*(.)) @@ -277,11 +278,30 @@ alias w3mb="w3m -O UTF-8 -B" alias aria-emacs="ssh -f -X admin@aria.cielonegro.org emacsclient -c" alias pho-dev-boinc="ssh -f -X pho@pho.dev.office.ymir.co.jp env LANG=C /home/pho/var/BOINC/run_manager" -if [ $(hostname) = "aria.cielonegro.org" ]; then +if [[ $(hostname) = "aria.cielonegro.org" ]]; then alias unstuff='open -a StuffIt\ Expander.app' alias pa='open -a NiseRingo.app' alias heboris='open /Applications/HeborisUEMac/exe/Heboris\ OpenGL.app' alias hengband='open ~/Applications/hengband*/Hengband*' + +elif [[ $(hostname) = "yukari.cielonegro.org" ]]; then + function safari () { + local -a args + for arg in $@; do + args=(${args[@]} $(printf %q "$arg")) + done + ssh kurumi open -a Safari ${args[@]} + } + function mfirefox () { + local -a args + for arg in $@; do + args=(${args[@]} $(printf %q "$arg")) + done + ssh kurumi open -a Firefox ${args[@]} + } + function mdock () { + ssh kurumi open -a Dock + } fi if [[ $(uname) = "Darwin" ]]; then @@ -323,6 +343,27 @@ function osname () { esac } +function _start_gpg_agent () { + if ! which gpg-agent >&/dev/null; then + # gpg-agent is not present. + return + fi + + if gpg-connect-agent /bye >&/dev/null; then + # gpg-agent is already running. + if [[ -f "${HOME}/.gpg-agent-info" ]]; then + . "${HOME}/.gpg-agent-info" + export GPG_AGENT_INFO + fi + else + # gpg-agent is not running yet. + eval $(gpg-agent --daemon --write-env-file "${HOME}/.gpg-agent-info") + fi + + GPG_TTY=$(tty) + export GPG_TTY +} + if _we_are_in_gnu_screen; then # When we are in a GNU Screen session... @@ -345,3 +386,5 @@ fi if which ssh-agent-manager >/dev/null 2>&1; then eval `ssh-agent-manager -s` fi + +_start_gpg_agent