11 lines
249 B
Text
11 lines
249 B
Text
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
# if running interactively, run fish
|
||
|
if [[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} ]]
|
||
|
then
|
||
|
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=''
|
||
|
exec fish $LOGIN_OPTION
|
||
|
fi
|