.dotfiles/bash/bashrc

101 lines
3.0 KiB
Bash
Raw Normal View History

2022-04-16 19:54:07 +00:00
# vim: ft=sh
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# agetty is set to automatically log me in on tty1
# Automatically launch GUI on tty1 after login
2022-08-23 16:46:08 +00:00
if [ "$(tty)" == '/dev/tty1' ] && [ ! $SSH_TTY ]; then
2022-05-27 21:07:55 +00:00
. ${HOME}/.dotfiles/bash/bash_login
LAST_GUI=`cat ${HOME}/.spool/last_login_gui 2>/dev/null`
if [ -f "${HOME}/.spool/last_login_gui" ]; then
${HOME}/scripts/${LAST_GUI}/start${LAST_GUI}.sh
2022-04-16 19:54:07 +00:00
fi
fi
# Setup editor
2022-08-23 16:47:03 +00:00
export EDITOR="flatpak run io.neovim.nvim"
2022-04-16 19:54:07 +00:00
# don't put duplicate lines or lines starting with space in the history.
shopt -s histappend
HISTCONTROL=ignoreboth
2022-12-13 03:44:24 +00:00
HISTFILE=${HOME}/.spool/bash_history
2022-04-16 19:54:07 +00:00
# append to the history file, don't overwrite it
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=500000
HISTFILESIZE=1000000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# enable programmable completion features
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
# Set window title to last command
PROMPT_COMMAND='echo -e -n "\033]2;$_\007"'
2022-04-16 19:54:07 +00:00
# Reconfigure prompt after each return
PROMPT_COMMAND="$PROMPT_COMMAND; source ${HOME}/.dotfiles/bash/prompt.sh"
# Bell when prompt is returned to mark as urgent
PROMPT_COMMAND="$PROMPT_COMMAND;printf \"\a\"; history -a"
2022-04-16 19:54:07 +00:00
# Enable color support if possible
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
fi
# Load aliases
if [ -f ~/.dotfiles/bash/bash_aliases ]; then
. ~/.dotfiles/bash/bash_aliases
2022-04-16 19:54:07 +00:00
fi
# Add snaps and flatpaks to path
#export XDG_DATA_DIRS="$XDG_DATA_DIRS:/usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/flatpak/exports/share"
# Perl configs
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-04-16 19:54:07 +00:00
# Android configs
JDK_HOME=/etc/java
STUDIO_JDK=/usr/lib/jvm/jre-openjdk
2022-04-16 19:54:07 +00:00
# Configure PATH
source "$HOME/.dotfiles/bash/path"
2022-04-16 19:54:07 +00:00
2022-11-04 22:35:26 +00:00
export LANG="C.UTF-8"
export LC_ALL="C.UTF-8"
export LC_CTYPE="C.UTF-8"
2022-04-16 19:54:07 +00:00
export LANGUAGE="en_US:en"
# terminal type
export TERM="xterm"
# Set initial title
echo -e -n "\033]2;Welcome to Bash\007"
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/bashrc.distrobox
2022-11-05 01:52:19 +00:00
else
2023-01-07 17:03:31 +00:00
source $HOME/.dotfiles/bash/bashrc.host
2022-11-05 01:52:19 +00:00
fi