More MacOS fixes.

This commit is contained in:
David Tomaschik
2018-01-26 09:39:38 -08:00
parent 89ee4ce390
commit db007ad604

View File

@@ -8,10 +8,13 @@ alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo
alias luksFormat='cryptsetup luksFormat -s 512 -c aes-xts-plain64 -h sha256 -i 15000' alias luksFormat='cryptsetup luksFormat -s 512 -c aes-xts-plain64 -h sha256 -i 15000'
# Colors # Colors
alias ls='ls --color=auto' if [ `uname` != 'Darwin' ] ; then
alias grep='grep --color=auto' # Should have a better way to check for GNU versions
alias egrep='egrep --color=auto' alias ls='ls --color=auto'
alias fgrep='fgrep --color=auto' alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
fi
# Easy upgrade # Easy upgrade
alias dist-upgrade="sudo sh -c 'apt-get update && apt-get -y dist-upgrade'" alias dist-upgrade="sudo sh -c 'apt-get update && apt-get -y dist-upgrade'"