Updated post to include systemd-run

This commit is contained in:
Brandon Rozek 2022-06-12 19:28:04 -04:00
parent ecdc3317f5
commit 2d2f88790b

View file

@ -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"
```