- cpu_perc (cpu usage in percent) [argument: NULL]
- datetime (date and time) [argument: format]
- disk_perc (disk usage in percent) [argument: mountpoint]
+- entropy (available entropy) [argument: NULL]
- ram_perc (ram usage in percent) [argument: NULL]
- temp (temperature in degrees) [argument: temperature file]
- vol_perc (alsa volume and mute status in percent) [argument: soundcard]
{ ram_perc, "ram %3s | ", NULL },
{ vol_perc, "vol %4s | ", "default" },
{ disk_perc, "ssd %3s | ", "/" },
+ { entropy, "crypt %s | ", NULL },
{ datetime, "%s", "%y-%m-%d %H:%M:%S" },
};
return smprintf("%d%%", perc);
}
+/* entropy available */
+char *
+entropy(const char *null)
+{
+ int entropy = 0;
+ FILE *fp;
+
+ /* open entropy file */
+ if (!(fp = fopen("/proc/sys/kernel/random/entropy_avail", "r"))) {
+ fprintf(stderr, "Could not open entropy file.\n");
+ return smprintf("n/a");
+ }
+
+ /* extract entropy */
+ fscanf(fp, "%d", &entropy);
+
+ /* close entropy file */
+ fclose(fp);
+
+ /* return entropy */
+ return smprintf("%d", entropy);
+}
+
/* ram percentage */
char *
ram_perc(const char *null)
char *cpu_perc(const char *);
char *datetime(const char *);
char *disk_perc(const char *);
+char *entropy(const char*);
char *ram_perc(const char *);
char *temp(const char *);
char *vol_perc(const char *);