From d4adbecf9e93bc6a2a0c3cbe9ff0358cf9a49c1f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 18 May 2016 15:22:50 +1000 Subject: [PATCH] Terminal detection, add screen support: --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index e0a3ba0c..844f35bd 100755 --- a/neofetch +++ b/neofetch @@ -1752,7 +1752,7 @@ getterm () { name="$(ps -p $parent -o comm=)" case "$name" in - "${SHELL/*\/}" | *"sh" | "tmux" | "systemd") getterm "$parent" ;; + "${SHELL/*\/}" | *"sh" | "tmux" | "screen" | "systemd") getterm "$parent" ;; *) term="$name" ;; esac fi