Added note on working directory

This commit is contained in:
Brandon Rozek 2022-06-12 19:50:41 -04:00
parent 2d2f88790b
commit 220f2b7571

View file

@ -25,6 +25,13 @@ like any other systemd service.
systemd --user status application
```
Note that the current directory information is not known
to `systemd-run`. Therefore, if you'll need to specify
absolute as opposed to relative paths. For example:
```bash
systemd-run --user okular "$PWD/document.pdf"
```
Check out Tem Tem's [blog post](https://www.ralismark.xyz/posts/systemd-run) for more on `systemd-run`!