Move up TERM_TITLE
Still not received from Alacritty? This was working...
This commit is contained in:
parent
ccd9238249
commit
ac4859f7a9
|
@ -15,6 +15,12 @@ case $- in
|
|||
*) return;;
|
||||
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
|
||||
# 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
|
||||
|
@ -32,8 +38,6 @@ if [ -e ${HOME}/.dotfiles/bash/shell_config ]; then
|
|||
source ${HOME}/.dotfiles/bash/shell_config
|
||||
fi
|
||||
|
||||
if [[ -z $TERM_TITLE ]]; then
|
||||
TERM_TITLE="$TERM";
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue