mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-12-22 23:42:30 +00:00
Updated post to include systemd-run
This commit is contained in:
parent
ecdc3317f5
commit
2d2f88790b
1 changed files with 8 additions and 1 deletions
|
@ -17,4 +17,11 @@ On the client computer,
|
|||
ssh desktop "DISPLAY=:0 nohup steam"
|
||||
```
|
||||
|
||||
The `nohup` allows the application to not terminate when you press `CTRL-C` from your client computer.
|
||||
The `nohup` allows the application to not terminate when you press `CTRL-C` from your client computer.
|
||||
|
||||
Update: In light of [discovering `systemd-run`](/blog/launchappsthroughterminal/), I recommand you
|
||||
do the following instead:
|
||||
|
||||
```bash
|
||||
ssh desktop "DISPLAY=:0 systemd-run --user steam"
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue