My slstatus configuration
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
201 B

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