Move up TERM_TITLE

Still not received from Alacritty? This was working...
This commit is contained in:
John Mertz 2024-01-31 22:33:38 -07:00
parent ccd9238249
commit ac4859f7a9
1 changed files with 6 additions and 2 deletions

View File

@ -15,6 +15,12 @@ case $- in
*) return;; *) return;;
esac esac
# Load default $TERM as $TERM_TITLE if not provided by alacritty config
echo $TERM_TITLE
if [[ -z $TERM_TITLE ]]; then
TERM_TITLE="$TERM";
fi
# agetty is set to automatically log me in on tty1 # agetty is set to automatically log me in on tty1
# Automatically launch GUI on tty1 after login # Automatically launch GUI on tty1 after login
# I don't think that this is used anymore in Sericea, I think autologin is handled by SDDM # I don't think that this is used anymore in Sericea, I think autologin is handled by SDDM
@ -32,8 +38,6 @@ if [ -e ${HOME}/.dotfiles/bash/shell_config ]; then
source ${HOME}/.dotfiles/bash/shell_config source ${HOME}/.dotfiles/bash/shell_config
fi fi
if [[ -z $TERM_TITLE ]]; then
TERM_TITLE="$TERM";
fi fi