- wifi_perc (wifi signal in percent) [argument: wifi card interface name]
- wifi_essid (wifi essid) [argument: wifi card interface name] */
static const struct arg args[] = {
- /* function format argument */
- { cpu_perc, "[CPU %4s] ", NULL },
- { ram_perc, "[RAM %3s] ", NULL },
- { datetime, "[ %s ]", "%F %T" },
+ /* function format argument */
+ { cpu_perc, "[CPU %3s%%] ", NULL },
+ { ram_perc, "[RAM %2s%%] ", NULL },
+ { datetime, "[ %s ]", "%F %T" },
};
fscanf(fp, "%i", &perc);
fclose(fp);
- return smprintf("%d%%", perc);
+ return smprintf("%d", perc);
}
static char *
fclose(fp);
perc = 100 * ((b[0]+b[1]+b[2]) - (a[0]+a[1]+a[2])) / ((b[0]+b[1]+b[2]+b[3]) - (a[0]+a[1]+a[2]+a[3]));
- return smprintf("%d%%", perc);
+ return smprintf("%d", perc);
}
static char *
perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks));
- return smprintf("%d%%", perc);
+ return smprintf("%d", perc);
}
static char *
fscanf(fp, "Cached: %ld kB\n", &cached);
fclose(fp);
- return smprintf("%d%%", 100 * ((total - free) - (buffers + cached)) / total);
+ return smprintf("%d", 100 * ((total - free) - (buffers + cached)) / total);
}
static char *
}
sscanf(match, "SwapFree: %ld kB\n", &free);
- return smprintf("%d%%", 100 * (total - free - cached) / total);
+ return smprintf("%d", 100 * (total - free - cached) / total);
}
static char *
fscanf(fp, "%d", &temp);
fclose(fp);
- return smprintf("%d°C", temp / 1000);
+ return smprintf("%d", temp / 1000);
}
static char *
close(afd);
- return smprintf("%d%%", v & 0xff);
+ return smprintf("%d", v & 0xff);
}
static char *
datastart = (datastart+(strlen(iface)+1));
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &perc);
- return smprintf("%d%%", perc);
+ return smprintf("%d", perc);
}
static char *