From 24676d6a87d6e0fd0d03b002c8db464905aeb31c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 3 Mar 2018 17:43:01 -0800 Subject: [PATCH] Don't use GNU aliases on NetBSD either. --- dotfiles/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/aliases b/dotfiles/aliases index 800582f..a0b7a62 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' ] ; then +if [ `uname` != 'Darwin' && `uname` != 'NetBSD' ] ; then # Should have a better way to check for GNU versions alias ls='ls --color=auto' alias grep='grep --color=auto'