2016-03-04 18:07:42 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
|
|
|
#include <alsa/asoundlib.h>
|
2016-09-08 03:45:00 +02:00
|
|
|
#include <err.h>
|
2016-03-10 12:11:46 +01:00
|
|
|
#include <fcntl.h>
|
2016-06-08 09:42:32 +02:00
|
|
|
#include <ifaddrs.h>
|
2016-06-10 18:22:05 +02:00
|
|
|
#include <limits.h>
|
2016-08-15 14:43:29 +02:00
|
|
|
#include <linux/wireless.h>
|
2016-06-08 09:42:32 +02:00
|
|
|
#include <netdb.h>
|
2016-06-13 18:49:50 +02:00
|
|
|
#include <pwd.h>
|
2016-03-04 18:07:42 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2016-08-15 14:43:29 +02:00
|
|
|
#include <sys/ioctl.h>
|
2016-03-10 12:11:46 +01:00
|
|
|
#include <sys/stat.h>
|
2016-03-11 12:18:23 +01:00
|
|
|
#include <sys/statvfs.h>
|
2016-06-08 09:42:32 +02:00
|
|
|
#include <sys/socket.h>
|
2016-08-18 13:43:18 +02:00
|
|
|
#include <sys/sysinfo.h>
|
2016-08-15 14:43:29 +02:00
|
|
|
#include <sys/types.h>
|
2016-03-04 18:07:42 +01:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2016-08-20 23:00:23 +02:00
|
|
|
#undef strlcat
|
|
|
|
#undef strlcpy
|
|
|
|
|
|
|
|
#include "strlcat.h"
|
|
|
|
#include "strlcpy.h"
|
2016-09-08 03:31:49 +02:00
|
|
|
#include "concat.h"
|
|
|
|
|
|
|
|
char concat[];
|
2016-08-20 23:00:23 +02:00
|
|
|
|
2016-08-18 14:55:05 +02:00
|
|
|
struct arg {
|
2016-09-01 20:15:40 +02:00
|
|
|
char *(*func)();
|
2016-08-18 14:55:05 +02:00
|
|
|
const char *format;
|
|
|
|
const char *args;
|
|
|
|
};
|
|
|
|
|
2016-09-11 12:33:35 +02:00
|
|
|
static unsigned short int delay;
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *smprintf(const char *, ...);
|
|
|
|
static char *battery_perc(const char *);
|
2016-08-21 11:00:51 +02:00
|
|
|
static char *cpu_perc(void);
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *datetime(const char *);
|
|
|
|
static char *disk_free(const char *);
|
|
|
|
static char *disk_perc(const char *);
|
|
|
|
static char *disk_total(const char *);
|
|
|
|
static char *disk_used(const char *);
|
2016-08-21 11:00:51 +02:00
|
|
|
static char *entropy(void);
|
|
|
|
static char *gid(void);
|
|
|
|
static char *hostname(void);
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *ip(const char *);
|
2016-08-21 11:00:51 +02:00
|
|
|
static char *load_avg(void);
|
|
|
|
static char *ram_free(void);
|
|
|
|
static char *ram_perc(void);
|
|
|
|
static char *ram_used(void);
|
|
|
|
static char *ram_total(void);
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *run_command(const char *);
|
|
|
|
static char *temp(const char *);
|
2016-08-21 11:00:51 +02:00
|
|
|
static char *uid(void);
|
|
|
|
static char *uptime(void);
|
|
|
|
static char *username(void);
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *vol_perc(const char *);
|
|
|
|
static char *wifi_perc(const char *);
|
|
|
|
static char *wifi_essid(const char *);
|
2016-08-21 10:10:14 +02:00
|
|
|
|
2016-08-18 14:55:05 +02:00
|
|
|
static Display *dpy;
|
|
|
|
|
2016-03-14 20:17:14 +01:00
|
|
|
#include "config.h"
|
2016-03-10 14:59:37 +01:00
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-14 20:17:14 +01:00
|
|
|
smprintf(const char *fmt, ...)
|
2016-03-09 16:30:52 +01:00
|
|
|
{
|
2016-08-28 15:30:12 +02:00
|
|
|
va_list ap;
|
2016-08-28 18:27:01 +02:00
|
|
|
char *ret;
|
|
|
|
int len;
|
2016-03-14 20:17:14 +01:00
|
|
|
|
2016-08-28 15:30:12 +02:00
|
|
|
va_start(ap, fmt);
|
2016-08-28 18:27:01 +02:00
|
|
|
len = vsnprintf(NULL, 0, fmt, ap);
|
|
|
|
va_end(ap);
|
2016-08-28 17:19:53 +02:00
|
|
|
|
2016-08-28 18:27:01 +02:00
|
|
|
ret = malloc(++len);
|
|
|
|
if (ret == NULL) {
|
|
|
|
perror("malloc");
|
|
|
|
exit(1);
|
|
|
|
}
|
2016-03-09 16:30:52 +01:00
|
|
|
|
2016-08-28 18:27:01 +02:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(ret, len, fmt, ap);
|
2016-08-28 15:30:12 +02:00
|
|
|
va_end(ap);
|
2016-08-28 18:27:01 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return ret;
|
2016-03-09 16:30:52 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-18 16:15:05 +01:00
|
|
|
battery_perc(const char *battery)
|
2016-03-07 10:00:02 +01:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int now, full, perc;
|
2016-08-31 05:00:14 +02:00
|
|
|
FILE *fp;
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
ccat(4, BATTERY_PATH, battery, "/", BATTERY_NOW);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
fp = fopen(concat, "r");
|
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening battery file: %s", concat);
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fscanf(fp, "%i", &now);
|
|
|
|
fclose(fp);
|
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
ccat(4, BATTERY_PATH, battery, "/", BATTERY_FULL);
|
|
|
|
|
|
|
|
fp = fopen(concat, "r");
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening battery file: %s", concat);
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fscanf(fp, "%i", &full);
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
perc = now / (full / 100);
|
|
|
|
|
|
|
|
return smprintf("%d%%", perc);
|
2016-03-07 10:00:02 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
cpu_perc(void)
|
2016-09-11 12:33:35 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int perc;
|
|
|
|
long double a[4], b[4];
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/stat","r");
|
2016-03-07 10:00:02 +01:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening stat file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-03-07 10:00:02 +01:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
|
|
|
|
fclose(fp);
|
2016-03-07 10:00:02 +01:00
|
|
|
|
2016-09-11 12:33:35 +02:00
|
|
|
delay = (UPDATE_INTERVAL - (UPDATE_INTERVAL - 1));
|
|
|
|
sleep(delay);
|
2016-03-07 10:00:02 +01:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
fp = fopen("/proc/stat","r");
|
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening stat file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-03-07 10:00:02 +01:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
|
|
|
|
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]));
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d%%", perc);
|
2016-03-07 10:00:02 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-18 16:15:05 +01:00
|
|
|
datetime(const char *timeformat)
|
2016-03-07 10:00:02 +01:00
|
|
|
{
|
2016-08-28 15:39:04 +02:00
|
|
|
time_t t;
|
|
|
|
char timestr[80];
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-08-28 15:39:04 +02:00
|
|
|
t = time(NULL);
|
|
|
|
if (strftime(timestr, sizeof(timestr), timeformat, localtime(&t)) == 0)
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-08-28 15:39:04 +02:00
|
|
|
return smprintf("%s", timestr);
|
2016-03-07 10:00:02 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-06-10 19:13:13 +02:00
|
|
|
disk_free(const char *mountpoint)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
struct statvfs fs;
|
2016-06-10 19:13:13 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
if (statvfs(mountpoint, &fs) < 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not get filesystem info");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
|
2016-06-10 19:13:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-18 16:15:05 +01:00
|
|
|
disk_perc(const char *mountpoint)
|
2016-03-11 12:18:23 +01:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int perc = 0;
|
|
|
|
struct statvfs fs;
|
2016-03-11 13:15:17 +01:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
if (statvfs(mountpoint, &fs) < 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not get filesystem info");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-03-11 13:11:15 +01:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks));
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d%%", perc);
|
2016-03-11 12:18:23 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-06-10 19:13:13 +02:00
|
|
|
disk_total(const char *mountpoint)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
struct statvfs fs;
|
2016-06-10 19:13:13 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
if (statvfs(mountpoint, &fs) < 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not get filesystem info");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 19:13:13 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
|
2016-06-10 19:13:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-06-10 19:13:13 +02:00
|
|
|
disk_used(const char *mountpoint)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
struct statvfs fs;
|
2016-06-10 19:13:13 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
if (statvfs(mountpoint, &fs) < 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not get filesystem info");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 19:13:13 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024);
|
2016-06-10 19:13:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
entropy(void)
|
2016-06-03 13:04:15 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int entropy = 0;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/sys/kernel/random/entropy_avail", "r");
|
2016-06-03 13:04:15 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not open entropy file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-03 13:04:15 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "%d", &entropy);
|
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d", entropy);
|
2016-06-03 13:04:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
gid(void)
|
2016-06-13 18:49:50 +02:00
|
|
|
{
|
2016-09-01 20:51:32 +02:00
|
|
|
return smprintf("%d", getgid());
|
2016-06-13 18:49:50 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
hostname(void)
|
2016-06-10 15:53:07 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
char hostname[HOST_NAME_MAX];
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/sys/kernel/hostname", "r");
|
2016-06-10 15:53:07 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not open hostname file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 15:53:07 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
fgets(hostname, sizeof(hostname), fp);
|
|
|
|
/* FIXME: needs improvement */
|
|
|
|
memset(&hostname[strlen(hostname)-1], '\0',
|
|
|
|
sizeof(hostname) - strlen(hostname));
|
2016-08-16 11:41:43 +02:00
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%s", hostname);
|
2016-06-10 15:53:07 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-06-08 09:42:32 +02:00
|
|
|
ip(const char *interface)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
struct ifaddrs *ifaddr, *ifa;
|
|
|
|
int s;
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
|
|
|
|
if (getifaddrs(&ifaddr) == -1) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error getting IP address");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
|
2016-08-20 23:28:36 +02:00
|
|
|
if (ifa->ifa_addr == NULL)
|
2016-08-16 11:41:43 +02:00
|
|
|
continue;
|
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST,
|
|
|
|
NULL, 0, NI_NUMERICHOST);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
|
|
|
if ((strcmp(ifa->ifa_name, interface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
|
|
|
|
if (s != 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warnx("Error getting IP address.");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
return smprintf("%s", host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
freeifaddrs(ifaddr);
|
|
|
|
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-06-08 09:42:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
load_avg(void)
|
2016-08-18 13:30:45 +02:00
|
|
|
{
|
|
|
|
double avgs[3];
|
|
|
|
|
|
|
|
if (getloadavg(avgs, 3) < 0) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warnx("Error getting load avg.");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-18 13:30:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return smprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
ram_free(void)
|
2016-06-10 18:46:47 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
long free;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/meminfo", "r");
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening meminfo file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "MemFree: %ld kB\n", &free);
|
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)free / 1024 / 1024);
|
2016-06-10 18:46:47 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
ram_perc(void)
|
2016-03-07 10:00:02 +01:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int perc;
|
|
|
|
long total, free, buffers, cached;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/meminfo", "r");
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening meminfo file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fscanf(fp, "MemTotal: %ld kB\n", &total);
|
|
|
|
fscanf(fp, "MemFree: %ld kB\n", &free);
|
|
|
|
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n", &buffers, &buffers);
|
|
|
|
fscanf(fp, "Cached: %ld kB\n", &cached);
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
perc = 100 * ((total - free) - (buffers + cached)) / total;
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d%%", perc);
|
2016-03-07 10:00:02 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
ram_total(void)
|
2016-06-10 18:46:47 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
long total;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/meminfo", "r");
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening meminfo file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "MemTotal: %ld kB\n", &total);
|
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)total / 1024 / 1024);
|
2016-06-10 18:46:47 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
ram_used(void)
|
2016-06-10 18:46:47 +02:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
long free, total, buffers, cached, used;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen("/proc/meminfo", "r");
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening meminfo file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "MemTotal: %ld kB\n", &total);
|
|
|
|
fscanf(fp, "MemFree: %ld kB\n", &free);
|
|
|
|
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n", &buffers, &buffers);
|
|
|
|
fscanf(fp, "Cached: %ld kB\n", &cached);
|
2016-06-10 18:46:47 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fclose(fp);
|
|
|
|
used = total - free - buffers - cached;
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%f", (float)used / 1024 / 1024);
|
2016-06-10 18:46:47 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-15 12:23:35 +02:00
|
|
|
run_command(const char* command)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int good;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = popen(command, "r");
|
2016-09-09 19:18:14 +02:00
|
|
|
char buffer[64] = "";
|
2016-08-15 12:23:35 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not get command output for: %s", command);
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-08-15 12:23:35 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
fgets(buffer, sizeof(buffer)-1, fp);
|
2016-08-15 12:23:35 +02:00
|
|
|
pclose(fp);
|
2016-08-16 11:41:43 +02:00
|
|
|
for (int i = 0 ; i != sizeof(buffer); i++) {
|
|
|
|
if (buffer[i] == '\0') {
|
|
|
|
good = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-20 23:28:36 +02:00
|
|
|
if (good)
|
2016-08-30 20:50:40 +02:00
|
|
|
buffer[strlen(buffer)-1] = '\0';
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-15 12:23:35 +02:00
|
|
|
return smprintf("%s", buffer);
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-18 16:15:05 +01:00
|
|
|
temp(const char *file)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int temperature;
|
2016-08-30 20:50:40 +02:00
|
|
|
FILE *fp = fopen(file, "r");
|
2016-03-18 16:15:05 +01:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Could not open temperature file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
2016-03-18 16:15:05 +01:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
fscanf(fp, "%d", &temperature);
|
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d°C", temperature / 1000);
|
2016-03-18 16:15:05 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
uptime(void)
|
2016-08-18 13:43:18 +02:00
|
|
|
{
|
|
|
|
struct sysinfo info;
|
|
|
|
int hours = 0;
|
|
|
|
int minutes = 0;
|
|
|
|
|
|
|
|
sysinfo(&info);
|
|
|
|
hours = info.uptime / 3600;
|
|
|
|
minutes = (info.uptime - hours * 3600 ) / 60;
|
|
|
|
|
|
|
|
return smprintf("%dh %dm", hours, minutes);
|
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
username(void)
|
2016-06-13 18:49:50 +02:00
|
|
|
{
|
2016-09-01 20:35:32 +02:00
|
|
|
uid_t uid = geteuid();
|
|
|
|
struct passwd *pw = getpwuid(uid);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-09 19:19:46 +02:00
|
|
|
if (pw == NULL) {
|
|
|
|
warn("Could not get username");
|
|
|
|
return smprintf(UNKNOWN_STR);
|
|
|
|
}
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-09 19:19:46 +02:00
|
|
|
return smprintf("%s", pw->pw_name);
|
2016-06-13 18:49:50 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-21 11:00:51 +02:00
|
|
|
uid(void)
|
2016-06-13 18:49:50 +02:00
|
|
|
{
|
2016-09-01 20:35:32 +02:00
|
|
|
return smprintf("%d", geteuid());
|
2016-06-13 18:49:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-05 00:18:55 +02:00
|
|
|
static char *
|
|
|
|
vol_perc(const char *snd_card)
|
2016-09-11 12:33:35 +02:00
|
|
|
{ /* FIX THIS SHIT! */
|
2016-09-05 00:18:55 +02:00
|
|
|
long int vol, max, min;
|
2016-08-16 11:41:43 +02:00
|
|
|
snd_mixer_t *handle;
|
2016-09-05 00:18:55 +02:00
|
|
|
snd_mixer_elem_t *elem;
|
|
|
|
snd_mixer_selem_id_t *s_elem;
|
2016-08-16 11:41:43 +02:00
|
|
|
|
|
|
|
snd_mixer_open(&handle, 0);
|
2016-09-05 01:28:18 +02:00
|
|
|
snd_mixer_attach(handle, "default");
|
2016-08-16 11:41:43 +02:00
|
|
|
snd_mixer_selem_register(handle, NULL, NULL);
|
|
|
|
snd_mixer_load(handle);
|
2016-09-05 00:18:55 +02:00
|
|
|
snd_mixer_selem_id_malloc(&s_elem);
|
2016-09-05 01:28:18 +02:00
|
|
|
snd_mixer_selem_id_set_name(s_elem, snd_card);
|
2016-09-05 00:18:55 +02:00
|
|
|
elem = snd_mixer_find_selem(handle, s_elem);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-05 00:18:55 +02:00
|
|
|
if (elem == NULL) {
|
|
|
|
snd_mixer_selem_id_free(s_elem);
|
|
|
|
snd_mixer_close(handle);
|
2016-09-05 01:28:18 +02:00
|
|
|
perror("alsa error");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
2016-09-05 00:18:55 +02:00
|
|
|
snd_mixer_handle_events(handle);
|
|
|
|
snd_mixer_selem_get_playback_volume_range(elem, &min, &max);
|
|
|
|
snd_mixer_selem_get_playback_volume(elem, 0, &vol);
|
|
|
|
|
|
|
|
snd_mixer_selem_id_free(s_elem);
|
|
|
|
snd_mixer_close(handle);
|
|
|
|
|
|
|
|
return smprintf("%d", (vol * 100) / max);
|
2016-03-04 18:07:42 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-03-18 16:15:05 +01:00
|
|
|
wifi_perc(const char *wificard)
|
2016-03-04 18:07:42 +01:00
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
int strength;
|
2016-08-30 20:50:40 +02:00
|
|
|
char buf[255];
|
2016-08-16 11:41:43 +02:00
|
|
|
char *datastart;
|
|
|
|
char status[5];
|
2016-08-31 13:29:27 +02:00
|
|
|
FILE *fp;
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
ccat(3, "/sys/class/net", wificard, "/operstate");
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
fp = fopen(concat, "r");
|
2016-08-31 13:29:27 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
if(fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening wifi operstate file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fgets(status, 5, fp);
|
|
|
|
fclose(fp);
|
2016-08-20 23:28:36 +02:00
|
|
|
if(strcmp(status, "up\n") != 0)
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2016-08-30 20:50:40 +02:00
|
|
|
fp = fopen("/proc/net/wireless", "r");
|
|
|
|
if (fp == NULL) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Error opening wireless file");
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
ccat(2, wificard, ":");
|
2016-08-30 20:50:40 +02:00
|
|
|
fgets(buf, sizeof(buf), fp);
|
|
|
|
fgets(buf, sizeof(buf), fp);
|
|
|
|
fgets(buf, sizeof(buf), fp);
|
|
|
|
|
2016-09-08 03:31:49 +02:00
|
|
|
datastart = strstr(buf, concat);
|
2016-08-30 20:50:40 +02:00
|
|
|
if (datastart != NULL) {
|
2016-08-16 11:41:43 +02:00
|
|
|
datastart = strstr(buf, ":");
|
|
|
|
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &strength);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
2016-09-09 19:15:43 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%d%%", strength);
|
2016-03-04 18:07:42 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 10:28:42 +02:00
|
|
|
static char *
|
2016-08-15 14:43:29 +02:00
|
|
|
wifi_essid(const char *wificard)
|
|
|
|
{
|
2016-08-16 11:41:43 +02:00
|
|
|
char id[IW_ESSID_MAX_SIZE+1];
|
2016-08-30 20:50:40 +02:00
|
|
|
int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
2016-08-16 11:41:43 +02:00
|
|
|
struct iwreq wreq;
|
|
|
|
|
|
|
|
memset(&wreq, 0, sizeof(struct iwreq));
|
|
|
|
wreq.u.essid.length = IW_ESSID_MAX_SIZE+1;
|
|
|
|
sprintf(wreq.ifr_name, wificard);
|
2016-08-30 20:50:40 +02:00
|
|
|
if(sockfd == -1) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Cannot open socket for interface: %s", wificard);
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
wreq.u.essid.pointer = id;
|
|
|
|
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
|
2016-09-08 03:45:00 +02:00
|
|
|
warn("Get ESSID ioctl failed for interface %s", wificard);
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-16 11:41:43 +02:00
|
|
|
}
|
|
|
|
|
2016-08-20 23:28:36 +02:00
|
|
|
if (strcmp((char *)wreq.u.essid.pointer, "") == 0)
|
2016-08-28 15:20:50 +02:00
|
|
|
return smprintf(UNKNOWN_STR);
|
2016-08-20 23:28:36 +02:00
|
|
|
else
|
2016-08-16 11:41:43 +02:00
|
|
|
return smprintf("%s", (char *)wreq.u.essid.pointer);
|
2016-08-15 14:43:29 +02:00
|
|
|
}
|
|
|
|
|
2016-03-04 18:07:42 +01:00
|
|
|
int
|
2016-09-05 00:13:48 +02:00
|
|
|
main(void)
|
2016-03-04 18:07:42 +01:00
|
|
|
{
|
2016-08-21 14:19:45 +02:00
|
|
|
size_t i;
|
2016-09-05 00:13:48 +02:00
|
|
|
char status_string[4096];
|
2016-08-21 14:19:45 +02:00
|
|
|
char *res, *element;
|
2016-08-16 11:41:43 +02:00
|
|
|
struct arg argument;
|
|
|
|
|
2016-09-05 00:13:48 +02:00
|
|
|
dpy = XOpenDisplay(NULL);
|
|
|
|
|
2016-09-05 00:21:03 +02:00
|
|
|
for (;;) {
|
|
|
|
memset(status_string, 0, sizeof(status_string));
|
|
|
|
for (i = 0; i < sizeof(args) / sizeof(args[0]); ++i) {
|
|
|
|
argument = args[i];
|
|
|
|
if (argument.args == NULL)
|
|
|
|
res = argument.func();
|
|
|
|
else
|
|
|
|
res = argument.func(argument.args);
|
|
|
|
element = smprintf(argument.format, res);
|
|
|
|
if (element == NULL) {
|
|
|
|
element = smprintf(UNKNOWN_STR);
|
2016-09-08 03:45:00 +02:00
|
|
|
warnx("Failed to format output.");
|
2016-09-05 00:21:03 +02:00
|
|
|
}
|
|
|
|
strlcat(status_string, element, sizeof(status_string));
|
|
|
|
free(res);
|
|
|
|
free(element);
|
2016-09-03 23:10:49 +02:00
|
|
|
}
|
2016-09-05 01:17:30 +02:00
|
|
|
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
|
|
|
|
XSync(dpy, False);
|
2016-09-11 12:33:35 +02:00
|
|
|
/*
|
|
|
|
* subtract delay time spend in function
|
|
|
|
* calls from the actual global delay time
|
|
|
|
*/
|
|
|
|
sleep(UPDATE_INTERVAL - delay);
|
|
|
|
delay = 0;
|
2016-09-03 23:10:49 +02:00
|
|
|
}
|
2016-09-09 19:26:06 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
XCloseDisplay(dpy);
|
2016-09-05 00:13:48 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return 0;
|
2016-03-04 18:07:42 +01:00
|
|
|
}
|