My slstatus configuration
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

16 righe
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. }