summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorjohannes karoff <johannes@karoff.net>2016-01-31 19:16:42 +0100
committerjohannes karoff <johannes@karoff.net>2016-01-31 19:39:29 +0100
commit6f4819f7a5055e5e3bbfe5ff5b6447d6e300df17 (patch)
tree7fcce456c628987240b0f85f270d46fea76ac64a /man
parent85329802b29406925bf1f1656de85daf892309f3 (diff)
add separator and separator_block_width as universal module options
fixes #104
Diffstat (limited to 'man')
-rw-r--r--man/i3status.man11
1 files changed, 11 insertions, 0 deletions
diff --git a/man/i3status.man b/man/i3status.man
index b5f8f68..f71ce98 100644
--- a/man/i3status.man
+++ b/man/i3status.man
@@ -513,6 +513,15 @@ min_width::
set a sensible minimum width regardless of which font you are using, and at
what particular size. Please note that a number enclosed with quotes will
still be treated as a number.
+separator::
+ A boolean value which specifies whether a separator line should be drawn
+ after this block. The default is true, meaning the separator line will be
+ drawn. Note that if you disable the separator line, there will still be a
+ gap after the block, unless you also use separator_block_width.
+separator_block_width::
+ The amount of pixels to leave blank after the block. In the middle of this
+ gap, a separator symbol will be drawn unless separator is disabled. This is
+ why the specified width should leave enough space for the separator symbol.
*Example configuration*:
-------------------------------------------------------------
@@ -520,6 +529,8 @@ disk "/" {
format = "%avail"
align = "left"
min_width = 100
+ separator = false
+ separator_block_width = 1
}
-------------------------------------------------------------