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
267 B

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