Skip to content

Commit 5fc4109

Browse files
author
Tony Crisci
committed
Merge remote-tracking branch 'charlie45000/master'
2 parents 20fd4f2 + 6366150 commit 5fc4109

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

i3ipc/replies.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def __init__(self, data):
1313

1414
@classmethod
1515
def _parse_list(cls, data):
16+
#print(data, file=sys.stderr)
1617
return [cls(d) for d in data]
1718

1819

@@ -179,17 +180,19 @@ class BarConfigReply(_BaseReply):
179180
:ivar colors: Contains key/value pairs of colors. Each value is a color
180181
code in hex, formatted #rrggbb (like in HTML).
181182
:vartype colors: dict
182-
:ivar tray_padding:
183+
:ivar tray_padding: The tray is shown on the right-hand side of the bar. By default, a padding of 2 pixels is used for the upper, lower and right-hand side of the tray area and between the individual icons.
183184
:vartype tray_padding: int
184-
:ivar hidden_state:
185+
:ivar hidden_state: In order to control whether i3bar is hidden or shown in hide mode, there exists the hidden_state option, which has no effect in dock mode or invisible mode. It indicates the current hidden_state of the bar: (1) The bar acts like in normal hide mode, it is hidden and is only unhidden in case of urgency hints or by pressing the modifier key (hide state), or (2) it is drawn on top of the currently visible workspace (show state).
185186
:vartype hidden_state: str
186-
:ivar modifier:
187+
:ivar modifier: The modifier used to switch between hide/show mode.
187188
:vartype modifier: int
189+
:ivar separator_symbol: Specifies a custom symbol to be used for the separator as opposed to the vertical, one pixel thick separator.
190+
:vartype separator_symbol: str
188191
:ivar workspace_min_width:
189192
:vartype workspace_min_width: int
190-
:ivar strip_workspace_numbers:
193+
:ivar strip_workspace_numbers: When strip_workspace_numbers is set to yes, any workspace that has a name of the form "[n][:][NAME]" will display only the name. You could use this, for instance, to display Roman numerals rather than digits by naming your workspaces to "2:I", "2:II", "3:III", "4:IV", ...
191194
:vartype strip_workspace_numbers: bool
192-
:ivar strip_workspace_name:
195+
:ivar strip_workspace_name: When strip_workspace_name is set to yes, any workspace that has a name of the form "[n][:][NAME]" will display only the number.
193196
:vartype strip_workspace_name: bool
194197
:ivar gaps: (sway only)
195198
:vartype gaps: :class:`BarConfigGaps`
@@ -216,6 +219,7 @@ class BarConfigReply(_BaseReply):
216219
('strip_workspace_numbers', bool),
217220
('strip_workspace_name', bool),
218221
('binding_mode_indicator', bool),
222+
('separator_symbol', str),
219223
('verbose', bool),
220224
('colors', dict),
221225
('gaps', BarConfigGaps),

0 commit comments

Comments
 (0)