mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
core: automatically add icons for headsets/headphones/speakers for devices
This commit is contained in:
parent
dfd6b61cd1
commit
28069ef0f7
1 changed files with 15 additions and 0 deletions
|
|
@ -2197,6 +2197,21 @@ pa_bool_t pa_device_init_icon(pa_proplist *p, pa_bool_t is_sink) {
|
|||
t = "multimedia-player";
|
||||
else if (pa_streq(ff, "tv"))
|
||||
t = "video-display";
|
||||
|
||||
/*
|
||||
* The following icons are not part of the icon naming spec,
|
||||
* because Rodney Dawes sucks as the maintainer of that spec.
|
||||
*
|
||||
* http://lists.freedesktop.org/archives/xdg/2009-May/010397.html
|
||||
*/
|
||||
else if (pa_streq(ff, "headset"))
|
||||
t = "audio-headset";
|
||||
else if (pa_streq(ff, "headphone"))
|
||||
t = "audio-headphones";
|
||||
else if (pa_streq(ff, "speaker"))
|
||||
t = "audio-speakers";
|
||||
else if (pa_streq(ff, "hands-free"))
|
||||
t = "audio-handsfree";
|
||||
}
|
||||
|
||||
if (!t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue