Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

17 lines
287 B

  1. int
  2. width_ltsymbol(Bar *bar, BarArg *a)
  3. {
  4. return TEXTW(bar->mon->ltsymbol);
  5. }
  6. int
  7. draw_ltsymbol(Bar *bar, BarArg *a)
  8. {
  9. return drw_text(drw, a->x, a->y, a->w, a->h, lrpad / 2, bar->mon->ltsymbol, 0, False);
  10. }
  11. int
  12. click_ltsymbol(Bar *bar, Arg *arg, BarArg *a)
  13. {
  14. return ClkLtSymbol;
  15. }