blob: 484b199016016d960e55230bea23b066072933c8 (
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
|
SysBoost
SysBoost is a simple but effective system optimizer for Linux.
it cleans junk, optimizes RAM, and improves CPU performance without bloat.
it’s written in pure bash, runs fast, and does exactly what it says.
## features
Junk Cleanup – Removes package cache and unnecessary system files.
RAM Optimization – Frees up cached memory.
CPU Optimization – Disables unnecessary background services.
Scheduled Optimization – Automate cleanups.
CLI-Only – No GUI, just a simple script.
## installation
Arch (AUR)
once it's up on AUR, install it with:
```sh
yay -S sysboost
```
## manual install (for any linux distro)
```sh
git clone https://github.com/ayumu436/bash.git sysboost
cd sysboost
sudo cp sysboost.sh /usr/bin/sysboost
sudo chmod +x /usr/bin/sysboost
```
## how to use
```sh
sysboost --clean # Clean junk files
sysboost --optimize-ram # Free up memory
sysboost --optimize-cpu # Disable useless background services
sysboost --schedule enable # Enable scheduled cleanup
sysboost --schedule disable # Disable scheduled cleanup
sysboost --uninstall # Uninstall SysBoost
sysboost --version # Check version
sysboost --help # Show help
```
## license
mit. use it however you want.
## contributing
got ideas? open an issue or send a pull request.
## support
If you run into issues or have ideas to improve SysBoost, open an issue on GitHub.
I’ll check it out when I get the chance.
|