Fix Terminal Check
This commit is contained in:
parent
1f510e2b32
commit
60f5009cf8
6
neofetch
6
neofetch
|
@ -1640,14 +1640,14 @@ get_term() {
|
|||
esac
|
||||
|
||||
# Check $PPID for terminal emulator.
|
||||
while [[ -z "$term" ]]; do
|
||||
while [[ -z "$term" ]] || ((parent>1)); do
|
||||
parent="$(get_ppid "$parent")"
|
||||
name="$(get_process_name "$parent")"
|
||||
case "${name// }" in
|
||||
"${SHELL/*\/}" | *"sh" | "tmux"* | "screen" | "su"*) ;;
|
||||
"login"* | *"Login"* | "init" | "(init)") term="$(tty)" ;;
|
||||
"login"* | *"Login"* | "init" | "(init)") term="$(tty)";break ;;
|
||||
"ruby" | "1" | "systemd" | "sshd"* | "python"* | "USER"*"PID"*) break ;;
|
||||
"gnome-terminal-") term="gnome-terminal" ;;
|
||||
"gnome-terminal-") term="gnome-terminal";break ;;
|
||||
*) term="${name##*/}" ;;
|
||||
esac
|
||||
done
|
||||
|
|
Reference in New Issue