From 1f2f3fbe2a124f7d3729a691bac93fc0d74d7059 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 23 Sep 2024 12:16:55 -0700 Subject: [PATCH] :memo: Updated rustdesk daemon process --- updates.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/updates.txt b/updates.txt index 0f9d5148..567943fe 100755 --- a/updates.txt +++ b/updates.txt @@ -608,3 +608,19 @@ To access i2p sites, you'll need to modify the /etc/i2pd/i2pd.conf file: [addressbook] subscriptions= http://add2here.i2p/hosts.txt (note: the hosts.txt is how i2p resolves) +09/23/2024 +Add a script for rustdesk as it now needs a service daemon: +cd /etc/runit/sv/ +doas mkdir rustdesk +cd rustdesk +doas touch run +doas chmod +x run +doas nvim run +```sh +#!/bin/sh + +exec /usr/bin/rustdesk --service +```` +doas ln -s /etc/runit/sv/rustdesk /run/runit/service/ +doas sv start rustdesk +doas touch down