replaced neofetch :(
This commit is contained in:
12
common/debian/apps/fastfetch.sh
Normal file
12
common/debian/apps/fastfetch.sh
Normal 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
|
||||
}
|
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user