mirror of
https://github.com/Drop-OSS/drop-docs.git
synced 2026-01-30 20:55:17 +01:00
* Adds pages to install drop-app on different platforms * Removes rust-nightly-bin related instructions as they are not needed * Adds ubuntu page * Adds debian page * Adds fedora guide * Improves documentation to get umu-run to work on steamos and bazzite * Fixes broken links * Fixes the bazzite page * Updates client link to latest version and removes rust-nightly-bin as a dependency on arch * Few improvements
33 lines
949 B
Markdown
33 lines
949 B
Markdown
# Installing drop-app on Debian
|
|
|
|
## Installing `libayatana-appindicator3-1`
|
|
|
|
This library is dependency of drop-app. Without it, drop-app will crash on start up.
|
|
|
|
```bash
|
|
sudo apt install libayatana-appindicator3-1
|
|
|
|
```
|
|
|
|
## Installing drop-app
|
|
|
|
To install drop-app on Debian, simply download the `amd64.deb` or `arm64.deb` package [from this page](https://github.com/Drop-OSS/drop-app/releases/latest) and open the downloaded file.
|
|
It will open it in the Software app. You can click Install on this page.
|
|
|
|

|
|
|
|
## Uninstalling drop-app
|
|
|
|
You can uninstall `libayatana-appindicator3-1` if no other applications depend on it,
|
|
or if you simply want to get rid of it, you can do so with the following:
|
|
|
|
```bash
|
|
sudo apt remove libayatana-appindicator3-1
|
|
```
|
|
|
|
You can then uninstall drop with the following command:
|
|
|
|
```bash
|
|
sudo apt remove drop-desktop-client
|
|
```
|