17 lines
485 B
Bash
17 lines
485 B
Bash
#!/bin/bash
|
|
|
|
#remove neofetch package first
|
|
if package_installed neofetch ;then
|
|
echo "Removing neofetch package first..."
|
|
apt_lock_wait
|
|
sudo apt purge -y --autoremove neofetch
|
|
fi
|
|
|
|
install_packages make pciutils mesa-utils || exit 1
|
|
|
|
cd /tmp || error "Could not move to /tmp folder"
|
|
rm -rf /tmp/neofetch
|
|
git clone --branch merged-branch https://github.com/theofficialgman/neofetch.git --depth=1
|
|
cd neofetch && sudo make install || error "Make install failed"
|
|
rm -rf /tmp/neofetch
|