summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharalampos Kardaris <ckardaris@outlook.com>2019-12-12 20:31:47 +0200
committerCharalampos Kardaris <ckardaris@outlook.com>2019-12-12 20:31:47 +0200
commit6454a4451ffb6aeef92efda4c3fd93e52d30ffa7 (patch)
tree182737944d1f590b2beca473328cc33b46690c87
parentUpdated README (diff)
downloadmktrayicon-6454a4451ffb6aeef92efda4c3fd93e52d30ffa7.tar.gz
mktrayicon-6454a4451ffb6aeef92efda4c3fd93e52d30ffa7.tar.bz2
mktrayicon-6454a4451ffb6aeef92efda4c3fd93e52d30ffa7.zip
Fix README
-rw-r--r--README.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/README.md b/README.md
index 089ac5b..e05e9f0 100644
--- a/README.md
+++ b/README.md
@@ -43,13 +43,10 @@ Quoted strings are terminated by a matching quote at the end of a line
to continue a quoted string, prefix it with a `\`.
The m(enu) command uses `,` as a delimiter between label and command and `|` as a delimiter
-between entries (label+command).
-If you want to use these 2 characters in a label or command, you have to escape
-them with `\`.
-If you want to have an entry with just a label and no command to be executed, you can ommit the
-`,<cmd>` part.
-If you want an empty label, you can just add a second `|` delimiter after the previous one.
-If you want a command to be executed upon selection of an empty label, you can add `,<cmd>` after the previous `|`
+between entries (label+command).If you want to use these 2 characters in a label or command, you have to escape
+them with `\`. If you want to have an entry with just a label and no command to be executed, you can omit the
+`,<cmd>` part. If you want an empty label (e.g. as a separator), you can just add a second `|` delimiter after the previous one.
+If you want a command to be executed upon selection of an empty label, you can add `,<cmd>` after the previous `|`.
Example command: `echo "m Browser,firefox|Terminal,xterm|Label-only||,chromium" > /tmp/test` (where `mkfifo /tmp/test` has been executed before)
bgstack15