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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/header.png" width="800">
</p>
<h2 align="center">Linux System Optimizer and Monitoring</h2>
<h3 align="center">
<strong>
<a href="https://stacer.quentium.fr/">See the website</a>
·
<a href="https://launchpad.net/~quentiumyt/+archive/ubuntu/stacer">View on Launchpad</a>
·
<a href="https://crowdin.com/project/stacer">Contribute to Crowdin translations</a>
</strong>
</h3>
<p align="center">
<a title="Kernel.org" target="_blank" href="https://www.kernel.org">
<img alt="Platform (GNU/Linux)" src="https://img.shields.io/badge/platform-GNU/Linux-blue.svg"/>
</a>
<a title="GitHub Releases" target="_blank" href="https://github.com/QuentiumYT/Stacer/releases">
<img alt="GitHub Releases Downloads" src="https://img.shields.io/github/downloads/QuentiumYT/Stacer/total.svg"/>
</a>
<a title="Crowdin Translations" target="_blank" href="https://crowdin.com/project/stacer">
<img alt="Crowdin Localized Percentage" src="https://badges.crowdin.net/stacer/localized.svg">
</a>
</p>
## Reviews
<p align="left">
<a href="https://www.omgubuntu.co.uk/2017/01/stacer-system-optimizer-for-ubuntu">
<img width="64px" src="https://149366088.v2.pressablecdn.com/wp-content/themes/omgubuntu-theme-2022_04_0/images/favicons/favicon-192x192.png"/>
</a>
<a href="https://diolinux.com.br/sistemas-operacionais/ubuntu/stacer-um-programa-para-otimizar-o-ubuntu.html">
<img width="64px" src="https://diolinux.com.br/wp-content/uploads/2021/05/diolinux-logo.png"/>
</a>
<a href="https://www.dobreprogramy.pl/stacer-program-do-optymalizacji-ubuntu-ktory-wyglada-jakby-uciekl-z-windowsa,6628400543275137a">
<img width="64px" src="https://www.dobreprogramy.pl/resources/icons/icon.png"/>
</a>
<a href="hhttps://blog.desdelinux.net/optimizar-debian-ubuntu-linux-mint-derivados-stacer/">
<img width="64px" src="https://blog.desdelinux.net/wp-content/uploads/2018/04/cropped-desdelinux.png"/>
</a>
<a href="https://www.techrepublic.com/article/how-to-install-stacer-for-quick-linux-system-optimization/">
<img width="64px" src="https://www.techrepublic.com/wp-content/themes/techrepublic-theme/inc/images/app-icons/android-chrome-256x256.png"/>
</a>
</p>
## Installation
### Prerequisites
- curl
- systemd
### Ubuntu (PPA)
```bash
sudo add-apt-repository ppa:quentiumyt/stacer
sudo apt update
sudo apt install stacer
stacer
```
### Debian/Ubuntu (.deb)
1. Download the `.deb` package from [Stacer releases](https://github.com/QuentiumYT/Stacer/releases).
2. Install dependencies:
```bash
sudo apt install libqt6core6 libqt6gui6 libqt6widgets6 libqt6charts6 libqt6svg6 libqt6concurrent6 libqt6network6
```
3. Install package:
```bash
sudo apt install ./stacer_*.deb
```
4. Run: `stacer`
### Debian/Ubuntu (APT)
```bash
sudo apt install stacer
stacer
```
### Fedora (.rpm)
1. Download the `.rpm` package from [Stacer releases](https://github.com/QuentiumYT/Stacer/releases).
2. Install:
```bash
sudo rpm --install stacer_*.rpm --nodeps --force
```
3. Run: `stacer`
### Fedora (DNF)
```bash
sudo dnf install stacer
stacer
```
### Arch Linux (AUR)
Using your preferred AUR helper:
```bash
# yay
yay -S stacer-bin
# or paru
paru -S stacer-bin
```
Run: `stacer`
### CachyOS
Using your preferred package manager:
```bash
# pacman
sudo pacman -S stacer
# or paru
paru -S stacer
# or yay
yay -S stacer
```
Run: `stacer`
## Build from Source (CMake)
1. Install dependencies:
```bash
sudo apt update
sudo apt install \
cmake \
qt6-base-dev \
qt6-tools-dev \
qt6-tools-dev-tools \
qt6-l10n-tools \
qt6-charts-dev \
qt6-svg-dev \
libglx-dev \
libgl1-mesa-dev \
libxkbcommon-dev \
libvulkan-dev
```
- For Ubuntu 22.04: `libqt6opengl6-dev libqt6charts6-dev libqt6svg6-dev`.
- Optional: `qt6-wayland-dev`.
2. Build and run:
```bash
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build -j $(nproc)
./build/stacer/stacer
```
## Screenshots
The Stacer Dashboard:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-dashboard.png" width="700" alt="The Stacer Dashboard">
</p>
The Stacer Dashboard on Ubuntu:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-dashboard-ubuntu.png" width="700" alt="The Stacer Dashboard on Ubuntu">
</p>
The Stacer Dashboard on WSL:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-dashboard-wsl.png" width="700" alt="The Stacer Dashboard on WSL">
</p>
The Stacer Startup Apps:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-startup-apps.png" width="700" alt="The Stacer Startup Apps">
</p>
The Stacer System cleaner:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-system-cleaner.png" width="700" alt="The Stacer System cleaner">
</p>
The Stacer System cleaner list:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-system-cleaner-list.png" width="700" alt="The Stacer System cleaner list">
</p>
The Stacer Search:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-search.png" width="700" alt="The Stacer Search">
</p>
The Stacer Services:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-services.png" width="700" alt="The Stacer Services">
</p>
The Stacer Processes:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-processes.png" width="700" alt="The Stacer Processes">
</p>
The Stacer Uninstaller:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-uninstaller.png" width="700" alt="The Stacer Uninstaller">
</p>
The Stacer Resources:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-resources.png" width="700" alt="The Stacer Resources">
</p>
The Stacer Resources usage:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-resources-usage.png" width="700" alt="The Stacer Resources usage">
</p>
The Stacer Resources system:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-resources-system.png" width="700" alt="The Stacer Resources system">
</p>
The Stacer Helpers:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-helpers.png" width="700" alt="The Stacer Helpers">
</p>
The Stacer APT Repository Manager:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-apt-repository-manager.png" width="700" alt="The Stacer APT Repository Manager">
</p>
The Stacer Gnome Settings:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-gnome-settings.png" width="700" alt="The Stacer Gnome Settings">
</p>
The Stacer Gnome Settings appearance:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-gnome-settings-appearance.png" width="700" alt="The Stacer Gnome Settings appearance">
</p>
The Stacer Settings:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-settings.png" width="700" alt="The Stacer Settings">
</p>
The Stacer Settings feedback:
<p align="center">
<img src="https://raw.githubusercontent.com/QuentiumYT/Stacer/main/screenshots/Screenshot-settings-feedback.png" width="700" alt="The Stacer Settings feedback">
</p>
## Contributors
This project exists thanks to all the people who contribute.
Thanks for people that contributes on translations on [Crowdin](https://crowdin.com/project/stacer)!
<a href="https://github.com/QuentiumYT/Stacer/graphs/contributors"><img src="https://opencollective.com/Stacer/contributors.svg?width=890&button=false" /></a>
|