Adding uninstallation docs

This commit is contained in:
Purvi Das 2025-02-18 16:58:09 +00:00 committed by Peter F. Patel-Schneider
parent 9b5e416755
commit 637e562699
2 changed files with 41 additions and 0 deletions

40
docs/unistallation.md Normal file
View File

@ -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.

View File

@ -16,6 +16,7 @@ nav:
- Translation: i18n.md
- Implementation: implementation.md
- Installation: installation.md
- Uninstallation: uninstallation.md
- Rules: rules.md
- Usage: usage.md