pfetch: fix whoami not posix

This commit is contained in:
Dylan Araps 2019-09-30 09:25:39 +03:00
parent 0977e5f1a1
commit 9985e6cfe9

4
pfetch
View File

@ -100,8 +100,8 @@ log() {
get_title() {
# Username is retrieved by first checking '$USER' with a fallback
# to the 'whoami' command.
user=${USER:-$(whoami)}
# to the 'id -un' command.
user=${USER:-$(id -un)}
# Hostname is retrieved by first checking '$HOSTNAME' with a fallback
# to the 'hostname' command.