[core/output] Add specific --markup parameter
To allow a user to specify a custom markup string, add a parameter "--markup" to bumblebee-status. fixes #493
This commit is contained in:
parent
f80fcfa60c
commit
43aaa28256
2 changed files with 5 additions and 1 deletions
|
@ -164,7 +164,7 @@ class I3BarOutput(object):
|
|||
"align": self._theme.align(widget),
|
||||
"instance": widget.id,
|
||||
"name": module.id,
|
||||
"markup": self._config.get("output.markup", "none"),
|
||||
"markup": "none" if not self._config else self._config.markup(),
|
||||
})
|
||||
|
||||
def begin(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue