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.

temperature.c 280 B

123456789101112131415
  1. /* See LICENSE file for copyright and license details. */
  2. #include <errno.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include "../../util.h"
  6. const char *
  7. temp(const char *file)
  8. {
  9. int temp;
  10. return (pscanf(file, "%d", &temp) == 1) ?
  11. bprintf("%d", temp / 1000) : NULL;
  12. }