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.
 
 
 
 

14 line
262 B

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