xfetch/INSTALL.sh

10 lines
258 B
Bash
Raw Normal View History

2022-03-30 11:39:52 -04:00
#!/bin/sh
2022-04-25 10:55:09 -04:00
echo "[ i ] Getting executable..."
2022-04-13 10:42:56 -04:00
wget https://raw.githubusercontent.com/everest-linux/xfetch/main/xfetch.py
2022-04-25 10:55:09 -04:00
echo "[ i ] Installing executable..."
2022-03-30 11:39:52 -04:00
cp xfetch.py xfetch
2022-04-01 08:59:16 -04:00
chmod +x xfetch
2022-03-30 11:39:52 -04:00
mv xfetch /usr/bin
2022-04-25 10:55:09 -04:00
echo "[ i ] xfetch installed successfully."