My slstatus configuration
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.

entropy.c 201 B

123456789101112
  1. #include <stdio.h>
  2. #include "util.h"
  3. const char *
  4. entropy(void)
  5. {
  6. int num;
  7. return (pscanf("/proc/sys/kernel/random/entropy_avail", "%d", &num) == 1) ?
  8. bprintf("%d", num) : NULL;
  9. }