| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913 |
- /* See LICENSE file for copyright and license details. */
- #include <dirent.h>
- #include <err.h>
- #include <fcntl.h>
- #include <ifaddrs.h>
- #include <limits.h>
- #include <linux/wireless.h>
- #include <locale.h>
- #include <netdb.h>
- #include <pwd.h>
- #include <signal.h>
- #include <stdarg.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/ioctl.h>
- #include <sys/stat.h>
- #include <sys/statvfs.h>
- #include <sys/socket.h>
- #include <sys/soundcard.h>
- #include <sys/sysinfo.h>
- #include <sys/types.h>
- #include <sys/utsname.h>
- #include <time.h>
- #include <unistd.h>
- #include <X11/Xlib.h>
- #include "arg.h"
- struct arg {
- const char *(*func)();
- const char *fmt;
- const char *args;
- };
- static const char *bprintf(const char *fmt, ...);
- static const char *battery_perc(const char *bat);
- static const char *battery_power(const char *bat);
- static const char *battery_state(const char *bat);
- static const char *cpu_freq(void);
- static const char *cpu_perc(void);
- static const char *datetime(const char *fmt);
- static const char *disk_free(const char *mnt);
- static const char *disk_perc(const char *mnt);
- static const char *disk_total(const char *mnt);
- static const char *disk_used(const char *mnt);
- static const char *entropy(void);
- static const char *gid(void);
- static const char *hostname(void);
- static const char *ip(const char *iface);
- static const char *kernel_release(void);
- static const char *keyboard_indicators(void);
- static const char *load_avg(void);
- static const char *num_files(const char *dir);
- static const char *ram_free(void);
- static const char *ram_perc(void);
- static const char *ram_used(void);
- static const char *ram_total(void);
- static const char *run_command(const char *cmd);
- static const char *swap_free(void);
- static const char *swap_perc(void);
- static const char *swap_used(void);
- static const char *swap_total(void);
- static const char *temp(const char *file);
- static const char *uid(void);
- static const char *uptime(void);
- static const char *username(void);
- static const char *vol_perc(const char *card);
- static const char *wifi_perc(const char *iface);
- static const char *wifi_essid(const char *iface);
- static void sighandler(const int signo);
- static void usage(void);
- char *argv0;
- static unsigned short int delay = 0;
- static unsigned short int done;
- static Display *dpy;
- #include "config.h"
- static char buf[MAXLEN];
- static const char *
- bprintf(const char *fmt, ...)
- {
- va_list ap;
- size_t len;
- va_start(ap, fmt);
- len = vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
- va_end(ap);
- if (len >= sizeof(buf))
- buf[sizeof(buf)-1] = '\0';
- return buf;
- }
- static const char *
- battery_perc(const char *bat)
- {
- int n, perc;
- char path[PATH_MAX];
- FILE *fp;
- snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/capacity");
- fp = fopen(path, "r");
- if (fp == NULL) {
- warn("Failed to open file %s", path);
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%i", &perc);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%d", perc);
- }
- static const char *
- battery_power(const char *bat)
- {
- char path[PATH_MAX];
- FILE *fp;
- int n, watts;
- snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/power_now");
- fp = fopen(path, "r");
- if (fp == NULL) {
- warn("Failed to open file %s", path);
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%i", &watts);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%d", (watts + 500000) / 1000000);
- }
- static const char *
- battery_state(const char *bat)
- {
- char path[PATH_MAX];
- char state[12];
- FILE *fp;
- int n;
- snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/status");
- fp = fopen(path, "r");
- if (fp == NULL) {
- warn("Failed to open file %s", path);
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%12s", state);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- if (strcmp(state, "Charging") == 0) {
- return "+";
- } else if (strcmp(state, "Discharging") == 0) {
- return "-";
- } else if (strcmp(state, "Full") == 0) {
- return "=";
- } else if (strcmp(state, "Unknown") == 0) {
- return "/";
- } else {
- return "?";
- }
- }
- static const char *
- cpu_freq(void)
- {
- int n, freq;
- FILE *fp;
- fp = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", "r");
- if (fp == NULL) {
- warn("Failed to open file /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%i", &freq);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%d", (freq + 500) / 1000);
- }
- static const char *
- cpu_perc(void)
- {
- int n, perc;
- long double a[4], b[4];
- FILE *fp;
- fp = fopen("/proc/stat", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/stat");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
- fclose(fp);
- if (n != 4)
- return UNKNOWN_STR;
- delay++;
- sleep(delay);
- fp = fopen("/proc/stat", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/stat");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
- fclose(fp);
- if (n != 4)
- return UNKNOWN_STR;
- 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 bprintf("%d", perc);
- }
- static const char *
- datetime(const char *fmt)
- {
- time_t t;
- t = time(NULL);
- if (strftime(buf, sizeof(buf), fmt, localtime(&t)) == 0)
- return UNKNOWN_STR;
- return buf;
- }
- static const char *
- disk_free(const char *mnt)
- {
- struct statvfs fs;
- if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
- return UNKNOWN_STR;
- }
- return bprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
- }
- static const char *
- disk_perc(const char *mnt)
- {
- int perc;
- struct statvfs fs;
- if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
- return UNKNOWN_STR;
- }
- perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks));
- return bprintf("%d", perc);
- }
- static const char *
- disk_total(const char *mnt)
- {
- struct statvfs fs;
- if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
- return UNKNOWN_STR;
- }
- return bprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
- }
- static const char *
- disk_used(const char *mnt)
- {
- struct statvfs fs;
- if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
- return UNKNOWN_STR;
- }
- return bprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024);
- }
- static const char *
- entropy(void)
- {
- int n, num;
- FILE *fp;
- fp= fopen("/proc/sys/kernel/random/entropy_avail", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/sys/kernel/random/entropy_avail");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%d", &num);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%d", num);
- }
- static const char *
- gid(void)
- {
- return bprintf("%d", getgid());
- }
- static const char *
- hostname(void)
- {
- if (gethostname(buf, sizeof(buf)) == -1) {
- warn("hostname");
- return UNKNOWN_STR;
- }
- return buf;
- }
- static const char *
- ip(const char *iface)
- {
- struct ifaddrs *ifaddr, *ifa;
- int s;
- char host[NI_MAXHOST];
- if (getifaddrs(&ifaddr) == -1) {
- warn("Failed to get IP address for interface %s", iface);
- return UNKNOWN_STR;
- }
- for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
- if (ifa->ifa_addr == NULL) {
- continue;
- }
- s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
- if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
- if (s != 0) {
- warnx("Failed to get IP address for interface %s", iface);
- return UNKNOWN_STR;
- }
- return bprintf("%s", host);
- }
- }
- freeifaddrs(ifaddr);
- return UNKNOWN_STR;
- }
- static const char *
- kernel_release(void)
- {
- struct utsname udata;
- if (uname(&udata) < 0) {
- return UNKNOWN_STR;
- }
- return bprintf("%s", udata.release);
- }
- static const char *
- keyboard_indicators(void)
- {
- Display *dpy = XOpenDisplay(NULL);
- XKeyboardState state;
- XGetKeyboardControl(dpy, &state);
- XCloseDisplay(dpy);
- switch (state.led_mask) {
- case 1:
- return "c";
- case 2:
- return "n";
- case 3:
- return "cn";
- default:
- return "";
- }
- }
- static const char *
- load_avg(void)
- {
- double avgs[3];
- if (getloadavg(avgs, 3) < 0) {
- warnx("Failed to get the load avg");
- return UNKNOWN_STR;
- }
- return bprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
- }
- static const char *
- num_files(const char *dir)
- {
- struct dirent *dp;
- DIR *fd;
- int num = 0;
- if ((fd = opendir(dir)) == NULL) {
- warn("Failed to get number of files in directory %s", dir);
- return UNKNOWN_STR;
- }
- while ((dp = readdir(fd)) != NULL) {
- if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
- continue; /* skip self and parent */
- num++;
- }
- closedir(fd);
- return bprintf("%d", num);
- }
- static const char *
- ram_free(void)
- {
- long free;
- FILE *fp;
- int n;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "MemFree: %ld kB\n", &free);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%f", (float)free / 1024 / 1024);
- }
- static const char *
- ram_perc(void)
- {
- long total, free, buffers, cached;
- FILE *fp;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
- fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
- fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n",
- &buffers, &buffers) != 2 ||
- fscanf(fp, "Cached: %ld kB\n", &cached) != 1)
- goto scanerr;
- fclose(fp);
- return bprintf("%d", 100 * ((total - free) - (buffers + cached)) / total);
- scanerr:
- fclose(fp);
- return UNKNOWN_STR;
- }
- static const char *
- ram_total(void)
- {
- long total;
- FILE *fp;
- int n;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "MemTotal: %ld kB\n", &total);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%f", (float)total / 1024 / 1024);
- }
- static const char *
- ram_used(void)
- {
- long free, total, buffers, cached;
- FILE *fp;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
- fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
- fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n",
- &buffers, &buffers) != 2 ||
- fscanf(fp, "Cached: %ld kB\n", &cached) != 1)
- goto scanerr;
- fclose(fp);
- return bprintf("%f", (float)(total - free - buffers - cached) / 1024 / 1024);
- scanerr:
- fclose(fp);
- return UNKNOWN_STR;
- }
- static const char *
- run_command(const char *cmd)
- {
- char *p;
- FILE *fp;
- fp = popen(cmd, "r");
- if (fp == NULL) {
- warn("Failed to get command output for %s", cmd);
- return UNKNOWN_STR;
- }
- p = fgets(buf, sizeof(buf) - 1, fp);
- pclose(fp);
- if (!p)
- return UNKNOWN_STR;
- if ((p = strrchr(buf, '\n')) != NULL)
- p[0] = '\0';
- return buf[0] ? buf : UNKNOWN_STR;
- }
- static const char *
- swap_free(void)
- {
- long total, free;
- FILE *fp;
- size_t bytes_read;
- char *match;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_free: read error");
- fclose(fp);
- return UNKNOWN_STR;
- }
- fclose(fp);
- if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapTotal: %ld kB\n", &total);
- if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapFree: %ld kB\n", &free);
- return bprintf("%f", (float)free / 1024 / 1024);
- }
- static const char *
- swap_perc(void)
- {
- long total, free, cached;
- FILE *fp;
- size_t bytes_read;
- char *match;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_perc: read error");
- fclose(fp);
- return UNKNOWN_STR;
- }
- fclose(fp);
- if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapTotal: %ld kB\n", &total);
- if ((match = strstr(buf, "SwapCached")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapCached: %ld kB\n", &cached);
- if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapFree: %ld kB\n", &free);
- return bprintf("%d", 100 * (total - free - cached) / total);
- }
- static const char *
- swap_total(void)
- {
- long total;
- FILE *fp;
- size_t bytes_read;
- char *match;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_total: read error");
- fclose(fp);
- return UNKNOWN_STR;
- }
- fclose(fp);
- if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapTotal: %ld kB\n", &total);
- return bprintf("%f", (float)total / 1024 / 1024);
- }
- static const char *
- swap_used(void)
- {
- long total, free, cached;
- FILE *fp;
- size_t bytes_read;
- char *match;
- fp = fopen("/proc/meminfo", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
- }
- if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_used: read error");
- fclose(fp);
- return UNKNOWN_STR;
- }
- fclose(fp);
- if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapTotal: %ld kB\n", &total);
- if ((match = strstr(buf, "SwapCached")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapCached: %ld kB\n", &cached);
- if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
- sscanf(match, "SwapFree: %ld kB\n", &free);
- return bprintf("%f", (float)(total - free - cached) / 1024 / 1024);
- }
- static const char *
- temp(const char *file)
- {
- int n, temp;
- FILE *fp;
- fp = fopen(file, "r");
- if (fp == NULL) {
- warn("Failed to open file %s", file);
- return UNKNOWN_STR;
- }
- n = fscanf(fp, "%d", &temp);
- fclose(fp);
- if (n != 1)
- return UNKNOWN_STR;
- return bprintf("%d", temp / 1000);
- }
- static const char *
- uptime(void)
- {
- struct sysinfo info;
- int h = 0;
- int m = 0;
- sysinfo(&info);
- h = info.uptime / 3600;
- m = (info.uptime - h * 3600 ) / 60;
- return bprintf("%dh %dm", h, m);
- }
- static const char *
- username(void)
- {
- struct passwd *pw = getpwuid(geteuid());
- if (pw == NULL) {
- warn("Failed to get username");
- return UNKNOWN_STR;
- }
- return bprintf("%s", pw->pw_name);
- }
- static const char *
- uid(void)
- {
- return bprintf("%d", geteuid());
- }
- static const char *
- vol_perc(const char *card)
- {
- unsigned int i;
- int v, afd, devmask;
- char *vnames[] = SOUND_DEVICE_NAMES;
- afd = open(card, O_RDONLY | O_NONBLOCK);
- if (afd == -1) {
- warn("Cannot open %s", card);
- return UNKNOWN_STR;
- }
- if (ioctl(afd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
- warn("Cannot get volume for %s", card);
- close(afd);
- return UNKNOWN_STR;
- }
- for (i = 0; i < (sizeof(vnames) / sizeof((vnames[0]))); i++) {
- if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
- if (ioctl(afd, MIXER_READ(i), &v) == -1) {
- warn("vol_perc: ioctl");
- close(afd);
- return UNKNOWN_STR;
- }
- }
- }
- close(afd);
- return bprintf("%d", v & 0xff);
- }
- static const char *
- wifi_perc(const char *iface)
- {
- int i, perc;
- char *p, *datastart;
- char path[PATH_MAX];
- char status[5];
- FILE *fp;
- snprintf(path, sizeof(path), "%s%s%s", "/sys/class/net/", iface, "/operstate");
- fp = fopen(path, "r");
- if (fp == NULL) {
- warn("Failed to open file %s", path);
- return UNKNOWN_STR;
- }
- p = fgets(status, 5, fp);
- fclose(fp);
- if(!p || strcmp(status, "up\n") != 0) {
- return UNKNOWN_STR;
- }
- fp = fopen("/proc/net/wireless", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/net/wireless");
- return UNKNOWN_STR;
- }
- for (i = 0; i < 3; i++) {
- if (!(p = fgets(buf, sizeof(buf) - 1, fp)))
- break;
- }
- fclose(fp);
- if (i < 2 || !p)
- return UNKNOWN_STR;
- if ((datastart = strstr(buf, iface)) == NULL)
- return UNKNOWN_STR;
- datastart = (datastart+(strlen(iface)+1));
- sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &perc);
- return bprintf("%d", perc);
- }
- static const char *
- wifi_essid(const char *iface)
- {
- static char id[IW_ESSID_MAX_SIZE+1];
- int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
- struct iwreq wreq;
- memset(&wreq, 0, sizeof(struct iwreq));
- wreq.u.essid.length = IW_ESSID_MAX_SIZE+1;
- snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface);
- if (sockfd == -1) {
- warn("Failed to get ESSID for interface %s", iface);
- return UNKNOWN_STR;
- }
- wreq.u.essid.pointer = id;
- if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
- warn("Failed to get ESSID for interface %s", iface);
- return UNKNOWN_STR;
- }
- close(sockfd);
- if (strcmp(id, "") == 0)
- return UNKNOWN_STR;
- else
- return id;
- }
- static void
- sighandler(const int signo)
- {
- if (signo == SIGTERM || signo == SIGINT) {
- done = 1;
- }
- }
- static void
- usage(void)
- {
- fprintf(stderr, "usage: %s [-s]\n", argv0);
- exit(1);
- }
- int
- main(int argc, char *argv[])
- {
- struct arg argument;
- struct sigaction act;
- size_t i, len;
- int sflag = 0;
- char status_string[MAXLEN];
- char *element;
- ARGBEGIN {
- case 's':
- sflag = 1;
- break;
- default:
- usage();
- } ARGEND
- memset(&act, 0, sizeof(act));
- act.sa_handler = sighandler;
- sigaction(SIGINT, &act, 0);
- sigaction(SIGTERM, &act, 0);
- if (!sflag) {
- dpy = XOpenDisplay(NULL);
- }
- setlocale(LC_ALL, "");
- while (!done) {
- status_string[0] = '\0';
- for (element = status_string, i = len = 0;
- i < sizeof(args) / sizeof(args[0]);
- ++i, element += len) {
- argument = args[i];
- len = snprintf(element, sizeof(status_string)-1 - len,
- argument.fmt,
- argument.func(argument.args));
- if (len >= sizeof(status_string)) {
- status_string[sizeof(status_string)-1] = '\0';
- break;
- }
- }
- if (sflag) {
- printf("%s\n", status_string);
- } else {
- XStoreName(dpy, DefaultRootWindow(dpy), status_string);
- XSync(dpy, False);
- }
- if ((UPDATE_INTERVAL - delay) <= 0) {
- delay = 0;
- continue;
- } else {
- sleep(UPDATE_INTERVAL - delay);
- delay = 0;
- }
- }
- if (!sflag) {
- XStoreName(dpy, DefaultRootWindow(dpy), NULL);
- XCloseDisplay(dpy);
- }
- return 0;
- }
|