From 8410ef35533be3ea3cd2f4ca485eb69247165f94 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Mon, 4 Sep 2023 07:52:45 +0530 Subject: [PATCH] ~/.profile: was checking for fish twice; fixed --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index 1cd4cdd..b704c2a 100644 --- a/.profile +++ b/.profile @@ -1,5 +1,5 @@ if getent passwd $LOGNAME | cut -d: -f7 | grep fish; then source $HOME/.config/fish/config.fish -elif getent passwd $LOGNAME | cut -d: -f7 | grep fish; then +elif getent passwd $LOGNAME | cut -d: -f7 | grep bash; then source $HOME/.bashrc fi