You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int |
|
width_ltsymbol(Bar *bar, BarArg *a) |
|
{ |
|
return TEXTW(bar->mon->ltsymbol); |
|
} |
|
|
|
int |
|
draw_ltsymbol(Bar *bar, BarArg *a) |
|
{ |
|
return drw_text(drw, a->x, a->y, a->w, a->h, lrpad / 2, bar->mon->ltsymbol, 0, False); |
|
} |
|
|
|
int |
|
click_ltsymbol(Bar *bar, Arg *arg, BarArg *a) |
|
{ |
|
return ClkLtSymbol; |
|
} |
|
|
|
|