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

16 行
185 B

  1. #include <err.h>
  2. #include <unistd.h>
  3. #include "util.h"
  4. const char *
  5. hostname(void)
  6. {
  7. if (gethostname(buf, sizeof(buf)) == -1) {
  8. warn("hostname");
  9. return NULL;
  10. }
  11. return buf;
  12. }