I want to install neofetch and screenfetch but I have yum as the default package manager in amazon linux and it does not have neofetch and screenfetch repositaries in it for me to install.
Asked
Active
Viewed 1,831 times
2 Answers
4
For Neofetch:
cd /tmp
git clone https://github.com/dylanaraps/neofetch.git
sudo cp neofetch/neofetch /usr/bin/neofetch
rm -rf neofetch
neofetch

Criggie
- 235
- 5
- 14

Arkapravo Ghosh
- 56
- 3
0
Use the below commands:
- wget https://github.com/dylanaraps/neofetch/archive/master.zip
- unzip master.zip
- cd neofetch-master
- sudo make install

Tejas Acharekar
- 21
- 2