Fix Terminal Check
This commit is contained in:
parent
82687cd6bf
commit
1f510e2b32
6
neofetch
6
neofetch
|
@ -1640,10 +1640,9 @@ get_term() {
|
|||
esac
|
||||
|
||||
# Check $PPID for terminal emulator.
|
||||
while [[ -z "$term" ]] || ((parent > 1)); do
|
||||
|
||||
while [[ -z "$term" ]]; do
|
||||
parent="$(get_ppid "$parent")"
|
||||
name="$(get_process_name "$parent")"
|
||||
|
||||
case "${name// }" in
|
||||
"${SHELL/*\/}" | *"sh" | "tmux"* | "screen" | "su"*) ;;
|
||||
"login"* | *"Login"* | "init" | "(init)") term="$(tty)" ;;
|
||||
|
@ -1651,7 +1650,6 @@ get_term() {
|
|||
"gnome-terminal-") term="gnome-terminal" ;;
|
||||
*) term="${name##*/}" ;;
|
||||
esac
|
||||
break;
|
||||
done
|
||||
|
||||
# Log that the function was run.
|
||||
|
|
Reference in New Issue