1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Use gittower in preference to GitX for gitx alias

This commit is contained in:
Holger Just 2018-08-29 11:25:01 +02:00
parent bf9cc0d7af
commit ef3a6f2644

View File

@ -73,7 +73,13 @@ case `uname` in
export PG_DATA=/usr/local/var/postgres
gitx() { open -a GitX $@; }
gitx() {
if [ -x /usr/local/bin/gittower ]; then
/usr/local/bin/gittower $@
else
open -a GitX $@
fi
}
alias gx=gitx
pdfman() { man -t $1 | open -a /Applications/Skim.app -f; }