1
0
Fork 0

~/.profile: was checking for fish twice; fixed

This commit is contained in:
Pratham Patel 2023-09-04 07:52:45 +05:30
parent 7e69c12356
commit 8410ef3553
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 1 additions and 1 deletions

View File

@ -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