This repository has been archived on 2021-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
sh_multi_install/common/debian/apps/fastfetch.sh
2024-07-16 09:52:24 +02:00

13 lines
220 B
Bash

#!/bin/bash
install_neofetch() {
echo "Installing fastfetch"
sudo apt install fastfetch -y
echo '
if [ $USER != "root" ]; then
echo ""
fastfetch
fi
' | sudo tee -a /etc/bash.bashrc > /dev/null
}