My slstatus configuration
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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