mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
22 lines
398 B
C
22 lines
398 B
C
int
|
|
width_stbutton(Bar *bar, BarWidthArg *a)
|
|
{
|
|
return TEXTW(buttonbar);
|
|
}
|
|
|
|
int
|
|
draw_stbutton(Bar *bar, BarDrawArg *a)
|
|
{
|
|
#if BAR_PANGO_PATCH
|
|
return drw_text(drw, a->x, 0, a->w, bh, lrpad / 2, buttonbar, 0, False);
|
|
#else
|
|
return drw_text(drw, a->x, 0, a->w, bh, lrpad / 2, buttonbar, 0);
|
|
#endif // BAR_PANGO_PATCH
|
|
}
|
|
|
|
int
|
|
click_stbutton(Bar *bar, Arg *arg, BarClickArg *a)
|
|
{
|
|
return ClkButton;
|
|
}
|