blob: 256c3cfdda1da9fe4f41eea2ba9d3178282b1ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
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
----------------------------------------------------------------------------------------
Make sure you have Git installed so you can clone it
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. There are comments in the bash code, if you want to do your own art its basically just variables or the system infomation
---------
you also want to make your fakefetch exacutable so you can test how it looks in the terminal, 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/fakefetch.sh /usr/local/bin/
Now all you need to do is type fakefetch.sh and it will come up.
To edit it further all you need to do is nano /usr/local/bin/fakefetch.sh
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.
|