diff options
author | slotThe <soliditsallgood@mailbox.org> | 2020-12-14 14:56:45 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2020-12-14 15:54:38 +0000 |
commit | c4cade7bfd8ba57242ec54347f9f3ee750255701 (patch) | |
tree | 4fb3b19ab2a8639f855a107d4dcd936741bd0929 /doc/plugins.org | |
parent | 797126514963c751d15edfe2b1e0c5fb8627917a (diff) | |
download | xmobar-c4cade7bfd8ba57242ec54347f9f3ee750255701.tar.gz xmobar-c4cade7bfd8ba57242ec54347f9f3ee750255701.tar.bz2 |
Further improvements
Diffstat (limited to 'doc/plugins.org')
-rw-r--r-- | doc/plugins.org | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/plugins.org b/doc/plugins.org index 59be7fd..8b529c5 100644 --- a/doc/plugins.org +++ b/doc/plugins.org @@ -18,7 +18,20 @@ All Monitors accept a common set of arguments, described below in [[Default Monitor Arguments]]. Some monitors also accept additional options that are specific to them. When specifying the list of arguments in your configuration, the common options come first, followed by =--=, followed -by any monitor-specific options. +by any monitor-specific options. For example, the following [[=Battery Args RefreshRate=][Battery]] +configuration first sets the global =template= and =Low= arguments and +then specifies the battery-specific =off= option. + +#+begin_src haskell + Run Battery + [ "--template", "<acstatus>" + , "--Low" , "15" + -- battery specific options start here. + , "--" + , "--off" , "<left> (<timeleft>)" + ] + 100 +#+end_src ** Icon patterns |