Remove path from terminal name
This commit is contained in:
parent
2e88379187
commit
d1b2b2828f
4
neofetch
4
neofetch
|
@ -1580,10 +1580,10 @@ getterm() {
|
|||
|
||||
case "${name// }" in
|
||||
"${SHELL/*\/}" | *"sh" | "tmux"* | "screen") getterm "$parent" ;;
|
||||
"login" | "init") term="$(tty)"; term="${term/*\/}" ;;
|
||||
"login" | "init") term="$(tty)" ;;
|
||||
"ruby" | "1" | "systemd" | "sshd"* | "python"*) unset term ;;
|
||||
"gnome-terminal-") term="gnome-terminal" ;;
|
||||
*) term="$name" ;;
|
||||
*) term="${name##*/}" ;;
|
||||
esac
|
||||
|
||||
[ "$version" -ge 4 ] && term="${term^}"
|
||||
|
|
Reference in New Issue