diff --git a/Known-Issues.md b/Known-Issues.md index 1fdb194..a62bfdf 100644 --- a/Known-Issues.md +++ b/Known-Issues.md @@ -12,7 +12,7 @@ This page lists some of the issues one can encounter when using polybar. Either ## Click Commands are not Executed **Problem:** Some `click-*` commands are not executed when the bar is clicked. This is a bug that is triggered by the `click-*` command producing output on `stdout` or `stderr`. -**Workaround:** The `click-*` command must not produce any output, so redirect any output to `/dev/null`. This can be done by appending `>/dev/null 2>&1` to the `click-*` command. +**Workaround:** The `click-*` command must not produce any output, so redirect any output to `/dev/null`. This can be done by appending `>/dev/null 2>&1` to the `click-*` command (If you background the program with `&`, make sure that `&` is still at the very end). This issue was discovered in [`#916`](https://github.com/jaagr/polybar/issues/916).