Updated Known Issues (markdown)

Patrick Ziegler 2018-09-11 18:10:05 +02:00
parent 39ea3b2f01
commit c3e0af6f89
1 changed files with 1 additions and 1 deletions

@ -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).