]> git.sur5r.net Git - i3/i3status/commitdiff
Show degraded colors in case volume is muted with OSS
authorBaptiste Daroussin <bapt@FreeBSD.org>
Tue, 19 Mar 2013 17:23:59 +0000 (18:23 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 19 Mar 2013 17:36:49 +0000 (18:36 +0100)
src/print_volume.c

index cf42f3e98aed404fc5f7a8bf0fbed1d2dbfa9e9f..1b03e5efa01f1547bfb3b082ca0e38b249dce3aa 100644 (file)
@@ -177,6 +177,7 @@ void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *
 #if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
         char mixerpath[] = "/dev/mixer";
         int mixfd, vol, devmask = 0;
+        pbval = 1;
 
         if ((mixfd = open(mixerpath, O_RDWR)) < 0)
                 return;
@@ -185,6 +186,11 @@ void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *
         if (ioctl(mixfd, MIXER_READ(0),&vol) == -1)
                 return;
 
+        if (((vol & 0x7f) == 0) && (((vol >> 8) & 0x7f) == 0)) {
+                START_COLOR("color_degraded");
+                pbval = 0;
+        }
+
         const char *walk = fmt;
         for (; *walk != '\0'; walk++) {
                 if (*walk != '%') {