diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pulse.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pulse.c b/src/pulse.c index 34e302b..f9ed5d3 100644 --- a/src/pulse.c +++ b/src/pulse.c @@ -2,6 +2,7 @@ #include <string.h> #include <stdio.h> #include <math.h> +#include <signal.h> #include <pulse/pulseaudio.h> #include "i3status.h" #include "queue.h" @@ -89,9 +90,7 @@ static void store_volume_from_sink_cb(pa_context *c, save_volume(DEFAULT_SINK_INDEX, composed_volume)) | save_volume(info->index, composed_volume)) { /* if the volume or mute flag changed, wake the main thread */ - pthread_mutex_lock(&i3status_sleep_mutex); - pthread_cond_broadcast(&i3status_sleep_cond); - pthread_mutex_unlock(&i3status_sleep_mutex); + pthread_kill(main_thread, SIGUSR1); } } |