From 185655de264cd4331f722817f0af78831d6cf0a3 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Mon, 23 Dec 2019 13:26:49 +0100 Subject: [PATCH] [output] Add support for pango markup Add a new parameter "output.markup" that allows a user to pass in a custom markup string (e.g. "pango"). Note: To make use of this, the user still has to use a Pango font, as well as use a bumblebee-status module that supports Pango output. fixes #493 --- bumblebee/output.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bumblebee/output.py b/bumblebee/output.py index 44515aa..df69e3a 100644 --- a/bumblebee/output.py +++ b/bumblebee/output.py @@ -164,6 +164,7 @@ class I3BarOutput(object): "align": self._theme.align(widget), "instance": widget.id, "name": module.id, + "markup": self._config.get("output.markup", "none"), }) def begin(self):