From 853ca40ccc5aefe33cbca9dfafa3556004ed29b2 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 24 Sep 2019 18:25:49 +0300 Subject: [PATCH] pfetch: clean up --- pfetch | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pfetch b/pfetch index 1e09abb..3cf9b86 100755 --- a/pfetch +++ b/pfetch @@ -88,14 +88,17 @@ log() { get_title() { # Username is retrieved by first checking '$USER' with a fallback # to the 'whoami' command. - # + user=${USER:-$(whoami)} + # Hostname is retrieved by first checking '$HOSTNAME' with a fallback # to the 'hostname' command. # # Disable the warning about '$HOSTNAME' being undefined in POSIX sh as # it is intended for allowing the user to overwrite the value on invocation. # shellcheck disable=SC2039 - log "$c4${USER:-$(whoami)}$c7@$c4${HOSTNAME:-${hostname:-$(hostname)}}" + host=${HOSTNAME:-${hostname:-$(hostname)}} + + log "${c4}${user}${c7}@${host}${c4}" } get_distro() {