From e4671e70309a24e4a66fe0a6edf7b4b39babd480 Mon Sep 17 00:00:00 2001 From: speedie Date: Mon, 19 Dec 2022 15:43:25 +0100 Subject: [PATCH] show status on all mons --- bar.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bar.h b/bar.h index 42158cb..557b71f 100644 --- a/bar.h +++ b/bar.h @@ -22,13 +22,13 @@ * bar_align_right_right: Force the module to be placed on the right side of the bar next to the center split. * bar_align_right_center: Force the module to be placed on the center in the middle of the remaining space left of the center split on the right. * bar_align_right_none: No specific alignment. This will give the module the remaining space. - * + * * Width: * Function to run when getting the width of the module. - * + * * Syntax: width_ * Example: width_tags_pwl - * + * * Draw * Function to run when drawing the module. * @@ -64,6 +64,6 @@ static const BarRule barrules[] = { { -1, 0, bar_align_left, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" }, { -1, 0, bar_align_left, width_tags_pwl, draw_tags_pwl, click_tags_pwl, "powerline tags" }, { 'A', 0, bar_align_right, width_systray, draw_systray, click_systray, "systray" }, - { 'A', 0, bar_align_right, width_status_pwl, draw_status_pwl, click_status_pwl, "powerline status" }, + { -1, 0, bar_align_right, width_status_pwl, draw_status_pwl, click_status_pwl, "powerline status" }, { -1, 0, bar_align_none, width_title, draw_title, click_title, "title" }, };