From: Baptiste Daroussin Date: Sun, 24 Jul 2011 02:03:59 +0000 (+0000) Subject: Add simple volume support on FreeBSD X-Git-Tag: 2.4~20 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d87a735be568a144fd1ccd5628ef2a40fe094b07;p=i3%2Fi3status Add simple volume support on FreeBSD --- diff --git a/src/print_volume.c b/src/print_volume.c index 2945b1e..c13cb17 100644 --- a/src/print_volume.c +++ b/src/print_volume.c @@ -9,6 +9,12 @@ #include #endif +#ifdef __FreeBSD__ +#include +#include +#include +#endif + #include "i3status.h" #include "queue.h" @@ -150,4 +156,28 @@ void print_volume(const char *fmt, const char *device, const char *mixer, int mi } } #endif +#ifdef __FreeBSD__ + char mixerpath[] = "/dev/mixer"; + int mixfd, vol, devmask = 0; + + if ((mixfd = open(mixerpath, O_RDWR)) < 0) + return; + if (ioctl(mixfd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) + return; + if (ioctl(mixfd, MIXER_READ(0),&vol) == -1) + return; + + const char *walk = fmt; + for (; *walk != '\0'; walk++) { + if (*walk != '%') { + putchar(*walk); + continue; + } + if (BEGINS_WITH(walk+1, "volume")) { + printf("%d%%", vol & 0x7f); + walk += strlen("volume"); + } + } + close(mixfd); +#endif }