2022-04-16 19:54:07 +00:00
|
|
|
# vim: ft=sh
|
|
|
|
|
2024-02-01 05:02:32 +00:00
|
|
|
# Get last run command
|
|
|
|
function last_command {
|
|
|
|
local h="$(history 1)";
|
|
|
|
echo "${h##*([[:space:])+([[:digit:]])+([[:space:]])}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Configure PATH
|
|
|
|
source "$HOME/.dotfiles/bash/path"
|
|
|
|
|
2022-04-16 19:54:07 +00:00
|
|
|
# If not running interactively, don't do anything
|
|
|
|
case $- in
|
|
|
|
*i*) ;;
|
2023-09-05 16:45:45 +00:00
|
|
|
*) return;;
|
2022-04-16 19:54:07 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# agetty is set to automatically log me in on tty1
|
|
|
|
# Automatically launch GUI on tty1 after login
|
2024-02-01 05:32:04 +00:00
|
|
|
# I don't think that this is used anymore in Sericea, I think autologin is handled by SDDM
|
|
|
|
# Still, it does not hurt for later distrohopping
|
2023-02-24 01:24:59 +00:00
|
|
|
if [ "$(tty)" == '/dev/tty1' ] && [ ! "$SSH_TTY" ]; then
|
2024-02-01 05:32:04 +00:00
|
|
|
source "${HOME}/.dotfiles/bash/bash_login"
|
2023-02-24 01:24:59 +00:00
|
|
|
LAST_GUI=$(cat "${HOME}/.spool/last_login_gui" 2>/dev/null)
|
2022-05-27 04:34:32 +00:00
|
|
|
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
|
|
|
|
|
2024-02-01 05:16:09 +00:00
|
|
|
# Shell configuration (history, functionality, etc.)
|
|
|
|
if [ -e ${HOME}/.dotfiles/bash/shell_config ]; then
|
2024-02-01 05:32:15 +00:00
|
|
|
source ${HOME}/.dotfiles/bash/shell_config
|
2022-04-16 19:54:07 +00:00
|
|
|
fi
|
|
|
|
|
2024-01-31 03:25:33 +00:00
|
|
|
if [[ -z $TERM_TITLE ]]; then
|
|
|
|
TERM_TITLE="$TERM";
|
|
|
|
fi
|
|
|
|
|
2022-04-16 19:54:07 +00:00
|
|
|
|
|
|
|
# Load aliases
|
2023-02-24 01:24:59 +00:00
|
|
|
if [ -f ${HOME}/.dotfiles/bash/bash_aliases ]; then
|
|
|
|
. "${HOME}/.dotfiles/bash/bash_aliases"
|
2022-04-16 19:54:07 +00:00
|
|
|
fi
|
|
|
|
|
2024-02-01 04:53:28 +00:00
|
|
|
# Perl
|
|
|
|
eval "$(plenv init -)"
|
|
|
|
source ${HOME}/.dotfiles/bash/plenv-path.sh
|
2022-11-04 15:12:23 +00:00
|
|
|
|
2022-12-13 03:44:24 +00:00
|
|
|
if [ -f "/run/.containerenv" ]; then
|
2023-02-24 01:24:59 +00:00
|
|
|
source "$HOME/.dotfiles/bash/bashrc.distrobox"
|
2022-11-05 01:52:19 +00:00
|
|
|
else
|
2023-02-24 01:24:59 +00:00
|
|
|
source "$HOME/.dotfiles/bash/bashrc.host"
|
2022-11-05 01:52:19 +00:00
|
|
|
fi
|
2023-01-09 03:52:24 +00:00
|
|
|
|
|
|
|
source "$HOME/.cargo/env"
|
2023-10-24 17:13:01 +00:00
|
|
|
source ~/perl5/perlbrew/etc/bashrc
|
|
|
|
. "$HOME/.cargo/env"
|
2024-01-31 04:54:18 +00:00
|
|
|
# Hide errors
|
|
|
|
clear
|
2024-02-01 05:31:31 +00:00
|
|
|
# Set window title to last command
|
|
|
|
PS0='\[\e]0;$(last_command) - $TERM_TITLE\a\]'
|
|
|
|
|
|
|
|
# Update prompt
|
|
|
|
PROMPT_COMMAND="source ${HOME}/.dotfiles/bash/prompt.sh"
|
|
|
|
# Bell when prompt is returned to mark as urgent
|
|
|
|
PROMPT_COMMAND="$PROMPT_COMMAND;printf \"\a\""
|
|
|
|
# Append previous command to history immediately
|
|
|
|
PROMPT_COMMAND="$PROMPT_COMMAND;history -a"
|
2024-01-31 04:53:38 +00:00
|
|
|
if [[ -n "$(which fastfetch 2> /dev/null)" ]]; then
|
|
|
|
if [ -n $DISTROBOX ] && [ -e ${HOME}/.dotfiles/fastfetch/${DISTROBOX}.jsonc ]; then
|
|
|
|
fastfetch -C ${HOME}/.dotfiles/fastfetch/${DISTROBOX}.jsonc
|
2024-01-12 04:57:55 +00:00
|
|
|
else
|
2024-01-31 04:53:38 +00:00
|
|
|
fastfetch -C ${HOME}/.dotfiles/fastfetch/config.jsonc
|
2024-01-12 04:57:55 +00:00
|
|
|
fi
|
2023-10-29 20:39:01 +00:00
|
|
|
fi
|