17 lines
336 B
Bash
17 lines
336 B
Bash
#!/bin/bash
|
|
|
|
source $PWD/common/debian/apps/fastfetch.sh
|
|
|
|
# neofetch is not longer maintained
|
|
install_neofetch() {
|
|
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
|
|
}
|