Adding uninstallation docs
This commit is contained in:
parent
9b5e416755
commit
637e562699
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
title: Uninstalling Solaar
|
||||||
|
layout: page
|
||||||
|
---
|
||||||
|
|
||||||
|
# Uninstalling Solaar
|
||||||
|
|
||||||
|
## Uninstalling from Debian systems
|
||||||
|
|
||||||
|
If you installed Solaar using `apt`, you can remove it by running:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt remove --purge solaar
|
||||||
|
```
|
||||||
|
|
||||||
|
## Uninstalling from GitHub
|
||||||
|
|
||||||
|
If you cloned and installed Solaar from GitHub manually, navigate to the cloned directory and run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo make uninstall
|
||||||
|
```
|
||||||
|
|
||||||
|
## Removing Configuration Files
|
||||||
|
|
||||||
|
Solaar may leave behind configuration files in your home directory. To delete them, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rm -rf ~/.config/solaar
|
||||||
|
```
|
||||||
|
|
||||||
|
## Verifying Uninstallation
|
||||||
|
|
||||||
|
To confirm that Solaar is fully removed, try running:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
which solaar
|
||||||
|
```
|
||||||
|
|
||||||
|
If no output is returned, Solaar has been successfully uninstalled.
|
||||||
|
|
@ -16,6 +16,7 @@ nav:
|
||||||
- Translation: i18n.md
|
- Translation: i18n.md
|
||||||
- Implementation: implementation.md
|
- Implementation: implementation.md
|
||||||
- Installation: installation.md
|
- Installation: installation.md
|
||||||
|
- Uninstallation: uninstallation.md
|
||||||
- Rules: rules.md
|
- Rules: rules.md
|
||||||
- Usage: usage.md
|
- Usage: usage.md
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue