diff options
author | Charalampos Kardaris <ckardaris@outlook.com> | 2019-12-12 20:25:02 +0200 |
---|---|---|
committer | Charalampos Kardaris <ckardaris@outlook.com> | 2019-12-12 20:25:02 +0200 |
commit | 1130daed1ef09f1926f954cb2ecea00afa309957 (patch) | |
tree | 39cd1699d2cf728173a96280176b4a04df35866b | |
parent | Add curly boys in single-statement if/for blocks (diff) | |
download | mktrayicon-1130daed1ef09f1926f954cb2ecea00afa309957.tar.gz mktrayicon-1130daed1ef09f1926f954cb2ecea00afa309957.tar.bz2 mktrayicon-1130daed1ef09f1926f954cb2ecea00afa309957.zip |
Updated README
-rw-r--r-- | README.md | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -43,10 +43,15 @@ 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 `\`. - -Example command: `echo "m Browser,firefox|Terminal,xterm" > /tmp/test` (where `mkfifo /tmp/test` has been executed before) +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 `|` + +Example command: `echo "m Browser,firefox|Terminal,xterm|Label-only||,chromium" > /tmp/test` (where `mkfifo /tmp/test` has been executed before) ## Why? |