2022-10-27 20:14:14 -07:00
|
|
|
# shellcheck disable=SC1090,SC1091
|
|
|
|
|
2022-10-28 01:27:45 -07:00
|
|
|
# Prefer US English
|
|
|
|
export LANG="en_US"
|
|
|
|
|
2022-10-28 14:43:32 -07:00
|
|
|
### Fig / LC_ALL
|
2022-10-25 21:04:19 -07:00
|
|
|
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
|
2022-10-28 14:43:32 -07:00
|
|
|
if [[ "$(hostname)" != *'-minimal' ]]; then
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
fi
|
2022-10-25 21:04:19 -07:00
|
|
|
if [ -f "$HOME/.fig/shell/bashrc.pre.bash" ]; then
|
|
|
|
. "$HOME/.fig/shell/bashrc.pre.bash"
|
|
|
|
fi
|
2022-09-30 06:09:35 -07:00
|
|
|
fi
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
|
|
|
### ~/.profile
|
2022-09-30 06:09:35 -07:00
|
|
|
if [ -f "$HOME/.profile" ]; then
|
|
|
|
. "$HOME/.profile"
|
|
|
|
fi
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
|
|
|
### Settings
|
2022-10-27 20:14:14 -07:00
|
|
|
if command -v shopt >/dev/null; then
|
2022-09-30 06:52:29 -07:00
|
|
|
shopt -s globstar
|
|
|
|
shopt -s histappend
|
|
|
|
shopt -s checkwinsize
|
|
|
|
fi
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
2022-10-29 04:35:57 -07:00
|
|
|
### History
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
HISTCONTROL=ignoreboth
|
|
|
|
HISTSIZE=5000
|
|
|
|
HISTFILESIZE=5000
|
2022-10-29 04:35:57 -07:00
|
|
|
HISTFILE=~/.local/bash_history
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
2022-09-30 06:58:48 -07:00
|
|
|
# Prompt (on bash only)
|
2022-10-31 07:18:47 -07:00
|
|
|
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
|
2022-10-31 05:51:14 -07:00
|
|
|
if [[ "$(hostname)" != *'-minimal' ]]; then
|
|
|
|
# Add new line before prompt
|
2022-11-01 14:48:28 -07:00
|
|
|
# PROMPT_COMMAND="PROMPT_COMMAND=echo"
|
2022-09-30 06:58:48 -07:00
|
|
|
|
2022-10-31 05:51:14 -07:00
|
|
|
### Styled Terminal
|
|
|
|
case "$TERM" in
|
|
|
|
xterm* | rxvt* | Eterm | aterm | kterm | gnome* | alacritty)
|
|
|
|
PS1="\n \[\033[0;34m\]╭─\[\033[0;31m\]\[\033[0;37m\]\[\033[41m\] $OS_ICON \u \[\033[0m\]\[\033[0;31m\]\[\033[44m\]\[\033[0;34m\]\[\033[44m\]\[\033[0;30m\]\[\033[44m\] \w \[\033[0m\]\[\033[0;34m\] \n \[\033[0;34m\]╰ \[\033[1;36m\]\$ \[\033[0m\]"
|
|
|
|
;;
|
|
|
|
esac
|
2022-10-25 14:50:59 -07:00
|
|
|
|
2022-10-31 05:51:14 -07:00
|
|
|
### Directory Colors (https://github.com/trapd00r/LS_COLORS)
|
|
|
|
command -v gdircolors > /dev/null 2>&1 || gdircolors() { dircolors "$@"; }
|
|
|
|
if command -v gdircolors > /dev/null && [ -f "$HOME/.config/dircolors" ]; then
|
|
|
|
eval "$(gdircolors -b "$HOME/.config/dircolors")"
|
|
|
|
fi
|
2022-10-25 14:50:59 -07:00
|
|
|
fi
|
2022-09-26 19:46:23 -07:00
|
|
|
fi
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
2022-10-29 04:35:57 -07:00
|
|
|
### Bash Completions
|
2022-10-31 07:18:47 -07:00
|
|
|
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
|
2022-09-30 07:09:57 -07:00
|
|
|
### Google Cloud SDK
|
2022-10-27 20:14:14 -07:00
|
|
|
if command -v brew >/dev/null; then
|
|
|
|
if [ -f "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" ]; then
|
|
|
|
. "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc"
|
|
|
|
fi
|
2022-09-30 07:09:57 -07:00
|
|
|
fi
|
Update dotfiles/.config/bashtop/bashtop.cfg, dotfiles/.config/inkscape/palettes/flat-remix-palette.gpl, dotfiles/.config/qt5ct/qt5ct.conf, dotfiles/.config/tilix/schemes/Flat-Remix.json, dotfiles/.local/share/qt5ct/colors/flat-remix-dark.conf, dotfiles/.local/share/qt5ct/colors/flat-remix-light.conf, dotfiles/.local/share/qt5ct/qss/fusion-simple-scrollbar.qss, dotfiles/.bashrc, .gitattributes, dotfiles/.gitconfig, dotfiles/.zshrc, dotfiles/.local/p10k.zsh, dotfiles/.local/antigen.zsh, dotfiles/.local/fzf.zsh, dotfiles/.profile
2022-08-29 18:45:16 -07:00
|
|
|
|
2022-10-28 23:00:20 -07:00
|
|
|
### Java (asdf)
|
2022-10-29 04:35:57 -07:00
|
|
|
if [ -f "$HOME/.local/asdf/plugins/java/set-java-home.bash" ]; then
|
|
|
|
. "$HOME/.local/asdf/plugins/java/set-java-home.bash"
|
2022-10-25 19:45:43 -07:00
|
|
|
fi
|
2022-10-25 21:04:19 -07:00
|
|
|
|
|
|
|
### Fig
|
|
|
|
if [ -f "$HOME/.fig/shell/bashrc.post.bash" ]; then
|
|
|
|
. "$HOME/.fig/shell/bashrc.post.bash"
|
|
|
|
fi
|
2022-09-30 06:09:35 -07:00
|
|
|
fi
|