mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-06-13 07:04:03 +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
|
@ -18,3 +18,10 @@ 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…
Add table
Reference in a new issue