Fakefetch is just a little command I made that runs in the terminal, it just tells the person some things about there system, it won't do anything like reading your memory or cpu, it just prints an output into your terminal. ## Installation Step 1: Clone the Repository ---------------------------------------------------------------------------------------- git clone https://gitlab.com/Shipwreckt/fakefetch cd fakefetch you will also need a package called lsb-release sudo pacman -S lsb-release https://archlinux.org/packages/extra/any/lsb-release/ sudo apt-get install lsb-release It might already be installed on your system so you can check with lsb_release -a Step 2: Configuration ---------------------------------------------------------------------------------------- Second thing you want to do is configure it to your liking. So open it with your chosen text editor Open the configuration file with your preferred text editor: code fakefetch.sh kate fakefetch.sh vim fakefetch.sh nano fakefetch.sh --------- you also want to make your fakefetch exacutable, to do so do chmod +x fakefetch.sh By doing this you are able to run the command with ./fakefetch.sh Step three ---------------------------------------------------------------------------------------- You want to be able to run this command whenever you want too, so you need to move it to sudo mv ~/fakefetch.sh /usr/local/bin/ Now all you need to do is type fakefetch.sh and it will come up. Optional. ---------------------------------------------------------------------------------------- If you want this to run whenever you open your terminal just go into your .bashrc and put at the bottom fakefetch.sh echo "fakefetch.sh" >> ~/.bashrc Now whenever you type fakefetch.sh it should just run.