1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-20 03:51:18 +00:00
conky/src/mixer.h

18 lines
583 B
C
Raw Normal View History

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
#ifndef MIXER_H_
#define MIXER_H_
void parse_mixer_arg(struct text_object *, const char *);
uint8_t mixer_percentage(struct text_object *obj);
uint8_t mixerl_percentage(struct text_object *obj);
uint8_t mixerr_percentage(struct text_object *obj);
int check_mixer_muted(struct text_object *);
void scan_mixer_bar(struct text_object *, const char *);
2009-11-23 22:41:44 +00:00
uint8_t mixer_barval(struct text_object *);
uint8_t mixerl_barval(struct text_object *);
uint8_t mixerr_barval(struct text_object *);
#endif /*MIXER_H_*/