Skip to content

Commit

Permalink
Add RustDesk
Browse files Browse the repository at this point in the history
  • Loading branch information
Botspot committed Nov 1, 2024
1 parent 6ea145b commit cf2e68c
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/updates/RustDesk.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

version=$(get_release rustdesk/rustdesk)
armhf_url="https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-armv7-sciter.deb"
arm64_url="https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-aarch64.deb"

source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh
1 change: 1 addition & 0 deletions apps/RustDesk/credits
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Botspot
10 changes: 10 additions & 0 deletions apps/RustDesk/description
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Open-source secure remote desktop connection software, better than AnyDesk or TeamViewer
RustDesk seems like the best choice and is one of the few that actually works well on Raspberry Pi. (Especially with Wayland)
This will install the server and viewer. You can connect to other RustDesk-enabled computers, or connect to this system from elsewhere. Connections can be made between two devices with access to the Internet, with no need for port forwarding or other changes to the network configuration.
They even have a viewer online, in addition to phone and PC apps. You can use any device as a controlling viewer by going to to https://rustdesk.com/web

To run: Menu -> Internet -> RustDesk
To run in a terminal: rustdesk
The background service should start automatically on boot. To run it in a terminal: /usr/bin/rustdesk --service

Note: for faster speeds and higher security, consider setting up your own RustDesk self-hosted server.
Binary file added apps/RustDesk/icon-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/RustDesk/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions apps/RustDesk/install-32
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

version='1.3.2'

if [ "$XDG_SESSION_TYPE" == wayland ];then
install_packages https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-armv7-sciter.deb xdg-desktop-portal-wlr || exit 1
else
install_packages https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-armv7-sciter.deb || exit 1
fi
9 changes: 9 additions & 0 deletions apps/RustDesk/install-64
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

version='1.3.2'

if [ "$XDG_SESSION_TYPE" == wayland ];then
install_packages https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-aarch64.deb xdg-desktop-portal-wlr || exit 1
else
install_packages https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-aarch64.deb || exit 1
fi
4 changes: 4 additions & 0 deletions apps/RustDesk/uninstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

#Allow packages required by this app to be uninstalled
purge_packages || exit 1
1 change: 1 addition & 0 deletions apps/RustDesk/website
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://rustdesk.com/
1 change: 1 addition & 0 deletions etc/categories
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Reaper|Multimedia
Remarkable|Programming
Renoise (Demo)|Multimedia
RiiTag-RPC|Internet
RustDesk|Internet
Scratch 2|Programming
Scratch 3|Programming
Scrcpy|Tools
Expand Down

0 comments on commit cf2e68c

Please sign in to comment.