.dotfiles/bash/bash_profile

24 lines
741 B
Bash
Raw Normal View History

2022-04-16 19:54:07 +00:00
# vim: ft=sh
# If running bash (vs. login prompt)
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
THEME="dark"
# Perl junk to allow scripts to run for non-interactive sessions
PERL5LIB="${HOME}/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
PERL_LOCAL_LIB_ROOT="${HOME}/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
PERL_MB_OPT="--install_base \"${HOME}/perl5\""; export PERL_MB_OPT;
PERL_MM_OPT="INSTALL_BASE=${HOME}/perl5"; export PERL_MM_OPT;
2022-12-13 03:44:24 +00:00
if [ -f "/run/.containerenv" ]; then
2023-01-07 17:03:31 +00:00
source $HOME/.dotfiles/bash/bash_profile.distrobox
else
2023-01-07 17:03:31 +00:00
source $HOME/.dotfiles/bash/bash_profile.host
fi