Skip to content

Commit 0741035

Browse files
committed
Add rustdesk
1 parent 0583891 commit 0741035

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

README.md

+43
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,50 @@ Choose erase disk and the BTRFS file system.
5050

5151
## Settings
5252

53+
- Enter BIOS to change boot order to boot from USB first
54+
- Power settings: System Settings > Power Management > Suspend when inactive for > Do nothing
55+
- Keyboard settings: System Settings > Keyboard > Numlock on startup: Turn on
5356
- Choose Breath Dark theme: System Settings >Quick Settings >Breath Dark
5457
- Disable log out confirmation: System Settings >System >Session >Desktop Sesssion >Uncheck "Ask for confirmation" >On login, Start with an empty session
5558
- Enable AUR: Pamac >Preferences >Third Party >Enable AUR support > Check for updates
5659
- Change terminal shortcut: Konslole >Settings >Configure Keyboard Shortcuts > Search Paster >Custom Shortcut >Ctrl+V
60+
61+
## Start Rustdesk
62+
63+
Start rustdesk before login
64+
65+
```bash
66+
kate /etc/systemd/system/rustdesk.service
67+
```
68+
69+
Paste the following content
70+
71+
```text
72+
[Unit]
73+
Description=RustDesk Remote Desktop
74+
After=network.target
75+
76+
[Service]
77+
ExecStart=/usr/bin/rustdesk --service
78+
Restart=always
79+
User=root
80+
Environment=DISPLAY=:0
81+
82+
[Install]
83+
WantedBy=multi-user.target
84+
```
85+
86+
Then run the following commands
87+
88+
```bash
89+
sudo systemctl daemon-reexec
90+
sudo systemctl daemon-reload
91+
sudo systemctl enable rustdesk
92+
sudo systemctl start rustdesk
93+
```
94+
95+
Then run
96+
97+
```bash
98+
sudo systemctl status rustdesk
99+
```

0 commit comments

Comments
 (0)