You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When connecting to a LibreELEC system via SSH, the terminal name is not changed to reflect it being connected to a different system.
To Reproduce
Steps to reproduce the behavior:
Enable SSH on LibreELEC
Connect using your terminal of choice
Window title is not updated to Kodi/LE hostname
Informations
LE Version: 11.01
Hardware Platform: RPi4
Additional context
Workaround is to create /storage/.profile with the following content:
case "$TERM" in
xterm*|rxvt*)
export PS1='\[\e]0;\u@\h: \w\a\]'$PS1
;;
esac
This will change the terminal window title to match the connected system.
If this can be added to /etc/profile or any of the files under /etc/profile.d/ to make this the default behaviour (as it is for many Linux distro's), that would be great!
The text was updated successfully, but these errors were encountered:
When connecting to a LibreELEC system via SSH, the terminal name is not changed to reflect it being connected to a different system.
To Reproduce
Steps to reproduce the behavior:
Informations
Additional context
Workaround is to create /storage/.profile with the following content:
This will change the terminal window title to match the connected system.
If this can be added to /etc/profile or any of the files under /etc/profile.d/ to make this the default behaviour (as it is for many Linux distro's), that would be great!
The text was updated successfully, but these errors were encountered: