From a1ae68ff11dc6156f9c80069194ea39679700f3f Mon Sep 17 00:00:00 2001 From: Marco Melorio Date: Thu, 22 Dec 2022 20:42:07 +0100 Subject: [PATCH] mixer-control: Update default icons As suggested in https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/579#note_1617842, both the "System Sounds" icon and the default icon for streams are updated. --- gvc-mixer-control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gvc-mixer-control.c b/gvc-mixer-control.c index b8a3f1f..01176cf 100644 --- a/gvc-mixer-control.c +++ b/gvc-mixer-control.c @@ -1806,7 +1806,7 @@ update_sink_input (GvcMixerControl *control, set_application_id_from_proplist (stream, info->proplist); set_is_event_stream_from_proplist (stream, info->proplist); - set_icon_name_from_proplist (stream, info->proplist, "applications-multimedia"); + set_icon_name_from_proplist (stream, info->proplist, "application-x-executable"); gvc_mixer_stream_set_volume (stream, (guint)max_volume); gvc_mixer_stream_set_is_muted (stream, info->mute); gvc_mixer_stream_set_is_virtual (stream, info->client == PA_INVALID_INDEX); @@ -2874,7 +2874,7 @@ update_event_role_stream (GvcMixerControl *control, max_volume = pa_cvolume_max (&info->volume); gvc_mixer_stream_set_name (stream, _("System Sounds")); - gvc_mixer_stream_set_icon_name (stream, "emblem-system-symbolic"); + gvc_mixer_stream_set_icon_name (stream, "audio-x-generic"); gvc_mixer_stream_set_volume (stream, (guint)max_volume); gvc_mixer_stream_set_is_muted (stream, info->mute);