My dmenu build
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789
  1. /* See LICENSE file for copyright and license details. */
  2. #include <string.h>
  3. #include <X11/Xlib.h>
  4. #include "draw.h"
  5. int
  6. textw(DC *dc, const char *text) {
  7. return textnw(dc, text, strlen(text)) + dc->font.height;
  8. }