-
Notifications
You must be signed in to change notification settings - Fork 208
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
10 changed files
with
42 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,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 |
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 @@ | ||
Botspot |
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,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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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 |
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,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 |
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,4 @@ | ||
#!/bin/bash | ||
|
||
#Allow packages required by this app to be uninstalled | ||
purge_packages || exit 1 |
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 @@ | ||
https://rustdesk.com/ |
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