replaced neofetch :(

This commit is contained in:
2024-07-16 09:52:24 +02:00
parent dc1a84cba5
commit c74296070a
6 changed files with 28 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
#!/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
}

View File

@@ -1,12 +1,16 @@
#!/bin/bash
source $PWD/common/debian/apps/fastfetch.sh
# neofetch is not longer maintained
install_neofetch() {
echo "Installing neofetch"
sudo apt install neofetch -y
echo '
if [ $USER != "root" ]; then
echo ""
neofetch
fi
' | sudo tee -a /etc/bash.bashrc > /dev/null
install_fastfetch
# echo "Installing neofetch"
# sudo apt install neofetch -y
# echo '
# if [ $USER != "root" ]; then
# echo ""
# neofetch
# fi
# ' | sudo tee -a /etc/bash.bashrc > /dev/null
}