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.
 
 
 
 

18 righe
257 B

  1. #include <err.h>
  2. #include <stdlib.h>
  3. #include "util.h"
  4. const char *
  5. load_avg(const char *fmt)
  6. {
  7. double avgs[3];
  8. if (getloadavg(avgs, 3) < 0) {
  9. warnx("Failed to get the load avg");
  10. return NULL;
  11. }
  12. return bprintf(fmt, avgs[0], avgs[1], avgs[2]);
  13. }