/* See LICENSE file for copyright and license details. */
-#include <err.h>
#include <stdio.h>
#if defined(__linux__)
#include <limits.h>
fd = open("/dev/apm", O_RDONLY);
if (fd < 0) {
- warn("Failed to open file /dev/apm");
+ fprintf(stderr, "Failed to open file /dev/apm");
return NULL;
}
if (ioctl(fd, APM_IOC_GETPOWER, &apm_info) < 0) {
- warn("Failed to get battery info");
+ fprintf(stderr, "Failed to get battery info");
close(fd);
return NULL;
}
/* See LICENSE file for copyright and license details. */
-#include <err.h>
#include <stdio.h>
#include <sys/statvfs.h>
struct statvfs fs;
if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
+ fprintf(stderr, "Failed to get filesystem info");
return NULL;
}
struct statvfs fs;
if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
+ fprintf(stderr, "Failed to get filesystem info");
return NULL;
}
struct statvfs fs;
if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
+ fprintf(stderr, "Failed to get filesystem info");
return NULL;
}
struct statvfs fs;
if (statvfs(mnt, &fs) < 0) {
- warn("Failed to get filesystem info");
+ fprintf(stderr, "Failed to get filesystem info");
return NULL;
}
/* See LICENSE file for copyright and license details. */
-#include <err.h>
+#include <stdio.h>
#include <unistd.h>
#include "../util.h"
hostname(void)
{
if (gethostname(buf, sizeof(buf)) == -1) {
- warn("hostname");
+ fprintf(stderr, "gethostbyname failed");
return NULL;
}
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
-#include <err.h>
#include <ifaddrs.h>
#include <netdb.h>
#include <stdio.h>
char host[NI_MAXHOST];
if (getifaddrs(&ifaddr) == -1) {
- warn("Failed to get IPv4 address for interface %s", iface);
+ fprintf(stderr, "Failed to get IPv4 address for interface %s", iface);
return NULL;
}
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 IPv4 address for interface %s", iface);
+ fprintf(stderr, "Failed to get IPv4 address for interface %s", iface);
return NULL;
}
return bprintf("%s", host);
char host[NI_MAXHOST];
if (getifaddrs(&ifaddr) == -1) {
- warn("Failed to get IPv6 address for interface %s", iface);
+ fprintf(stderr, "Failed to get IPv6 address for interface %s", iface);
return NULL;
}
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in6), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET6)) {
if (s != 0) {
- warnx("Failed to get IPv6 address for interface %s", iface);
+ fprintf(stderr, "Failed to get IPv6 address for interface %s", iface);
return NULL;
}
return bprintf("%s", host);
/* See LICENSE file for copyright and license details. */
-#include <err.h>
+#include <stdio.h>
#include <X11/Xlib.h>
#include "../util.h"
XKeyboardState state;
if (dpy == NULL) {
- warnx("XOpenDisplay failed");
+ fprintf(stderr, "Cannot open display");
return NULL;
}
XGetKeyboardControl(dpy, &state);
/* See LICENSE file for copyright and license details. */
-#include <err.h>
+#include <stdio.h>
#include <stdlib.h>
#include "../util.h"
double avgs[3];
if (getloadavg(avgs, 3) < 0) {
- warnx("Failed to get the load avg");
+ fprintf(stderr, "Failed to get the load avg");
return NULL;
}
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
-#include <err.h>
#include <stdio.h>
#include <string.h>
int num = 0;
if ((fd = opendir(dir)) == NULL) {
- warn("Failed to get number of files in directory %s", dir);
+ fprintf(stderr, "Failed to get number of files in directory %s", dir);
return NULL;
}
/* See LICENSE file for copyright and license details. */
-#include <err.h>
#include <stdio.h>
#include <string.h>
fp = popen(cmd, "r");
if (fp == NULL) {
- warn("Failed to get command output for %s", cmd);
+ fprintf(stderr, "Failed to get command output for %s", cmd);
return NULL;
}
p = fgets(buf, sizeof(buf) - 1, fp);
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
-#include <err.h>
#include <stdio.h>
#include <string.h>
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
+ fprintf(stderr, "Failed to open file /proc/meminfo");
return NULL;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_free: read error");
+ fprintf(stderr, "swap_free: read error");
fclose(fp);
return NULL;
}
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
+ fprintf(stderr, "Failed to open file /proc/meminfo");
return NULL;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_perc: read error");
+ fprintf(stderr, "swap_perc: read error");
fclose(fp);
return NULL;
}
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
+ fprintf(stderr, "Failed to open file /proc/meminfo");
return NULL;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_total: read error");
+ fprintf(stderr, "swap_total: read error");
fclose(fp);
return NULL;
}
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
- warn("Failed to open file /proc/meminfo");
+ fprintf(stderr, "Failed to open file /proc/meminfo");
return NULL;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
- warn("swap_used: read error");
+ fprintf(stderr, "swap_used: read error");
fclose(fp);
return NULL;
}
/* See LICENSE file for copyright and license details. */
-#include <err.h>
#include <pwd.h>
+#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
struct passwd *pw = getpwuid(geteuid());
if (pw == NULL) {
- warn("Failed to get username");
+ fprintf(stderr, "Failed to get username");
return NULL;
}
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
-#include <err.h>
#include <fcntl.h>
#include <sys/soundcard.h>
#include <sys/ioctl.h>
afd = open(card, O_RDONLY | O_NONBLOCK);
if (afd == -1) {
- warn("Cannot open %s", card);
+ fprintf(stderr, "Cannot open %s", card);
return NULL;
}
if (ioctl(afd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
- warn("Cannot get volume for %s", card);
+ fprintf(stderr, "Cannot get volume for %s", card);
close(afd);
return NULL;
}
for (i = 0; i < LEN(vnames); i++) {
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
if (ioctl(afd, MIXER_READ(i), &v) == -1) {
- warn("vol_perc: ioctl");
+ fprintf(stderr, "vol_perc: ioctl");
close(afd);
return NULL;
}
/* See LICENSE file for copyright and license details. */
#if defined(__linux__)
-#include <err.h>
#include <ifaddrs.h>
#include <linux/wireless.h>
#include <sys/socket.h>
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);
+ fprintf(stderr, "Failed to open file %s", path);
return NULL;
}
p = fgets(status, 5, fp);
fp = fopen("/proc/net/wireless", "r");
if (fp == NULL) {
- warn("Failed to open file /proc/net/wireless");
+ fprintf(stderr, "Failed to open file /proc/net/wireless");
return NULL;
}
snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface);
if (sockfd == -1) {
- warn("Failed to get ESSID for interface %s", iface);
+ fprintf(stderr, "Failed to get ESSID for interface %s", iface);
return NULL;
}
wreq.u.essid.pointer = id;
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
- warn("Failed to get ESSID for interface %s", iface);
+ fprintf(stderr, "Failed to get ESSID for interface %s", iface);
close(sockfd);
return NULL;
}
/* See LICENSE file for copyright and license details. */
-#include <err.h>
-#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
int n;
if (!(fp = fopen(path, "r"))) {
- warn("fopen %s: %s\n", path, strerror(errno));
+ fprintf(stderr, "fopen for %s failed", path);
return -1;
}
va_start(ap, fmt);