diff options
-rw-r--r-- | net:sweethome/host:prunelle/Aliases.zsh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/net:sweethome/host:prunelle/Aliases.zsh b/net:sweethome/host:prunelle/Aliases.zsh index cc1173a..7c2a390 100644 --- a/net:sweethome/host:prunelle/Aliases.zsh +++ b/net:sweethome/host:prunelle/Aliases.zsh @@ -7,6 +7,10 @@ ## You are encouraged to use, modify, and redistribute ## these files with or without this notice. ## -a port='sudo port' -a ls='ls -FG' -a aless='open -a /Applications/DarwinPorts/AquaLess.app' + +if [ "$OSTYPE" == "Darwin" ] +then + a port='sudo port' + a ls='ls -FG' + a aless='open -a /Applications/DarwinPorts/AquaLess.app' +fi |