Add AnyDesk app
parent
634179a50d
commit
4376c584d6
@ -0,0 +1 @@
|
|||||||
|
@fabianmendes just brought it to the pi-apps.
|
@ -0,0 +1,6 @@
|
|||||||
|
AnyDesk is the ultimate remote desktop solution for editing and maintaining a desktop or server from a remote location using Linux on Raspberry Pi. Enjoy smooth and seamless remote operation of external computer systems.
|
||||||
|
|
||||||
|
AnyDesk is free for private use and offers flexible license models for organizations.
|
||||||
|
HOW TO RUN: JUST CLICK AND RUN.
|
||||||
|
|
||||||
|
Describe how to use this app, and any outstanding features it has.
|
Binary file not shown.
After Width: | Height: | Size: 851 B |
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||||
|
|
||||||
|
function error {
|
||||||
|
echo -e "\\e[91m$1\\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
#file name for future updates
|
||||||
|
filename='anydesk_6.0.1-1_armhf'
|
||||||
|
|
||||||
|
#download the deb file
|
||||||
|
wget https://download.anydesk.com/rpi/${filename}.deb || error "Failed to downloading file. Make sure 'wget' is installed and verify your Internet Network Connection"
|
||||||
|
|
||||||
|
# Installing the software with permissions
|
||||||
|
sudo apt install -y --fix-broken ~/${filename}.deb || error "Failed to install it using gdebi"
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||||
|
|
||||||
|
function error {
|
||||||
|
echo -e "\\e[91m$1\\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
sudo apt purge -y anydesk
|
@ -0,0 +1 @@
|
|||||||
|
https://anydesk.com/en/downloads/raspberry-pi
|
Loading…
Reference in New Issue