abbiefetch/hostname_username.3

10 lines
189 B
Groff
Raw Permalink Normal View History

2024-11-12 17:53:59 +00:00
if [ "$hashostname" -eq 1 ]; then
hostname="$(hostname)"
elif [ -n "$(cat /etc/hostname)" ]; then
hostname="$(cat /etc/hostname)"
fi
if [ -n "$(whoami)" ]; then
username="$(whoami)"
fi