sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit c0916f6138d53faab9dd422ec9d815f3bf52bf53
parent 67a9a9459633dcf11ca4c37dc224ce8f9a8945b6
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 12 Oct 2016 23:44:19 -0400

Use CAIRO_OPERATOR_SOURCE for swaybar

Diffstat:
Mswaybar/render.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/swaybar/render.c b/swaybar/render.c @@ -282,6 +282,8 @@ void render(struct output *output, struct config *config, struct status_line *li cairo_paint(cairo); cairo_restore(cairo); + cairo_set_operator(cairo, CAIRO_OPERATOR_SOURCE); + // Background cairo_set_source_u32(cairo, config->colors.background); cairo_paint(cairo);