summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@rwth-aachen.de>2013-11-15 00:41:33 +0100
committerMichael Stapelberg <michael@stapelberg.de>2013-11-18 22:31:42 +0100
commit4bd0ba88c896d1ad9beba2eaadc01f1f2d172b5b (patch)
treec1fd550856fe50bc64ed2db853459101c7f2a506 /include
parent09330976e5b08079014087ce0ac490b5b824c8f8 (diff)
Added different format string for volume in case it is muted.
If the volume is muted, the volume level would simply be displayed as zero and the color changed to color_degraded. This patch lets the user define a custom format string for when the volume is muted. The default value is "♪: 0%" ("♪: %volume" being the usual format).
Diffstat (limited to 'include')
-rw-r--r--include/i3status.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/i3status.h b/include/i3status.h
index d0361d1..64cd660 100644
--- a/include/i3status.h
+++ b/include/i3status.h
@@ -156,7 +156,7 @@ void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const
void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format);
void print_eth_info(yajl_gen json_gen, char *buffer, const char *interface, const char *format_up, const char *format_down);
void print_load(yajl_gen json_gen, char *buffer, const char *format, const float max_threshold);
-void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *device, const char *mixer, int mixer_idx);
+void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char *fmt_muted, const char *device, const char *mixer, int mixer_idx);
bool process_runs(const char *path);
/* socket file descriptor for general purposes */