summaryrefslogtreecommitdiffhomepage
path: root/patch/bar_status.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-07-18 21:12:30 +0200
committerbakkeby <[email protected]>2020-07-18 21:12:30 +0200
commit6961418d636985d96c0c3248752e642b0ec4c84b (patch)
tree57391183827f8377d4d0ef66092deb73e82b2a26 /patch/bar_status.c
parent250fbbd2c77a36b1b7d22c252fb781cbab09ca79 (diff)
downloaddwm-flexipatch-6961418d636985d96c0c3248752e642b0ec4c84b.tar.gz
dwm-flexipatch-6961418d636985d96c0c3248752e642b0ec4c84b.zip
Extrabar --> extrastatus
Diffstat (limited to 'patch/bar_status.c')
-rw-r--r--patch/bar_status.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/patch/bar_status.c b/patch/bar_status.c
index 9c3aafe..0234276 100644
--- a/patch/bar_status.c
+++ b/patch/bar_status.c
@@ -8,6 +8,18 @@ width_status(Bar *bar, BarWidthArg *a)
#endif // BAR_PANGO_PATCH
}
+#if BAR_EXTRASTATUS_PATCH
+int
+width_status_es(Bar *bar, BarWidthArg *a)
+{
+ #if BAR_PANGO_PATCH
+ return TEXTWM(estext) - lrpad;
+ #else
+ return TEXTW(estext) - lrpad;
+ #endif // BAR_PANGO_PATCH
+}
+#endif // BAR_EXTRASTATUS_PATCH
+
int
draw_status(Bar *bar, BarDrawArg *a)
{
@@ -18,6 +30,18 @@ draw_status(Bar *bar, BarDrawArg *a)
#endif // BAR_PANGO_PATCH
}
+#if BAR_EXTRASTATUS_PATCH
+int
+draw_status_es(Bar *bar, BarDrawArg *a)
+{
+ #if BAR_PANGO_PATCH
+ return drw_text(drw, a->x, 0, a->w, bh, 0, estext, 0, True);
+ #else
+ return drw_text(drw, a->x, 0, a->w, bh, 0, estext, 0);
+ #endif // BAR_PANGO_PATCH
+}
+#endif // BAR_EXTRASTATUS_PATCH
+
int
click_status(Bar *bar, Arg *arg, BarClickArg *a)
{