diff --git a/content/blog/startgraphicalappsnoforwarding.md b/content/blog/startgraphicalappsnoforwarding.md index a41aa3c..b1cf5ac 100644 --- a/content/blog/startgraphicalappsnoforwarding.md +++ b/content/blog/startgraphicalappsnoforwarding.md @@ -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. \ No newline at end of file +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" +```