12 lines
230 B
Plaintext
12 lines
230 B
Plaintext
#if [ -d /etc/update-motd.d ]; then
|
|
# for f in /etc/update-motd.d/* ; do
|
|
# . "$f"
|
|
# done
|
|
#fi
|
|
|
|
if command -v fastfetch 2>&1 >/dev/null; then
|
|
fastfetch
|
|
elif command -v neofetch 2>&1 >/dev/null; then
|
|
neofetch
|
|
fi
|