Skip to content

Commit

Permalink
Adding uninstallation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
purvidas authored and pfps committed Feb 22, 2025
1 parent 9b5e416 commit 637e562
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docs/unistallation.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ nav:
- Translation: i18n.md
- Implementation: implementation.md
- Installation: installation.md
- Uninstallation: uninstallation.md
- Rules: rules.md
- Usage: usage.md

Expand Down

0 comments on commit 637e562

Please sign in to comment.