blob: e017c010034939a0c6525fc638a2ec34e661642b (
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
|
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.
Step one
----------------------------------------------------------------------------------------
You want to download the thing, if you already have well done! to do so all you need to do is
git clone https://gitlab.com/Shipwreckt/fakefetch
#make sure you are in a directory that is clean and make sure to cd into it
step two
----------------------------------------------------------------------------------------
Second thing you want to do is configure it to your liking. So open it with your chosen text editor
---------
#vs code
code fakefetch.sh
#kate
kate fakefetch.sh
#vim
vim fakefetch.sh
#nano
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.
Optinal.
----------------------------------------------------------------------------------------
If you want this to run whenever you open your terminal just go into your .bashrc and put at the bottom fakefetch.sh
And of course delete this readme and the file if you want too
|