12 lines
557 B
Plaintext
12 lines
557 B
Plaintext
# return if not running interactively
|
|
[[ $- != *i* ]] && return
|
|
|
|
command -v fish >/dev/null 2>&1 && grep fish /etc/shells >/dev/null 2>&1 && {
|
|
echo "This user is configured to use 'fish' as its primary shell."
|
|
echo " You may want to run 'chsh' and set your shell to $(grep fish /etc/shells | head -n1)'."
|
|
echo " Once that's done, simply run 'fish'."
|
|
echo " You can also try fish temporarily by running 'fish'. No 'chsh' commitment required."
|
|
echo " If you're in bash intentionally for some reason, then ignore this message."
|
|
}
|
|
. "$HOME/.cargo/env"
|