sh_linux_installation_scripts/common/debian/apps/fastfetch.sh

13 lines
220 B
Bash
Raw Normal View History

2024-07-16 09:52:24 +02:00
#!/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
}