From f77ed125de8c18612ed5e39dbddf0d91d70fda3d Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 3 Mar 2018 17:50:59 -0800 Subject: [PATCH] Fix alias change. Doh. --- dotfiles/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/aliases b/dotfiles/aliases index a0b7a62..969ab0b 100755 --- a/dotfiles/aliases +++ b/dotfiles/aliases @@ -8,7 +8,7 @@ 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' # Colors -if [ `uname` != 'Darwin' && `uname` != 'NetBSD' ] ; then +if [ `uname` != 'Darwin' -a `uname` != 'NetBSD' ] ; then # Should have a better way to check for GNU versions alias ls='ls --color=auto' alias grep='grep --color=auto'