blob: 4376d2f192298f591dce75ef0c984a7ada7d0c95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include "../util.h"
#define VOL_BUF_SIZE 4
const char *
pamixer_vol_perc(void)
{
bool MUTED = false;
char vol_buf[VOL_BUF_SIZE];
char mute, ch;
unsigned short i = 0;
FILE *mute_fp = popen("pamixer --get-mute | head -c1", "r");
FILE *vol_fp = popen("pamixer --get-volume | head -c3", "r");
mute = fgetc(mute_fp);
pclose (mute_fp);
ch = fgetc(vol_fp);
while (ch != '\n' && ch != EOF && i < VOL_BUF_SIZE) {
vol_buf[i++] = ch;
ch = fgetc(vol_fp);
}
vol_buf[i] = '\0';
pclose (vol_fp);
if (mute == 't') {
return bprintf("");
}
else {
return bprintf("%s%%", vol_buf);
}
}
|