config: allow disabling the built-in bar
This commit is contained in:
parent
224f5380fe
commit
08e7e01d0e
16 changed files with 156 additions and 14 deletions
|
|
@ -883,6 +883,10 @@
|
|||
"use-hardware-cursor": {
|
||||
"type": "boolean",
|
||||
"description": "Configures whether the default seat uses hardware cursors.\n\nThe default is `true`.\n"
|
||||
},
|
||||
"show-bar": {
|
||||
"type": "boolean",
|
||||
"description": "Configures whether the built-in bar is shown.\n\nThe default is `true`.\n"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
@ -1586,7 +1590,10 @@
|
|||
"pin-float",
|
||||
"unpin-float",
|
||||
"toggle-float-pinned",
|
||||
"kill-client"
|
||||
"kill-client",
|
||||
"show-bar",
|
||||
"hide-bar",
|
||||
"toggle-bar"
|
||||
]
|
||||
},
|
||||
"Status": {
|
||||
|
|
|
|||
|
|
@ -1794,6 +1794,14 @@ The table has the following fields:
|
|||
|
||||
The value of this field should be a boolean.
|
||||
|
||||
- `show-bar` (optional):
|
||||
|
||||
Configures whether the built-in bar is shown.
|
||||
|
||||
The default is `true`.
|
||||
|
||||
The value of this field should be a boolean.
|
||||
|
||||
|
||||
<a name="types-Connector"></a>
|
||||
### `Connector`
|
||||
|
|
@ -3597,6 +3605,18 @@ The string should have one of the following values:
|
|||
Within a window rule, it applies to the client of the window. Within a client rule
|
||||
it applies to the matched client. Has no effect otherwise.
|
||||
|
||||
- `show-bar`:
|
||||
|
||||
Shows the built-in bar.
|
||||
|
||||
- `hide-bar`:
|
||||
|
||||
Hides the built-in bar.
|
||||
|
||||
- `toggle-bar`:
|
||||
|
||||
Toggles the built-in bar.
|
||||
|
||||
|
||||
|
||||
<a name="types-Status"></a>
|
||||
|
|
|
|||
|
|
@ -854,6 +854,12 @@ SimpleActionName:
|
|||
|
||||
Within a window rule, it applies to the client of the window. Within a client rule
|
||||
it applies to the matched client. Has no effect otherwise.
|
||||
- value: show-bar
|
||||
description: Shows the built-in bar.
|
||||
- value: hide-bar
|
||||
description: Hides the built-in bar.
|
||||
- value: toggle-bar
|
||||
description: Toggles the built-in bar.
|
||||
|
||||
|
||||
Color:
|
||||
|
|
@ -2614,6 +2620,13 @@ Config:
|
|||
Configures whether the default seat uses hardware cursors.
|
||||
|
||||
The default is `true`.
|
||||
show-bar:
|
||||
kind: boolean
|
||||
required: false
|
||||
description: |
|
||||
Configures whether the built-in bar is shown.
|
||||
|
||||
The default is `true`.
|
||||
|
||||
|
||||
Idle:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue