flocon/dot_bashrc

15 lines
486 B
Text
Raw Normal View History

2023-09-20 16:16:15 +00:00
#
# ~/.bashrc
#
# make sure ssh related variables are available in non-interactive sessions (useful for emacs' exec-path-from-shell)
[[ -f "$HOME/.keychain/$HOSTNAME-sh" ]] && source "$HOME/.keychain/$HOSTNAME-sh"
2024-02-01 12:10:28 +00:00
eval $(keychain -q --eval id_ed25519)
2023-09-20 16:16:15 +00:00
# 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