blob: c4ebcf9432554c0cd0afbdd406219bc833a8172b (
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
|
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
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.
|