From 366c8aee65b781ebd815c4e4a2a5926152ea3eac Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 14 Jul 2020 10:38:52 +0100 Subject: [PATCH] Add OSX specifics --- bash/.bash_profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bash/.bash_profile b/bash/.bash_profile index 8c6a31f..dfecc68 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -11,4 +11,10 @@ export LANG=en_GB.UTF-8 export EDITOR=nano export VISUAL=nano +# OSX Specific envs +if [ $(uname) == "Darwin" ]; then + # Shhh Catlina, we don't care! + export BASH_SILENCE_DEPRECATION_WARNING=1 +fi + export PS1="\[\e[0;90m\][\[\e[0;37m\]\u\[\e[0;37m\]@\[\e[0;37m\]\H\[\e[0;90m\]] \[\e[0;90m\](\[\e[0;37m\]\W\[\e[0;90m\]) \[\e[0;37m\]\$\[\e[0m\] "