diff options
author | Will Song <incertia9474@gmail.com> | 2016-07-16 16:15:33 -0500 |
---|---|---|
committer | jao <jao@gnu.org> | 2016-07-27 01:00:06 +0200 |
commit | a93755b2d1e9efbd63723f5302ca7c8f43521aa8 (patch) | |
tree | fd6478184be41063af8c618e2bb0932179ba18a5 /readme.md | |
parent | c98752cad2343932d42d2fef2229581f0c266800 (diff) | |
download | xmobar-a93755b2d1e9efbd63723f5302ca7c8f43521aa8.tar.gz xmobar-a93755b2d1e9efbd63723f5302ca7c8f43521aa8.tar.bz2 |
Add expandEnv function and use it in PipeReader family of monitors
expandEnv takes a string and expands the environment variables it can
find. variable substringing (e.g. ${VAR:1} to lop off the first
character) is not supported, but $VAR and ${VAR} formats are, with the
former being delimited by punctuation, but not underscores.
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1348,6 +1348,7 @@ can be used in the output template as `%mydate%` - Reads its displayed output from the given pipe. - Prefix an optional default text separated by a colon +- Expands environment variables in the first argument of syntax '${VAR}' or '$VAR' <font size="+1">**`MarqueePipeReader "default text:/path/to/pipe" (length, rate, sep) Alias`**</font> @@ -1357,6 +1358,8 @@ can be used in the output template as `%mydate%` Run MarqueePipeReader "/tmp/testpipe" (10, 7, "+") "mpipe" +- Expands environment variables in the first argument + <font size="+1"> **`BufferedPipeReader Alias [(Timeout, Bool, "/path/to/pipe1"), ..]`** </font> @@ -1386,6 +1389,7 @@ can be used in the output template as `%mydate%` `"/tmp/xmobar_status"` will reveal xmonad for 1.5 seconds and temporarily overwrite the window titles. - Take a look at [samples/status.sh] +- Expands environment variables for the pipe path [samples/status.sh]: http://github.com/jaor/xmobar/raw/master/samples/status.sh |