You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i3ipc/replies.py
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ def __init__(self, data):
13
13
14
14
@classmethod
15
15
def_parse_list(cls, data):
16
+
#print(data, file=sys.stderr)
16
17
return [cls(d) fordindata]
17
18
18
19
@@ -179,17 +180,19 @@ class BarConfigReply(_BaseReply):
179
180
:ivar colors: Contains key/value pairs of colors. Each value is a color
180
181
code in hex, formatted #rrggbb (like in HTML).
181
182
: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.
183
184
: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).
185
186
:vartype hidden_state: str
186
-
:ivar modifier:
187
+
:ivar modifier: The modifier used to switch between hide/show mode.
187
188
: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
188
191
:ivar workspace_min_width:
189
192
: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", ...
191
194
: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.
193
196
:vartype strip_workspace_name: bool
194
197
:ivar gaps: (sway only)
195
198
:vartype gaps: :class:`BarConfigGaps`
@@ -216,6 +219,7 @@ class BarConfigReply(_BaseReply):
0 commit comments