-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters