[gnome-media] Add speaker testing UI
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-media] Add speaker testing UI
- Date: Wed, 17 Mar 2010 13:48:12 +0000 (UTC)
commit a139eed72c14cbd0560c72d165721df8b9edf141
Author: Bastien Nocera <hadess hadess net>
Date: Thu Mar 11 14:51:10 2010 +0000
Add speaker testing UI
https://bugzilla.gnome.org/show_bug.cgi?id=519438
configure.ac | 1 +
.../data/icons/scalable/Makefile.am | 2 +-
.../data/icons/scalable/devices/Makefile.am | 35 +
.../devices/audio-speaker-center-back-testing.svg | 539 ++++++++++++
.../scalable/devices/audio-speaker-center-back.svg | 506 +++++++++++
.../devices/audio-speaker-center-testing.svg | 537 ++++++++++++
.../scalable/devices/audio-speaker-center.svg | 504 +++++++++++
.../devices/audio-speaker-left-back-testing.svg | 537 ++++++++++++
.../scalable/devices/audio-speaker-left-back.svg | 504 +++++++++++
.../devices/audio-speaker-left-side-testing.svg | 537 ++++++++++++
.../scalable/devices/audio-speaker-left-side.svg | 504 +++++++++++
.../devices/audio-speaker-left-testing.svg | 537 ++++++++++++
.../icons/scalable/devices/audio-speaker-left.svg | 504 +++++++++++
.../devices/audio-speaker-right-back-testing.svg | 537 ++++++++++++
.../scalable/devices/audio-speaker-right-back.svg | 504 +++++++++++
.../devices/audio-speaker-right-side-testing.svg | 537 ++++++++++++
.../scalable/devices/audio-speaker-right-side.svg | 504 +++++++++++
.../devices/audio-speaker-right-testing.svg | 913 ++++++++++++++++++++
.../icons/scalable/devices/audio-speaker-right.svg | 504 +++++++++++
.../scalable/devices/audio-speaker-testing.svg | 913 ++++++++++++++++++++
.../scalable/devices/audio-subwoofer-testing.svg | 240 +++++
.../icons/scalable/devices/audio-subwoofer.svg | 325 +++++++
gnome-volume-control/src/Makefile.am | 6 +-
gnome-volume-control/src/dialog-main.c | 1 +
gnome-volume-control/src/gvc-balance-bar.c | 2 +-
gnome-volume-control/src/gvc-balance-bar.h | 2 +-
gnome-volume-control/src/gvc-channel-map.c | 19 +-
gnome-volume-control/src/gvc-channel-map.h | 16 +-
gnome-volume-control/src/gvc-combo-box.c | 61 ++-
gnome-volume-control/src/gvc-combo-box.h | 5 +-
gnome-volume-control/src/gvc-mixer-card.h | 1 +
gnome-volume-control/src/gvc-mixer-control.c | 6 +-
gnome-volume-control/src/gvc-mixer-dialog.c | 62 ++-
gnome-volume-control/src/gvc-mixer-event-role.c | 6 +-
gnome-volume-control/src/gvc-mixer-sink-input.c | 12 +-
gnome-volume-control/src/gvc-mixer-sink.c | 12 +-
gnome-volume-control/src/gvc-mixer-source.c | 12 +-
gnome-volume-control/src/gvc-mixer-stream.c | 38 +-
gnome-volume-control/src/gvc-mixer-stream.h | 7 +-
gnome-volume-control/src/gvc-speaker-test.c | 501 +++++++++++
gnome-volume-control/src/gvc-speaker-test.h | 57 ++
po/POTFILES.in | 1 +
42 files changed, 10990 insertions(+), 61 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 140728b..87e4f1c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -397,6 +397,7 @@ gnome-volume-control/data/icons/48x48/Makefile
gnome-volume-control/data/icons/48x48/apps/Makefile
gnome-volume-control/data/icons/scalable/Makefile
gnome-volume-control/data/icons/scalable/apps/Makefile
+gnome-volume-control/data/icons/scalable/devices/Makefile
gnome-volume-control/data/icons/scalable/status/Makefile
gnome-volume-control/src/Makefile
grecord/Makefile
diff --git a/gnome-volume-control/data/icons/scalable/Makefile.am b/gnome-volume-control/data/icons/scalable/Makefile.am
index 9ed74c7..00c42b1 100644
--- a/gnome-volume-control/data/icons/scalable/Makefile.am
+++ b/gnome-volume-control/data/icons/scalable/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = status apps
+SUBDIRS = status apps devices
-include $(top_srcdir)/git.mk
diff --git a/gnome-volume-control/data/icons/scalable/devices/Makefile.am b/gnome-volume-control/data/icons/scalable/devices/Makefile.am
new file mode 100644
index 0000000..404f6e5
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/Makefile.am
@@ -0,0 +1,35 @@
+NULL =
+
+themedir = $(pkgdatadir)/icons/hicolor
+size = 48x48
+context = devices
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+ audio-speaker-center.svg \
+ audio-speaker-center-testing.svg \
+ audio-speaker-left-back.svg \
+ audio-speaker-left-back-testing.svg \
+ audio-speaker-left.svg \
+ audio-speaker-left-side.svg \
+ audio-speaker-left-side-testing.svg \
+ audio-speaker-left-testing.svg \
+ audio-speaker-right-back.svg \
+ audio-speaker-right-back-testing.svg \
+ audio-speaker-right.svg \
+ audio-speaker-right-side.svg \
+ audio-speaker-right-side-testing.svg \
+ audio-speaker-right-testing.svg \
+ audio-speaker-center-back-testing.svg \
+ audio-speaker-center-back.svg \
+ audio-subwoofer.svg \
+ audio-subwoofer-testing.svg \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(icons_DATA) \
+ $(NULL)
+
+
+-include $(top_srcdir)/git.mk
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back-testing.svg
new file mode 100644
index 0000000..6b067d6
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back-testing.svg
@@ -0,0 +1,539 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="audio-speaker-center-back-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-side-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="977"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:window-maximized="1">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>center</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-center-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(1,0,0,-1,-50.334601,47.958369)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="m 64.325669,10.506413 c 6.07143,-3.4821397 13.14286,-3.3928497 19.39286,0 l 2,4.39286 -23.39286,0 2,-4.39286 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="m 95.897099,27.934983 c 0,0 -4.54743,-8.68677 -9.8613,-12.93926 -0.21063,-0.16856 -0.42247,-0.33016 -0.63527,-0.48397 -0.50204,-0.36286 -1.00946,-0.68239 -1.51919,-0.94787 -0.56896,-0.29634 -1.14078,-0.52533 -1.71117,-0.67205 -3.88321,-1.01934 -11.71652,-1.06249 -15.58966,-0.04613 -0.83989,0.21914 -1.6816,0.61173 -2.51203,1.13191 -0.62524,0.39166 -1.24409,0.85564 -1.85095,1.37236 -1.87112,1.5932 -3.628309,3.68784 -5.107769,5.71001 -2.59659,3.54911 -4.33766,6.875 -4.33766,6.875"
+ style="fill:none;stroke:none"
+ id="path8494" />
+ <path
+ style="fill:none;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 62.827469,15.979023 2.18704,-4.766 c 5.261057,-2.7432797 11.220313,-3.3671697 17.939063,-0.0056 l 1.96851,4.2035"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="m 95.001579,28.523883 c 0,0 -6.30803,-12.92857 -13.07068,-14.66816 -3.88321,-1.01933 -11.18527,-1.06248 -15.05841,-0.04613 -6.84412,1.78572 -11.839659,12.46429 -11.839659,12.46429"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="m 43.214285,32.24107 c 0,2.736768 -9.374038,4.955357 -20.9375,4.955357 -11.563462,0 -20.9375001,-2.218589 -20.9375001,-4.955357 0,-2.736768 9.3740381,-4.955357 20.9375001,-4.955357 11.563462,0 20.9375,2.218589 20.9375,4.955357 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="m 95.16001,29.859216 c 0.1894,4.408221 -8.80985,9.066057 -20.909493,9.066057 -12.099643,0 -21.130461,-4.594701 -20.90949,-9.066057 -0.189403,-4.566056 8.809847,-9.034489 20.90949,-9.034489 12.099643,0 20.941063,4.37373 20.909493,9.034489 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 82.142459,27.943913 c -0.67407,2.18776 -3.2897,3.38538 -7.80786,3.38538 -4.51815,0 -7.3487,-1.37717 -7.80786,-3.38538 -0.07073,-1.70502 3.28971,-3.37359 7.80786,-3.37359 4.51816,0 7.81965,1.63321 7.80786,3.37359 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 67.476989,27.764793 c 0.9704,3.07926 3.66898,5.29604 6.84343,5.29605 3.19412,0 5.90648,-2.24438 6.86128,-5.35345 -0.90064,-1.50063 -4.28117,-2.23685 -6.89061,-2.19358 -3.30434,-0.08574 -5.85648,0.85968 -6.8141,2.25098 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 62.722179,14.847493 c -0.12704,0.1026 -0.3786,0.39515 -0.50465,0.50248 -1.87112,1.5932 -3.628309,3.68784 -5.107769,5.71001 -2.59659,3.54911 -4.33766,6.875 -4.33766,6.875 m 43.124999,0 c 0,0 -4.54743,-8.68677 -9.8613,-12.93926 -0.21063,-0.16856 -0.42247,-0.33016 -0.63527,-0.48397 -0.10052,-0.07265 -0.648157,-0.29253 -0.749077,-0.36162"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 81.930899,13.855723 c -3.88321,-1.01933 -11.18527,-1.06248 -15.05841,-0.04613"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back.svg
new file mode 100644
index 0000000..2d162c4
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-back.svg
@@ -0,0 +1,506 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="audio-speaker-center-back.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-53.025818"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="977"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:window-maximized="1">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>center</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-center</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(1,0,0,-1,-0.04163061,47.958369)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="m 14.032699,10.506413 c 6.07143,-3.4821397 13.14286,-3.3928497 19.39286,0 l 2,4.39286 -23.39286,0 2,-4.39286 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="m 45.604129,27.934983 c 0,0 -4.54743,-8.68677 -9.8613,-12.93926 -0.21063,-0.16856 -0.42247,-0.33016 -0.63527,-0.48397 -0.50204,-0.36286 -1.00946,-0.68239 -1.51919,-0.94787 -0.56896,-0.29634 -1.14078,-0.52533 -1.71117,-0.67205 -3.88321,-1.01934 -11.71652,-1.06249 -15.58966,-0.04613 -0.83989,0.21914 -1.6816,0.61173 -2.51203,1.13191 -0.62524,0.39166 -1.24409,0.85564 -1.85095,1.37236 -1.87112,1.5932 -3.6283094,3.68784 -5.1077694,5.71001 -2.59659,3.54911 -4.33766,6.875 -4.33766,6.875"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ id="path5367" />
+ <path
+ style="fill:none;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 12.534499,15.979023 2.18704,-4.766 c 5.261057,-2.7432797 11.220313,-3.3671697 17.939063,-0.0056 l 1.96851,4.2035"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="m 44.708609,28.523883 c 0,0 -6.30803,-12.92857 -13.07068,-14.66816 -3.88321,-1.01933 -11.18527,-1.06248 -15.05841,-0.04613 -6.8441198,1.78572 -11.8396594,12.46429 -11.8396594,12.46429"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="m 43.214285,32.24107 c 0,2.736768 -9.374038,4.955357 -20.9375,4.955357 -11.563462,0 -20.9375001,-2.218589 -20.9375001,-4.955357 0,-2.736768 9.3740381,-4.955357 20.9375001,-4.955357 11.563462,0 20.9375,2.218589 20.9375,4.955357 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 44.951119,29.943913 c 0.18941,4.40822 -8.80985,9.06606 -20.90949,9.06606 -12.09964,0 -21.1304594,-4.5947 -20.9094894,-9.06606 -0.1894,-4.56606 8.8098494,-9.03449 20.9094894,-9.03449 12.09964,0 20.94106,4.37373 20.90949,9.03449 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 31.849489,27.943913 c -0.67407,2.18776 -3.2897,3.38538 -7.80786,3.38538 -4.51815,0 -7.3487,-1.37717 -7.80786,-3.38538 -0.07073,-1.70502 3.28971,-3.37359 7.80786,-3.37359 4.51816,0 7.81965,1.63321 7.80786,3.37359 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="m 17.184019,27.764793 c 0.9704,3.07926 3.66898,5.29604 6.84343,5.29605 3.19412,0 5.90648,-2.24438 6.86128,-5.35345 -0.90064,-1.50063 -4.28117,-2.23685 -6.89061,-2.19358 -3.30434,-0.08574 -5.85648,0.85968 -6.8141,2.25098 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 12.429209,14.847493 c -0.12704,0.1026 -0.3786,0.39515 -0.50465,0.50248 -1.87112,1.5932 -3.6283094,3.68784 -5.1077694,5.71001 -2.59659,3.54911 -4.33766,6.875 -4.33766,6.875 m 43.1249994,0 c 0,0 -4.54743,-8.68677 -9.8613,-12.93926 -0.21063,-0.16856 -0.42247,-0.33016 -0.63527,-0.48397 -0.10052,-0.07265 -0.648157,-0.29253 -0.749077,-0.36162"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 31.637929,13.855723 c -3.88321,-1.01933 -11.18527,-1.06248 -15.05841,-0.04613"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-testing.svg
new file mode 100644
index 0000000..544384a
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-center-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-side-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>center</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-center-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="translate(-50.334601,4.1631076e-2)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center.svg
new file mode 100644
index 0000000..77426fd
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-center.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-center.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-53.025818"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="25"
+ inkscape:window-y="21"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>center</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-center</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="translate(-4.1630606e-2,4.1631076e-2)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back-testing.svg
new file mode 100644
index 0000000..4ab4a37
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left-back-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left-back</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left-b-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,57.052876,95.851156)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back.svg
new file mode 100644
index 0000000..f82c536
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-back.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left-back.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-53.376308"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left-back</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left-back</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,21.490375,60.288654)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side-testing.svg
new file mode 100644
index 0000000..1d06aa9
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left-side-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-right-side-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left-side</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left-side-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(0,-1,1,0,4.1631076e-2,98.334601)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side.svg
new file mode 100644
index 0000000..bfbd3a3
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-side.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left-side.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-side.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-15.988037"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left-side</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left-side</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(0,-1,1,0,4.1631076e-2,48.041631)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-testing.svg
new file mode 100644
index 0000000..947c2e8
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-back-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(-0.7071068,0.7071068,0.7071068,0.7071068,57.052876,-47.851155)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left.svg
new file mode 100644
index 0000000..a908044
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-left.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-left.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-right.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-53.376308"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>left</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-left</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(-0.7071068,0.7071068,0.7071068,0.7071068,21.490375,-12.288654)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back-testing.svg
new file mode 100644
index 0000000..a641a4a
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right-back-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-back-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right-back</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-back-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(0.7071068,-0.7071068,-0.7071068,-0.7071068,-9.0528759,95.851156)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back.svg
new file mode 100644
index 0000000..0512464
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-back.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right-back.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-left-back.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-53.376308"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right-back</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-back</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(0.7071068,-0.7071068,-0.7071068,-0.7071068,26.509625,60.288654)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side-testing.svg
new file mode 100644
index 0000000..a15a08f
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side-testing.svg
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right-side-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-right-back-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right-side</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-side-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(0,-1,-1,0,47.958369,98.334601)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side.svg
new file mode 100644
index 0000000..1419c02
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-side.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right-side.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-right-back.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-15.988037"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right-side</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-side</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(0,-1,-1,0,47.958369,48.041631)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-testing.svg
new file mode 100644
index 0000000..9d84820
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right-testing.svg
@@ -0,0 +1,913 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker-right-testing.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5941"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(11.322482,0,0,3.7410569,-790.12434,122.56351)"
+ cx="14.790665"
+ cy="29.860626"
+ fx="14.790665"
+ fy="29.860626"
+ r="1.1399525" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5939"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(10.171038,0,0,5.2502725,-797.43964,77.21735)"
+ cx="17.797972"
+ cy="29.948833"
+ fx="17.797972"
+ fy="29.948833"
+ r="1.945146" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6377">
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1"
+ offset="0"
+ id="stop6379" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1"
+ offset="1"
+ id="stop6381" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5937"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(15.4058,0,0,6.5714191,-930.81786,37.58535)"
+ cx="20.818829"
+ cy="29.948536"
+ fx="20.818829"
+ fy="29.948536"
+ r="2.5451017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5935"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,-677.47231,206.91558)"
+ x1="21.875"
+ y1="9.6335878"
+ x2="20.5"
+ y2="41.744865" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5933"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,-677.47231,206.91558)"
+ x1="20.087172"
+ y1="6.6629219"
+ x2="20.91938"
+ y2="38.337017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5931"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6831088,0,0,1.0329054,-652.67404,212.26374)"
+ x1="4.5961943"
+ y1="14.456622"
+ x2="4.5961943"
+ y2="30.313524" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5929"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7679166,0,0,1.687933,-652.72155,185.35433)"
+ x1="2.6850162"
+ y1="24.367676"
+ x2="2.9248238"
+ y2="35.053852" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient21582">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop21584" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop21586" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21582"
+ id="linearGradient5927"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.2565202,-654.12827,206.16954)"
+ x1="21.875"
+ y1="26.625"
+ x2="18.187626"
+ y2="26" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient21598">
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0"
+ id="stop21600" />
+ <stop
+ style="stop-color:white;stop-opacity:0;"
+ offset="1"
+ id="stop21602" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21598"
+ id="linearGradient5925"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7830101,0,0,0.9810567,-652.01527,212.32101)"
+ x1="12.25"
+ y1="19.75"
+ x2="10.875"
+ y2="33.125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="radialGradient5923"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.433087,-0.596698,0.798238,1.917124,-20.96864,-16.43019)"
+ cx="7.001297"
+ cy="22.470087"
+ fx="7.001297"
+ fy="22.470087"
+ r="6.4940691" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10872"
+ id="linearGradient5921"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.0172401,-654.21562,212.46274)"
+ x1="3.8890872"
+ y1="18.937069"
+ x2="3.8890872"
+ y2="25.947107" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5919"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,-655.42965,207.54612)"
+ x1="11.875"
+ y1="20.375"
+ x2="13.125"
+ y2="34.13559" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6371"
+ id="linearGradient5917"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,-655.42965,207.54612)"
+ x1="14.241117"
+ y1="26.996773"
+ x2="15.125"
+ y2="20.976084" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21608"
+ id="linearGradient5915"
+ gradientUnits="userSpaceOnUse"
+ x1="23.272787"
+ y1="18.525478"
+ x2="23.272787"
+ y2="22.811184" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15341"
+ id="radialGradient5913"
+ gradientUnits="userSpaceOnUse"
+ cx="22.624176"
+ cy="20.880224"
+ fx="22.624176"
+ fy="20.880224"
+ r="3.3177083" />
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3529"
+ id="radialGradient5911"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2876712,0,13.845354)"
+ cx="7.9549513"
+ cy="19.436747"
+ fx="7.9549513"
+ fy="19.436747"
+ r="6.4523492" />
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3529"
+ id="radialGradient5708"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2876712,0,13.845354)"
+ cx="7.9549513"
+ cy="19.436747"
+ fx="7.9549513"
+ fy="19.436747"
+ r="6.4523492" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15341"
+ id="radialGradient5710"
+ gradientUnits="userSpaceOnUse"
+ cx="22.624176"
+ cy="20.880224"
+ fx="22.624176"
+ fy="20.880224"
+ r="3.3177083" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21608"
+ id="linearGradient5712"
+ gradientUnits="userSpaceOnUse"
+ x1="23.272787"
+ y1="18.525478"
+ x2="23.272787"
+ y2="22.811184" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="radialGradient5720"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.433087,-0.596698,0.798238,1.917124,-20.96864,-16.43019)"
+ cx="7.001297"
+ cy="22.470087"
+ fx="7.001297"
+ fy="22.470087"
+ r="6.4940691" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5744"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-8.0062038,8.0062038,-2.6453267,-2.6453267,292.61535,-42.156174)"
+ cx="14.790665"
+ cy="29.860626"
+ fx="14.790665"
+ fy="29.860626"
+ r="1.1399525" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5747"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-7.1920099,7.1920099,-3.7125033,-3.7125033,329.85262,-15.264295)"
+ cx="17.797972"
+ cy="29.948833"
+ fx="17.797972"
+ fy="29.948833"
+ r="1.945146" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5750"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-10.893546,10.893546,-4.646695,-4.646695,452.18932,-81.552883)"
+ cx="20.818829"
+ cy="29.948536"
+ fx="20.818829"
+ fy="29.948536"
+ r="2.5451017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5753"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,31.77769,-26.9466)"
+ x1="20.087172"
+ y1="6.6629219"
+ x2="20.91938"
+ y2="38.337017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5755"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,31.77769,-26.9466)"
+ x1="21.875"
+ y1="9.6335878"
+ x2="20.5"
+ y2="41.744865" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5758"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7679166,0,0,1.687933,56.52845,-48.50785)"
+ x1="2.6850162"
+ y1="24.367676"
+ x2="2.9248238"
+ y2="35.053852" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5760"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6831088,0,0,1.0329054,56.57596,-21.59844)"
+ x1="4.5961943"
+ y1="14.456622"
+ x2="4.5961943"
+ y2="30.313524" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21582"
+ id="linearGradient5763"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.2565202,55.12173,-27.69264)"
+ x1="21.875"
+ y1="26.625"
+ x2="18.187626"
+ y2="26" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21598"
+ id="linearGradient5766"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7830101,0,0,0.9810567,57.23473,-21.54117)"
+ x1="12.25"
+ y1="19.75"
+ x2="10.875"
+ y2="33.125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10872"
+ id="linearGradient5770"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.0172401,55.03438,-21.39944)"
+ x1="3.8890872"
+ y1="18.937069"
+ x2="3.8890872"
+ y2="25.947107" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6371"
+ id="linearGradient5773"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,53.82035,-26.31606)"
+ x1="14.241117"
+ y1="26.996773"
+ x2="15.125"
+ y2="20.976084" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5775"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,53.82035,-26.31606)"
+ x1="11.875"
+ y1="20.375"
+ x2="13.125"
+ y2="34.13559" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5928"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,-9.0528759,-47.851156)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right.svg
new file mode 100644
index 0000000..04b30a0
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-right.svg
@@ -0,0 +1,504 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-right.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-speaker.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient7260"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.516569,40.378763)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.6568542"
+ inkscape:cx="-90.590866"
+ inkscape:cy="20.556657"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1601"
+ inkscape:window-height="942"
+ inkscape:window-x="5"
+ inkscape:window-y="1"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g7248"
+ transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,26.509625,-12.288654)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5365"
+ d="M 14.032699,10.506413 C 20.104129,7.0242733 27.175559,7.1135633 33.425559,10.506413 L 35.425559,14.899273 L 12.032699,14.899273 L 14.032699,10.506413 z"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 34.605519,14.148893 34.098099,13.829363 33.588369,13.563883 C 33.019409,13.267543 32.447589,13.038553 31.877199,12.891833 C 27.993989,11.872493 20.160679,11.829343 16.287539,12.845703 C 15.447649,13.064843 14.605939,13.457433 13.775509,13.977613 C 13.150269,14.369273 12.531419,14.833253 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983"
+ style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5367" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#888a83;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 12.534499,15.979023 L 14.721539,11.213023 C 19.982596,8.4697433 25.941852,7.8458533 32.660602,11.207463 L 34.629112,15.410963"
+ id="path5369"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 44.708609,28.523883 C 44.708609,28.523883 38.400579,15.595313 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593 C 9.7353992,15.595313 4.7398596,26.273883 4.7398596,26.273883"
+ style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path5371" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,0.7198796,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path5373"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:url(#radialGradient7260);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 44.951119,29.943913 C 45.140529,34.352133 36.141269,39.009973 24.041629,39.009973 C 11.941989,39.009973 2.9111696,34.415273 3.1321396,29.943913 C 2.9427396,25.377853 11.941989,20.909423 24.041629,20.909423 C 36.141269,20.909423 44.982689,25.283153 44.951119,29.943913 z"
+ id="path5375"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 31.849489,27.943913 C 31.175419,30.131673 28.559789,31.329293 24.041629,31.329293 C 19.523479,31.329293 16.692929,29.952123 16.233769,27.943913 C 16.163039,26.238893 19.523479,24.570323 24.041629,24.570323 C 28.559789,24.570323 31.861279,26.203533 31.849489,27.943913 z"
+ id="path5377"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 17.184019,27.764793 C 18.154419,30.844053 20.852999,33.060833 24.027449,33.060843 C 27.221569,33.060843 29.933929,30.816463 30.888729,27.707393 C 29.988089,26.206763 26.607559,25.470543 23.998119,25.513813 C 20.693779,25.428073 18.141639,26.373493 17.184019,27.764793 z"
+ id="path5379"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path5381"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 12.429209,14.847493 C 12.302169,14.950093 12.050609,15.242643 11.924559,15.349973 C 10.053439,16.943173 8.2962496,19.037813 6.8167896,21.059983 C 4.2201996,24.609093 2.4791296,27.934983 2.4791296,27.934983 M 45.604129,27.934983 C 45.604129,27.934983 41.056699,19.248213 35.742829,14.995723 C 35.532199,14.827163 35.320359,14.665563 35.107559,14.511753 C 35.007039,14.439103 34.459402,14.219223 34.358482,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path5383"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 31.637929,13.855723 C 27.754719,12.836393 20.452659,12.793243 16.579519,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-speaker-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-testing.svg
new file mode 100644
index 0000000..79b1ff2
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-speaker-testing.svg
@@ -0,0 +1,913 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-speaker-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_speaker.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5941"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(11.322482,0,0,3.7410569,-790.12434,122.56351)"
+ cx="14.790665"
+ cy="29.860626"
+ fx="14.790665"
+ fy="29.860626"
+ r="1.1399525" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5939"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(10.171038,0,0,5.2502725,-797.43964,77.21735)"
+ cx="17.797972"
+ cy="29.948833"
+ fx="17.797972"
+ fy="29.948833"
+ r="1.945146" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6377">
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1"
+ offset="0"
+ id="stop6379" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1"
+ offset="1"
+ id="stop6381" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5937"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(15.4058,0,0,6.5714191,-930.81786,37.58535)"
+ cx="20.818829"
+ cy="29.948536"
+ fx="20.818829"
+ fy="29.948536"
+ r="2.5451017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5935"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,-677.47231,206.91558)"
+ x1="21.875"
+ y1="9.6335878"
+ x2="20.5"
+ y2="41.744865" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5933"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,-677.47231,206.91558)"
+ x1="20.087172"
+ y1="6.6629219"
+ x2="20.91938"
+ y2="38.337017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5931"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6831088,0,0,1.0329054,-652.67404,212.26374)"
+ x1="4.5961943"
+ y1="14.456622"
+ x2="4.5961943"
+ y2="30.313524" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5929"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7679166,0,0,1.687933,-652.72155,185.35433)"
+ x1="2.6850162"
+ y1="24.367676"
+ x2="2.9248238"
+ y2="35.053852" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient21582">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop21584" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop21586" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21582"
+ id="linearGradient5927"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.2565202,-654.12827,206.16954)"
+ x1="21.875"
+ y1="26.625"
+ x2="18.187626"
+ y2="26" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient21598">
+ <stop
+ style="stop-color:white;stop-opacity:1;"
+ offset="0"
+ id="stop21600" />
+ <stop
+ style="stop-color:white;stop-opacity:0;"
+ offset="1"
+ id="stop21602" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21598"
+ id="linearGradient5925"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7830101,0,0,0.9810567,-652.01527,212.32101)"
+ x1="12.25"
+ y1="19.75"
+ x2="10.875"
+ y2="33.125" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="radialGradient5923"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.433087,-0.596698,0.798238,1.917124,-20.96864,-16.43019)"
+ cx="7.001297"
+ cy="22.470087"
+ fx="7.001297"
+ fy="22.470087"
+ r="6.4940691" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10872"
+ id="linearGradient5921"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.0172401,-654.21562,212.46274)"
+ x1="3.8890872"
+ y1="18.937069"
+ x2="3.8890872"
+ y2="25.947107" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5919"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,-655.42965,207.54612)"
+ x1="11.875"
+ y1="20.375"
+ x2="13.125"
+ y2="34.13559" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6371"
+ id="linearGradient5917"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,-655.42965,207.54612)"
+ x1="14.241117"
+ y1="26.996773"
+ x2="15.125"
+ y2="20.976084" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21608"
+ id="linearGradient5915"
+ gradientUnits="userSpaceOnUse"
+ x1="23.272787"
+ y1="18.525478"
+ x2="23.272787"
+ y2="22.811184" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15341"
+ id="radialGradient5913"
+ gradientUnits="userSpaceOnUse"
+ cx="22.624176"
+ cy="20.880224"
+ fx="22.624176"
+ fy="20.880224"
+ r="3.3177083" />
+ <linearGradient
+ id="linearGradient3529">
+ <stop
+ id="stop3531"
+ offset="0"
+ style="stop-color:#fefefe;stop-opacity:1;" />
+ <stop
+ id="stop3533"
+ offset="1"
+ style="stop-color:#e8e7e6;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3529"
+ id="radialGradient5911"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2876712,0,13.845354)"
+ cx="7.9549513"
+ cy="19.436747"
+ fx="7.9549513"
+ fy="19.436747"
+ r="6.4523492" />
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4325">
+ <stop
+ id="stop4327"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4329" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient21608">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop21610" />
+ <stop
+ style="stop-color:#2e3436;stop-opacity:1"
+ offset="1"
+ id="stop21612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15341">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop15343" />
+ <stop
+ style="stop-color:#555753;stop-opacity:1"
+ offset="1"
+ id="stop15345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6371">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1"
+ offset="0"
+ id="stop6373" />
+ <stop
+ style="stop-color:#d3d7cf;stop-opacity:1;"
+ offset="1"
+ id="stop6375" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10872">
+ <stop
+ id="stop10874"
+ offset="0"
+ style="stop-color:#888a85;stop-opacity:1" />
+ <stop
+ style="stop-color:#9e9e92;stop-opacity:1;"
+ offset="0.25301206"
+ id="stop10876" />
+ <stop
+ id="stop10878"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5254">
+ <stop
+ id="stop5256"
+ offset="0"
+ style="stop-color:#707469;stop-opacity:1;" />
+ <stop
+ id="stop5258"
+ offset="1"
+ style="stop-color:#2e3335;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10055">
+ <stop
+ style="stop-color:#bebebe;stop-opacity:1;"
+ offset="0"
+ id="stop10057" />
+ <stop
+ id="stop10061"
+ offset="0.375"
+ style="stop-color:#e8e8e8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#5c5c5c;stop-opacity:1;"
+ offset="1"
+ id="stop10059" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4841">
+ <stop
+ id="stop4843"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#fcaf3e;stop-opacity:0.94117647;"
+ offset="0"
+ id="stop4845" />
+ <stop
+ id="stop4847"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop4849" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4809">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop4811" />
+ <stop
+ id="stop4813"
+ offset="0"
+ style="stop-color:#ad7fa8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop4815" />
+ <stop
+ id="stop4817"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3223">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop3225" />
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="1"
+ id="stop3227" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop3239" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3501"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3500"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2366258,0,24.617945)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient3232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,47.474934,42.420392)"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138"
+ spreadMethod="reflect" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5689"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0469084,0,0,0.4796469,270.37856,38.427671)"
+ cx="22.276291"
+ cy="32.248856"
+ fx="22.276291"
+ fy="32.248856"
+ r="20.319138" />
+ <inkscape:perspective
+ id="perspective3474"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient4359"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-52.447261,-106.14795)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,42.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4325"
+ id="radialGradient5064"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,98.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5110"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,142.72007,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3865"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient3906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,92.720075,-107.89847)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3345"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.725459,40.419065)"
+ spreadMethod="pad"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient8512"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3529"
+ id="radialGradient5708"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.2876712,0,13.845354)"
+ cx="7.9549513"
+ cy="19.436747"
+ fx="7.9549513"
+ fy="19.436747"
+ r="6.4523492" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15341"
+ id="radialGradient5710"
+ gradientUnits="userSpaceOnUse"
+ cx="22.624176"
+ cy="20.880224"
+ fx="22.624176"
+ fy="20.880224"
+ r="3.3177083" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21608"
+ id="linearGradient5712"
+ gradientUnits="userSpaceOnUse"
+ x1="23.272787"
+ y1="18.525478"
+ x2="23.272787"
+ y2="22.811184" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="radialGradient5720"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.433087,-0.596698,0.798238,1.917124,-20.96864,-16.43019)"
+ cx="7.001297"
+ cy="22.470087"
+ fx="7.001297"
+ fy="22.470087"
+ r="6.4940691" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5744"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-8.0062038,8.0062038,-2.6453267,-2.6453267,292.61535,-42.156174)"
+ cx="14.790665"
+ cy="29.860626"
+ fx="14.790665"
+ fy="29.860626"
+ r="1.1399525" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5747"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-7.1920099,7.1920099,-3.7125033,-3.7125033,329.85262,-15.264295)"
+ cx="17.797972"
+ cy="29.948833"
+ fx="17.797972"
+ fy="29.948833"
+ r="1.945146" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6377"
+ id="radialGradient5750"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-10.893546,10.893546,-4.646695,-4.646695,452.18932,-81.552883)"
+ cx="20.818829"
+ cy="29.948536"
+ fx="20.818829"
+ fy="29.948536"
+ r="2.5451017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5753"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,31.77769,-26.9466)"
+ x1="20.087172"
+ y1="6.6629219"
+ x2="20.91938"
+ y2="38.337017" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5755"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0714931,0,0,1.2212999,31.77769,-26.9466)"
+ x1="21.875"
+ y1="9.6335878"
+ x2="20.5"
+ y2="41.744865" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10055"
+ id="linearGradient5758"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7679166,0,0,1.687933,56.52845,-48.50785)"
+ x1="2.6850162"
+ y1="24.367676"
+ x2="2.9248238"
+ y2="35.053852" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5760"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6831088,0,0,1.0329054,56.57596,-21.59844)"
+ x1="4.5961943"
+ y1="14.456622"
+ x2="4.5961943"
+ y2="30.313524" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21582"
+ id="linearGradient5763"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.2565202,55.12173,-27.69264)"
+ x1="21.875"
+ y1="26.625"
+ x2="18.187626"
+ y2="26" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient21598"
+ id="linearGradient5766"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7830101,0,0,0.9810567,57.23473,-21.54117)"
+ x1="12.25"
+ y1="19.75"
+ x2="10.875"
+ y2="33.125" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10872"
+ id="linearGradient5770"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0102994,0,0,1.0172401,55.03438,-21.39944)"
+ x1="3.8890872"
+ y1="18.937069"
+ x2="3.8890872"
+ y2="25.947107" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6371"
+ id="linearGradient5773"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,53.82035,-26.31606)"
+ x1="14.241117"
+ y1="26.996773"
+ x2="15.125"
+ y2="20.976084" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5254"
+ id="linearGradient5775"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99664,0,0,1.1932745,53.82035,-26.31606)"
+ x1="11.875"
+ y1="20.375"
+ x2="13.125"
+ y2="34.13559" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient5928"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,97.72545,40.294064)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="126.80533"
+ inkscape:cy="41.532441"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="-12"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="-14.142136,73.185552"
+ id="guide3490" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-21,-23.25"
+ id="guide5857" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="-49.5,-22.625"
+ id="guide5859" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>speaker</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>right</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-speaker-right-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g8490"
+ transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,-9.0528759,-47.851156)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8492"
+ d="M 64.325669,10.506413 C 70.397099,7.0242733 77.468529,7.1135633 83.718529,10.506413 L 85.718529,14.899273 L 62.325669,14.899273 L 64.325669,10.506413 z"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="csssccsssc"
+ d="M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 84.898489,14.148893 84.391069,13.829363 83.881339,13.563883 C 83.312379,13.267543 82.740559,13.038553 82.170169,12.891833 C 78.286959,11.872493 70.453649,11.829343 66.580509,12.845703 C 65.740619,13.064843 64.898909,13.457433 64.068479,13.977613 C 63.443239,14.369273 62.824389,14.833253 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8494" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.827469,15.979023 L 65.014509,11.213023 C 70.275566,8.4697433 76.234822,7.8458533 82.953572,11.207463 L 84.922082,15.410963"
+ id="path8496"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ d="M 95.001579,28.523883 C 95.001579,28.523883 88.693549,15.595313 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593 C 60.028369,15.595313 55.03283,26.273883 55.03283,26.273883"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path8498" />
+ <path
+ transform="matrix(1.0469083,0,0,2.027027,51.01285,-35.409607)"
+ d="M 43.214285,32.24107 A 20.9375,4.9553571 0 1 1 1.3392849,32.24107 A 20.9375,4.9553571 0 1 1 43.214285,32.24107 z"
+ sodipodi:ry="4.9553571"
+ sodipodi:rx="20.9375"
+ sodipodi:cy="32.24107"
+ sodipodi:cx="22.276785"
+ id="path8500"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.68646109;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path8502"
+ d="M 95.16001,29.859216 C 95.34941,34.267437 86.35016,38.925273 74.250517,38.925273 C 62.150874,38.925273 53.120056,34.330572 53.341027,29.859216 C 53.151624,25.29316 62.150874,20.824727 74.250517,20.824727 C 86.35016,20.824727 95.19158,25.198457 95.16001,29.859216 z"
+ style="fill:url(#radialGradient8512);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 82.142459,27.943913 C 81.468389,30.131673 78.852759,31.329293 74.334599,31.329293 C 69.816449,31.329293 66.985899,29.952123 66.526739,27.943913 C 66.456009,26.238893 69.816449,24.570323 74.334599,24.570323 C 78.852759,24.570323 82.154249,26.203533 82.142459,27.943913 z"
+ id="path8504"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.96596354;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 67.476989,27.764793 C 68.447389,30.844053 71.145969,33.060833 74.320419,33.060843 C 77.514539,33.060843 80.226899,30.816463 81.181699,27.707393 C 80.281059,26.206763 76.900529,25.470543 74.291089,25.513813 C 70.986749,25.428073 68.434609,26.373493 67.476989,27.764793 z"
+ id="path8506"
+ sodipodi:nodetypes="csccc"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_Test.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998" />
+ <path
+ id="path8508"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 62.722179,14.847493 C 62.595139,14.950093 62.343579,15.242643 62.217529,15.349973 C 60.346409,16.943173 58.58922,19.037813 57.10976,21.059983 C 54.51317,24.609093 52.7721,27.934983 52.7721,27.934983 M 95.897099,27.934983 C 95.897099,27.934983 91.349669,19.248213 86.035799,14.995723 C 85.825169,14.827163 85.613329,14.665563 85.400529,14.511753 C 85.300009,14.439103 84.752372,14.219223 84.651452,14.150133"
+ sodipodi:nodetypes="cssccsss" />
+ <path
+ id="path8510"
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#bfd8f3;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 81.930899,13.855723 C 78.047689,12.836393 70.745629,12.793243 66.872489,13.809593"
+ sodipodi:nodetypes="cc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer-testing.svg b/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer-testing.svg
new file mode 100644
index 0000000..2e1dd78
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer-testing.svg
@@ -0,0 +1,240 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-subwoofer-testing.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/audio-subwoofer-testing.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient6718">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop6720" />
+ <stop
+ id="stop6724"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ id="stop3505"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6984"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8284271"
+ inkscape:cx="-48.821714"
+ inkscape:cy="66.867859"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>subwoofer</rdf:li>
+ <rdf:li>output</rdf:li>
+ <rdf:li>testing</rdf:li>
+ <rdf:li>highlighted</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-subwoofer-testing</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6973"
+ transform="translate(-51.375,9.0155254e-8)">
+ <path
+ style="fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 94.217316,39.045143 C 93.839661,41.471941 92.789441,43.219015 91.55403,43.219015 C 90.310955,43.219015 89.255378,41.450202 88.883794,38.999908 C 89.234301,37.817247 90.549918,37.23702 91.565441,37.271125 C 92.851403,37.203551 93.844629,37.948644 94.217316,39.045143 z"
+ id="path6730"
+ sodipodi:nodetypes="csccc" />
+ <path
+ sodipodi:nodetypes="csccc"
+ id="path6732"
+ d="M 62.393985,39.045143 C 62.016329,41.471941 60.96611,43.219015 59.730698,43.219015 C 58.487624,43.219015 57.432046,41.450202 57.060462,38.999908 C 57.410969,37.817247 58.726586,37.23702 59.742109,37.271125 C 61.028072,37.203551 62.021297,37.948644 62.393985,39.045143 z"
+ style="fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.28661346;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 62.953967,6.9788731 C 73.409478,4.1293728 77.293929,4.3517447 87.917557,6.9788731 L 95.317117,13.152471 L 55.554408,13.152471 L 62.953967,6.9788731 z"
+ id="path6734"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 55.289577,13.137135 C 67.861736,9.7856746 82.504598,9.8716096 95.446529,13.137135 L 95.389975,39.76734 C 82.177445,42.114593 68.287824,42.159732 55.346132,39.902758 L 55.289577,13.137135 z"
+ id="path6736"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient6984);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:2.05839419;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path6738"
+ sodipodi:cx="84.365685"
+ sodipodi:cy="64.927307"
+ sodipodi:rx="21.396112"
+ sodipodi:ry="21.396112"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ transform="matrix(0,0.4858156,-0.4858156,0,100.43255,-14.78506)" />
+ <path
+ transform="matrix(0,0.2827849,-0.2827849,0,105.0933,2.3437637)"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ sodipodi:ry="21.396112"
+ sodipodi:rx="21.396112"
+ sodipodi:cy="64.927307"
+ sodipodi:cx="84.365685"
+ id="path6740"
+ style="fill:#bfd8f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.53625679;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:5.06734753;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path6742"
+ sodipodi:cx="84.365685"
+ sodipodi:cy="64.927307"
+ sodipodi:rx="21.396112"
+ sodipodi:ry="21.396112"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ transform="matrix(0,0.1973419,-0.1973419,0,99.523923,9.5522206)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path6744"
+ d="M 56.321159,13.950789 C 67.82398,10.961669 81.161179,10.935259 94.415609,13.950789 L 94.359059,38.893489 C 81.01047,40.978079 68.381909,41.160879 56.377709,39.028909 L 56.321159,13.950789 z"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#bfd8f3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ transform="matrix(0,0.1973419,-0.1973419,0,81.702733,9.5522212)"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ sodipodi:ry="21.396112"
+ sodipodi:rx="21.396112"
+ sodipodi:cy="64.927307"
+ sodipodi:cx="84.365685"
+ id="path6746"
+ style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:5.06734753;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer.svg b/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer.svg
new file mode 100644
index 0000000..fb36468
--- /dev/null
+++ b/gnome-volume-control/data/icons/scalable/devices/audio-subwoofer.svg
@@ -0,0 +1,325 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2643"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="audio-subwoofer.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/Users/eve/Documents/GNOME/SpeakerIcon_subwoofer.png"
+ inkscape:export-xdpi="67.489998"
+ inkscape:export-ydpi="67.489998">
+ <defs
+ id="defs2645">
+ <linearGradient
+ id="linearGradient6718">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop6720" />
+ <stop
+ id="stop6724"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3345">
+ <stop
+ id="stop3347"
+ offset="0"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#729fcf;stop-opacity:1;"
+ offset="0"
+ id="stop3351" />
+ <stop
+ id="stop3355"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="1"
+ id="stop3349" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4389">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop4391" />
+ <stop
+ id="stop4393"
+ offset="1"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient5385"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.0538312,-6.3027391e-8,1.2877417e-8,-0.7232676,-9.0519739,70.961132)"
+ spreadMethod="pad"
+ cx="22.276297"
+ cy="21.099283"
+ fx="22.276297"
+ fy="21.099283"
+ r="20.319138" />
+ <linearGradient
+ id="linearGradient3503">
+ <stop
+ id="stop3505"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ <stop
+ id="stop3507"
+ offset="1"
+ style="stop-color:#babdb6;stop-opacity:1;" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ id="perspective2651" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6516"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6612"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6645"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3503"
+ id="radialGradient6705"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7451713,-0.7451712,0.5114274,0.5114274,10.506623,78.557248)"
+ spreadMethod="reflect"
+ cx="22.276291"
+ cy="21.520338"
+ fx="22.276291"
+ fy="21.520338"
+ r="20.319138" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6718"
+ id="radialGradient6716"
+ gradientUnits="userSpaceOnUse"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578"
+ gradientTransform="matrix(0.8545182,0,0,0.753115,12.273671,16.029579)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6728"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6748"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4389"
+ id="radialGradient6781"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7191227,0,0,0.7191227,23.696408,18.236608)"
+ cx="84.365685"
+ cy="64.927307"
+ fx="84.365685"
+ fy="64.927307"
+ r="22.334578" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="-397.88007"
+ inkscape:cy="205.69941"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1028"
+ inkscape:window-x="20"
+ inkscape:window-y="20"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2653"
+ visible="true"
+ enabled="true"
+ color="#ff00ff"
+ opacity="0.1254902"
+ empcolor="#0000f2"
+ empopacity="0.25098039" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="23.969062,28.50558"
+ id="guide3488" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="17.401268,34.125445"
+ id="guide3490" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2648">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>audio</rdf:li>
+ <rdf:li>device</rdf:li>
+ <rdf:li>subwoofer</rdf:li>
+ <rdf:li>output</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:title>audio-subwoofer</dc:title>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Evangeline McGlynn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6770">
+ <path
+ sodipodi:nodetypes="csccc"
+ id="path3286"
+ d="M 42.842316,39.045143 C 42.464661,41.471941 41.414441,43.219015 40.17903,43.219015 C 38.935955,43.219015 37.880378,41.450202 37.508794,38.999908 C 37.859301,37.817247 39.174918,37.23702 40.190441,37.271125 C 41.476403,37.203551 42.469629,37.948644 42.842316,39.045143 z"
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 11.018985,39.045143 C 10.641329,41.471941 9.5911095,43.219015 8.3556983,43.219015 C 7.1126243,43.219015 6.0570463,41.450202 5.6854623,38.999908 C 6.0359693,37.817247 7.3515863,37.23702 8.3671093,37.271125 C 9.6530715,37.203551 10.646297,37.948644 11.018985,39.045143 z"
+ id="path3288"
+ sodipodi:nodetypes="csccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3264"
+ d="M 11.578967,6.9788731 C 22.034478,4.1293728 25.918929,4.3517447 36.542557,6.9788731 L 43.942117,13.152471 L 4.1794077,13.152471 L 11.578967,6.9788731 z"
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.28661346;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3266"
+ d="M 3.9145768,13.137135 C 16.486736,9.7856746 31.129598,9.8716096 44.071529,13.137135 L 44.014975,39.76734 C 30.802445,42.114593 16.912824,42.159732 3.9711319,39.902758 L 3.9145768,13.137135 z"
+ style="fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <path
+ transform="matrix(0,0.4858156,-0.4858156,0,49.057554,-14.78506)"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ sodipodi:ry="21.396112"
+ sodipodi:rx="21.396112"
+ sodipodi:cy="64.927307"
+ sodipodi:cx="84.365685"
+ id="path3238"
+ style="fill:url(#radialGradient6781);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:2.05839419;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.53625679;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path3260"
+ sodipodi:cx="84.365685"
+ sodipodi:cy="64.927307"
+ sodipodi:rx="21.396112"
+ sodipodi:ry="21.396112"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ transform="matrix(0,0.2827849,-0.2827849,0,53.7183,2.3437637)" />
+ <path
+ transform="matrix(0,0.1973419,-0.1973419,0,48.148923,9.5522206)"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ sodipodi:ry="21.396112"
+ sodipodi:rx="21.396112"
+ sodipodi:cy="64.927307"
+ sodipodi:cx="84.365685"
+ id="path6518"
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:5.06734753;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 4.9461591,13.950789 C 16.44898,10.961669 29.786179,10.935259 43.040609,13.950789 L 42.984059,38.893489 C 29.63547,40.978079 17.006909,41.160879 5.0027091,39.028909 L 4.9461591,13.950789 z"
+ id="path6561"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:5.06734753;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path6581"
+ sodipodi:cx="84.365685"
+ sodipodi:cy="64.927307"
+ sodipodi:rx="21.396112"
+ sodipodi:ry="21.396112"
+ d="M 105.7618,64.927307 A 21.396112,21.396112 0 1 1 62.969572,64.927307 A 21.396112,21.396112 0 1 1 105.7618,64.927307 z"
+ transform="matrix(0,0.1973419,-0.1973419,0,30.327733,9.5522212)" />
+ </g>
+ </g>
+</svg>
diff --git a/gnome-volume-control/src/Makefile.am b/gnome-volume-control/src/Makefile.am
index 21462af..199d0b5 100644
--- a/gnome-volume-control/src/Makefile.am
+++ b/gnome-volume-control/src/Makefile.am
@@ -38,8 +38,6 @@ libgnomevolumecontrol_la_SOURCES = \
gvc-mixer-control.c \
gvc-channel-bar.h \
gvc-channel-bar.c \
- gvc-applet.h \
- gvc-applet.c \
gvc-log.h \
gvc-log.c \
$(NULL)
@@ -54,6 +52,8 @@ gnome_volume_control_applet_LDADD = \
gnome_volume_control_applet_SOURCES = \
gvc-stream-status-icon.h \
gvc-stream-status-icon.c \
+ gvc-applet.h \
+ gvc-applet.c \
applet-main.c \
$(NULL)
@@ -74,6 +74,8 @@ gnome_volume_control_SOURCES = \
gvc-level-bar.c \
gvc-combo-box.h \
gvc-combo-box.c \
+ gvc-speaker-test.h \
+ gvc-speaker-test.c \
dialog-main.c \
$(NULL)
diff --git a/gnome-volume-control/src/dialog-main.c b/gnome-volume-control/src/dialog-main.c
index b3f06c0..8bfaa0f 100644
--- a/gnome-volume-control/src/dialog-main.c
+++ b/gnome-volume-control/src/dialog-main.c
@@ -188,6 +188,7 @@ main (int argc, char **argv)
gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
ICON_DATA_DIR);
+ gtk_window_set_default_icon_name ("multimedia-volume-control");
control = gvc_mixer_control_new ("GNOME Volume Control Dialog");
g_signal_connect (control,
diff --git a/gnome-volume-control/src/gvc-balance-bar.c b/gnome-volume-control/src/gvc-balance-bar.c
index 02c727d..890a8db 100644
--- a/gnome-volume-control/src/gvc-balance-bar.c
+++ b/gnome-volume-control/src/gvc-balance-bar.c
@@ -534,7 +534,7 @@ gvc_balance_bar_finalize (GObject *object)
}
GtkWidget *
-gvc_balance_bar_new (GvcChannelMap *channel_map, GvcBalanceType btype)
+gvc_balance_bar_new (const GvcChannelMap *channel_map, GvcBalanceType btype)
{
GObject *bar;
bar = g_object_new (GVC_TYPE_BALANCE_BAR,
diff --git a/gnome-volume-control/src/gvc-balance-bar.h b/gnome-volume-control/src/gvc-balance-bar.h
index 5122552..95e96dc 100644
--- a/gnome-volume-control/src/gvc-balance-bar.h
+++ b/gnome-volume-control/src/gvc-balance-bar.h
@@ -57,7 +57,7 @@ typedef struct
GType gvc_balance_bar_get_type (void);
-GtkWidget * gvc_balance_bar_new (GvcChannelMap *map,
+GtkWidget * gvc_balance_bar_new (const GvcChannelMap *map,
GvcBalanceType btype);
void gvc_balance_bar_set_size_group (GvcBalanceBar *bar,
diff --git a/gnome-volume-control/src/gvc-channel-map.c b/gnome-volume-control/src/gvc-channel-map.c
index ea3e5af..82abf86 100644
--- a/gnome-volume-control/src/gvc-channel-map.c
+++ b/gnome-volume-control/src/gvc-channel-map.c
@@ -49,7 +49,6 @@ struct GvcChannelMapPrivate
gdouble extern_volume[NUM_TYPES]; /* volume, balance, fade, lfe */
gboolean can_balance;
gboolean can_fade;
- gboolean has_lfe;
};
enum {
@@ -104,7 +103,7 @@ gvc_cvolume_get_position (pa_cvolume *cv, const pa_channel_map *map, pa_channel_
#endif
guint
-gvc_channel_map_get_num_channels (GvcChannelMap *map)
+gvc_channel_map_get_num_channels (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), 0);
@@ -140,7 +139,7 @@ gvc_channel_map_get_volume (GvcChannelMap *map)
}
gboolean
-gvc_channel_map_can_balance (GvcChannelMap *map)
+gvc_channel_map_can_balance (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), FALSE);
@@ -148,7 +147,7 @@ gvc_channel_map_can_balance (GvcChannelMap *map)
}
gboolean
-gvc_channel_map_can_fade (GvcChannelMap *map)
+gvc_channel_map_can_fade (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), FALSE);
@@ -156,7 +155,7 @@ gvc_channel_map_can_fade (GvcChannelMap *map)
}
const char *
-gvc_channel_map_get_mapping (GvcChannelMap *map)
+gvc_channel_map_get_mapping (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), NULL);
@@ -167,15 +166,16 @@ gvc_channel_map_get_mapping (GvcChannelMap *map)
}
gboolean
-gvc_channel_map_has_lfe (GvcChannelMap *map)
+gvc_channel_map_has_position (const GvcChannelMap *map,
+ pa_channel_position_t position)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), FALSE);
- return map->priv->has_lfe;
+ return gvc_pa_channel_map_has_position (&(map->priv->pa_map), position);
}
const pa_channel_map *
-gvc_channel_map_get_pa_channel_map (GvcChannelMap *map)
+gvc_channel_map_get_pa_channel_map (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), NULL);
@@ -186,7 +186,7 @@ gvc_channel_map_get_pa_channel_map (GvcChannelMap *map)
}
const pa_cvolume *
-gvc_channel_map_get_cvolume (GvcChannelMap *map)
+gvc_channel_map_get_cvolume (const GvcChannelMap *map)
{
g_return_val_if_fail (GVC_IS_CHANNEL_MAP (map), NULL);
@@ -274,7 +274,6 @@ set_from_pa_map (GvcChannelMap *map,
map->priv->can_balance = pa_channel_map_can_balance (pa_map);
map->priv->can_fade = pa_channel_map_can_fade (pa_map);
- map->priv->has_lfe = gvc_pa_channel_map_has_position (pa_map, PA_CHANNEL_POSITION_LFE);
map->priv->pa_map = *pa_map;
pa_cvolume_set(&map->priv->pa_volume, pa_map->channels, PA_VOLUME_NORM);
diff --git a/gnome-volume-control/src/gvc-channel-map.h b/gnome-volume-control/src/gvc-channel-map.h
index 497ce69..a149ee3 100644
--- a/gnome-volume-control/src/gvc-channel-map.h
+++ b/gnome-volume-control/src/gvc-channel-map.h
@@ -60,20 +60,22 @@ GType gvc_channel_map_get_type (void);
GvcChannelMap * gvc_channel_map_new (void);
GvcChannelMap * gvc_channel_map_new_from_pa_channel_map (const pa_channel_map *map);
-guint gvc_channel_map_get_num_channels (GvcChannelMap *map);
+guint gvc_channel_map_get_num_channels (const GvcChannelMap *map);
const gdouble * gvc_channel_map_get_volume (GvcChannelMap *map);
-gboolean gvc_channel_map_can_balance (GvcChannelMap *map);
-gboolean gvc_channel_map_can_fade (GvcChannelMap *map);
-gboolean gvc_channel_map_has_lfe (GvcChannelMap *map);
+gboolean gvc_channel_map_can_balance (const GvcChannelMap *map);
+gboolean gvc_channel_map_can_fade (const GvcChannelMap *map);
+gboolean gvc_channel_map_has_position (const GvcChannelMap *map,
+ pa_channel_position_t position);
+#define gvc_channel_map_has_lfe(x) gvc_channel_map_has_position (x, PA_CHANNEL_POSITION_LFE)
void gvc_channel_map_volume_changed (GvcChannelMap *map,
const pa_cvolume *cv,
gboolean set);
-const char * gvc_channel_map_get_mapping (GvcChannelMap *map);
+const char * gvc_channel_map_get_mapping (const GvcChannelMap *map);
/* private */
-const pa_cvolume * gvc_channel_map_get_cvolume (GvcChannelMap *map);
-const pa_channel_map * gvc_channel_map_get_pa_channel_map (GvcChannelMap *map);
+const pa_cvolume * gvc_channel_map_get_cvolume (const GvcChannelMap *map);
+const pa_channel_map * gvc_channel_map_get_pa_channel_map (const GvcChannelMap *map);
G_END_DECLS
#endif /* __GVC_CHANNEL_MAP_H */
diff --git a/gnome-volume-control/src/gvc-combo-box.c b/gnome-volume-control/src/gvc-combo-box.c
index d811273..5e0d82c 100644
--- a/gnome-volume-control/src/gvc-combo-box.c
+++ b/gnome-volume-control/src/gvc-combo-box.c
@@ -41,6 +41,7 @@ struct GvcComboBoxPrivate
GtkWidget *start_box;
GtkWidget *end_box;
GtkWidget *label;
+ GtkWidget *button;
GtkTreeModel *model;
GtkWidget *combobox;
gboolean set_called;
@@ -56,12 +57,15 @@ enum {
enum {
CHANGED,
+ BUTTON_CLICKED,
LAST_SIGNAL
};
enum {
PROP_0,
- PROP_LABEL
+ PROP_LABEL,
+ PROP_SHOW_BUTTON,
+ PROP_BUTTON_LABEL
};
static guint signals [LAST_SIGNAL] = { 0, };
@@ -106,6 +110,12 @@ gvc_combo_box_set_property (GObject *object,
case PROP_LABEL:
gtk_label_set_text_with_mnemonic (GTK_LABEL (self->priv->label), g_value_get_string (value));
break;
+ case PROP_BUTTON_LABEL:
+ gtk_button_set_label (GTK_BUTTON (self->priv->button), g_value_get_string (value));
+ break;
+ case PROP_SHOW_BUTTON:
+ gtk_widget_set_visible (self->priv->button, g_value_get_boolean (value));
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -125,6 +135,14 @@ gvc_combo_box_get_property (GObject *object,
g_value_set_string (value,
gtk_label_get_text (GTK_LABEL (self->priv->label)));
break;
+ case PROP_BUTTON_LABEL:
+ g_value_set_string (value,
+ gtk_button_get_label (GTK_BUTTON (self->priv->button)));
+ break;
+ case PROP_SHOW_BUTTON:
+ g_value_set_boolean (value,
+ gtk_widget_get_visible (self->priv->button));
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -144,9 +162,23 @@ gvc_combo_box_class_init (GvcComboBoxClass *klass)
PROP_LABEL,
g_param_spec_string ("label",
"label",
- "The combo box labale",
+ "The combo box label",
_("_Profile:"),
G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+ g_object_class_install_property (object_class,
+ PROP_SHOW_BUTTON,
+ g_param_spec_boolean ("show-button",
+ "show-button",
+ "Whether to show the button",
+ FALSE,
+ G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+ g_object_class_install_property (object_class,
+ PROP_BUTTON_LABEL,
+ g_param_spec_string ("button-label",
+ "button-label",
+ "The button's label",
+ "APPLICATION BUG",
+ G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
signals [CHANGED] =
g_signal_new ("changed",
G_TYPE_FROM_CLASS (klass),
@@ -155,6 +187,14 @@ gvc_combo_box_class_init (GvcComboBoxClass *klass)
NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING);
+ signals [BUTTON_CLICKED] =
+ g_signal_new ("button-clicked",
+ G_TYPE_FROM_CLASS (klass),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (GvcComboBoxClass, button_clicked),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0, G_TYPE_NONE);
g_type_class_add_private (klass, sizeof (GvcComboBoxPrivate));
}
@@ -246,6 +286,13 @@ on_combo_box_changed (GtkComboBox *widget,
}
static void
+on_combo_box_button_clicked (GtkButton *button,
+ GvcComboBox *combo_box)
+{
+ g_signal_emit (combo_box, signals[BUTTON_CLICKED], 0);
+}
+
+static void
gvc_combo_box_init (GvcComboBox *combo_box)
{
GtkWidget *frame;
@@ -287,7 +334,12 @@ gvc_combo_box_init (GvcComboBox *combo_box)
gtk_box_pack_start (GTK_BOX (sbox), combo_box->priv->label, FALSE, FALSE, 0);
- gtk_box_pack_start (GTK_BOX (box), combo_box->priv->combobox, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (box), combo_box->priv->combobox, TRUE, TRUE, 0);
+
+ combo_box->priv->button = gtk_button_new_with_label ("APPLICATION BUG");
+ gtk_widget_set_no_show_all (combo_box->priv->button, TRUE);
+ gtk_box_pack_start (GTK_BOX (box), combo_box->priv->button, FALSE, FALSE, 0);
+
combo_box->priv->end_box = ebox = gtk_hbox_new (FALSE, 6);
gtk_box_pack_start (GTK_BOX (box), ebox, FALSE, FALSE, 0);
@@ -302,11 +354,14 @@ gvc_combo_box_init (GvcComboBox *combo_box)
gtk_container_add (GTK_CONTAINER (frame), combo_box->priv->drop_box);
gtk_widget_show_all (frame);
+
gtk_label_set_mnemonic_widget (GTK_LABEL (combo_box->priv->label),
combo_box->priv->combobox);
g_signal_connect (G_OBJECT (combo_box->priv->combobox), "changed",
G_CALLBACK (on_combo_box_changed), combo_box);
+ g_signal_connect (G_OBJECT (combo_box->priv->button), "clicked",
+ G_CALLBACK (on_combo_box_button_clicked), combo_box);
}
static void
diff --git a/gnome-volume-control/src/gvc-combo-box.h b/gnome-volume-control/src/gvc-combo-box.h
index a325d93..f1ffc0d 100644
--- a/gnome-volume-control/src/gvc-combo-box.h
+++ b/gnome-volume-control/src/gvc-combo-box.h
@@ -42,8 +42,9 @@ typedef struct
typedef struct
{
- GtkHBoxClass parent_class;
- void (* changed) (GvcComboBox *combobox, const char *name);
+ GtkHBoxClass parent_class;
+ void (* changed) (GvcComboBox *combobox, const char *name);
+ void (* button_clicked) (GvcComboBox *combobox);
} GvcComboBoxClass;
GType gvc_combo_box_get_type (void);
diff --git a/gnome-volume-control/src/gvc-mixer-card.h b/gnome-volume-control/src/gvc-mixer-card.h
index 3da3edb..ad24cd6 100644
--- a/gnome-volume-control/src/gvc-mixer-card.h
+++ b/gnome-volume-control/src/gvc-mixer-card.h
@@ -54,6 +54,7 @@ typedef struct
char *human_profile;
char *status;
guint priority;
+ guint n_sinks, n_sources;
} GvcMixerCardProfile;
GType gvc_mixer_card_get_type (void);
diff --git a/gnome-volume-control/src/gvc-mixer-control.c b/gnome-volume-control/src/gvc-mixer-control.c
index 52c7cfd..ee5d5c8 100644
--- a/gnome-volume-control/src/gvc-mixer-control.c
+++ b/gnome-volume-control/src/gvc-mixer-control.c
@@ -683,6 +683,7 @@ update_sink (GvcMixerControl *control,
max_volume = pa_cvolume_max (&info->volume);
gvc_mixer_stream_set_name (stream, info->name);
+ gvc_mixer_stream_set_card_index (stream, info->card);
gvc_mixer_stream_set_description (stream, info->description);
gvc_mixer_stream_set_icon_name (stream, "audio-card");
gvc_mixer_stream_set_volume (stream, (guint)max_volume);
@@ -708,7 +709,7 @@ update_sink (GvcMixerControl *control,
}
if (map == NULL)
- map = gvc_mixer_stream_get_channel_map (stream);
+ map = (GvcChannelMap *) gvc_mixer_stream_get_channel_map (stream);
gvc_channel_map_volume_changed (map, &info->volume, FALSE);
}
@@ -771,6 +772,7 @@ update_source (GvcMixerControl *control,
max_volume = pa_cvolume_max (&info->volume);
gvc_mixer_stream_set_name (stream, info->name);
+ gvc_mixer_stream_set_card_index (stream, info->card);
gvc_mixer_stream_set_description (stream, info->description);
gvc_mixer_stream_set_icon_name (stream, "audio-input-microphone");
gvc_mixer_stream_set_volume (stream, (guint)max_volume);
@@ -1076,6 +1078,8 @@ update_card (GvcMixerControl *control,
profile->profile = g_strdup (pi.name);
profile->human_profile = g_strdup (pi.description);
profile->status = card_num_streams_to_status (pi.n_sinks, pi.n_sources);
+ profile->n_sinks = pi.n_sinks;
+ profile->n_sources = pi.n_sources;
profile->priority = pi.priority;
list = g_list_prepend (list, profile);
}
diff --git a/gnome-volume-control/src/gvc-mixer-dialog.c b/gnome-volume-control/src/gvc-mixer-dialog.c
index 6b8b0b3..e21ef9e 100644
--- a/gnome-volume-control/src/gvc-mixer-dialog.c
+++ b/gnome-volume-control/src/gvc-mixer-dialog.c
@@ -42,6 +42,7 @@
#include "gvc-mixer-dialog.h"
#include "gvc-sound-theme-chooser.h"
#include "gvc-level-bar.h"
+#include "gvc-speaker-test.h"
#define SCALE_SIZE 128
@@ -222,9 +223,9 @@ port_selection_changed (GvcComboBox *combo_box,
static void
update_output_settings (GvcMixerDialog *dialog)
{
- GvcMixerStream *stream;
- GvcChannelMap *map;
- const GList *ports;
+ GvcMixerStream *stream;
+ const GvcChannelMap *map;
+ const GList *ports;
g_debug ("Updating output settings");
if (dialog->priv->output_balance_bar != NULL) {
@@ -304,7 +305,7 @@ update_output_settings (GvcMixerDialog *dialog)
ports = gvc_mixer_stream_get_ports (stream);
if (ports != NULL) {
- GvcMixerStreamPort *port;
+ const GvcMixerStreamPort *port;
port = gvc_mixer_stream_get_port (stream);
dialog->priv->output_port_combo = gvc_combo_box_new (_("Co_nnector:"));
@@ -599,7 +600,7 @@ update_input_settings (GvcMixerDialog *dialog)
ports = gvc_mixer_stream_get_ports (stream);
if (ports != NULL) {
- GvcMixerStreamPort *port;
+ const GvcMixerStreamPort *port;
port = gvc_mixer_stream_get_port (stream);
dialog->priv->input_port_combo = gvc_combo_box_new (_("Co_nnector:"));
@@ -1100,9 +1101,9 @@ add_stream (GvcMixerDialog *dialog,
G_CALLBACK (on_stream_description_notify),
dialog);
} else if (GVC_IS_MIXER_SINK (stream)) {
- GtkTreeModel *model;
- GtkTreeIter iter;
- GvcChannelMap *map;
+ GtkTreeModel *model;
+ GtkTreeIter iter;
+ const GvcChannelMap *map;
model = gtk_tree_view_get_model (GTK_TREE_VIEW (dialog->priv->output_treeview));
gtk_list_store_append (GTK_LIST_STORE (model), &iter);
@@ -1266,6 +1267,9 @@ add_card (GvcMixerDialog *dialog,
if (gvc_mixer_card_get_index (selected) == gvc_mixer_card_get_index (card)) {
gvc_combo_box_set_active (GVC_COMBO_BOX (dialog->priv->hw_profile_combo),
profile->profile);
+ g_object_set (G_OBJECT (dialog->priv->hw_profile_combo),
+ "show-button", profile->n_sinks == 1,
+ NULL);
}
}
}
@@ -1498,6 +1502,42 @@ on_profile_changed (GvcComboBox *widget,
}
static void
+on_test_speakers_clicked (GvcComboBox *widget,
+ gpointer user_data)
+{
+ GvcMixerDialog *dialog = GVC_MIXER_DIALOG (user_data);
+ GvcMixerCard *card;
+ GvcMixerCardProfile *profile;
+ GtkWidget *d, *speaker_test, *container;
+ char *title;
+
+ card = g_object_get_data (G_OBJECT (widget), "card");
+ if (card == NULL) {
+ g_warning ("Could not find card for combobox");
+ return;
+ }
+ profile = gvc_mixer_card_get_profile (card);
+
+ g_debug ("XXX Start speaker testing for profile '%s', card %s XXX",
+ profile->profile, gvc_mixer_card_get_name (card));
+
+ title = g_strdup_printf (_("Speaker Testing for %s"), gvc_mixer_card_get_name (card));
+ d = gtk_dialog_new_with_buttons (title,
+ GTK_WINDOW (dialog),
+ GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
+ NULL);
+ g_free (title);
+ speaker_test = gvc_speaker_test_new (dialog->priv->mixer_control,
+ card);
+ gtk_widget_show (speaker_test);
+ container = gtk_dialog_get_content_area (GTK_DIALOG (d));
+ gtk_container_add (GTK_CONTAINER (container), speaker_test);
+
+ gtk_dialog_run (GTK_DIALOG (d));
+ gtk_widget_destroy (d);
+}
+
+static void
on_card_selection_changed (GtkTreeSelection *selection,
gpointer user_data)
{
@@ -1536,17 +1576,23 @@ on_card_selection_changed (GtkTreeSelection *selection,
current_profile = gvc_mixer_card_get_profile (card);
profiles = gvc_mixer_card_get_profiles (card);
dialog->priv->hw_profile_combo = gvc_combo_box_new (_("_Profile:"));
+ g_object_set (G_OBJECT (dialog->priv->hw_profile_combo), "button-label", _("Test Speakers"), NULL);
gvc_combo_box_set_profiles (GVC_COMBO_BOX (dialog->priv->hw_profile_combo), profiles);
gvc_combo_box_set_active (GVC_COMBO_BOX (dialog->priv->hw_profile_combo), current_profile->profile);
gtk_box_pack_start (GTK_BOX (dialog->priv->hw_settings_box),
dialog->priv->hw_profile_combo,
TRUE, TRUE, 6);
+ g_object_set (G_OBJECT (dialog->priv->hw_profile_combo),
+ "show-button", current_profile->n_sinks == 1,
+ NULL);
gtk_widget_show (dialog->priv->hw_profile_combo);
g_object_set_data (G_OBJECT (dialog->priv->hw_profile_combo), "card", card);
g_signal_connect (G_OBJECT (dialog->priv->hw_profile_combo), "changed",
G_CALLBACK (on_profile_changed), dialog);
+ g_signal_connect (G_OBJECT (dialog->priv->hw_profile_combo), "button-clicked",
+ G_CALLBACK (on_test_speakers_clicked), dialog);
}
static void
diff --git a/gnome-volume-control/src/gvc-mixer-event-role.c b/gnome-volume-control/src/gvc-mixer-event-role.c
index 69e38ce..6166d1d 100644
--- a/gnome-volume-control/src/gvc-mixer-event-role.c
+++ b/gnome-volume-control/src/gvc-mixer-event-role.c
@@ -58,7 +58,7 @@ update_settings (GvcMixerEventRole *role,
{
pa_operation *o;
guint index;
- GvcChannelMap *map;
+ const GvcChannelMap *map;
pa_context *context;
pa_ext_stream_restore_info info;
@@ -87,8 +87,8 @@ update_settings (GvcMixerEventRole *role,
return FALSE;
}
- if (op != NULL)
- *op = o;
+ if (op != NULL)
+ *op = o;
return TRUE;
}
diff --git a/gnome-volume-control/src/gvc-mixer-sink-input.c b/gnome-volume-control/src/gvc-mixer-sink-input.c
index 35551bb..9d4ad2a 100644
--- a/gnome-volume-control/src/gvc-mixer-sink-input.c
+++ b/gnome-volume-control/src/gvc-mixer-sink-input.c
@@ -48,12 +48,12 @@ G_DEFINE_TYPE (GvcMixerSinkInput, gvc_mixer_sink_input, GVC_TYPE_MIXER_STREAM)
static gboolean
gvc_mixer_sink_input_push_volume (GvcMixerStream *stream, gpointer *op)
{
- pa_operation *o;
- guint index;
- GvcChannelMap *map;
- pa_context *context;
- const pa_cvolume *cv;
- guint num_channels;
+ pa_operation *o;
+ guint index;
+ const GvcChannelMap *map;
+ pa_context *context;
+ const pa_cvolume *cv;
+ guint num_channels;
index = gvc_mixer_stream_get_index (stream);
diff --git a/gnome-volume-control/src/gvc-mixer-sink.c b/gnome-volume-control/src/gvc-mixer-sink.c
index 5e95f63..649b840 100644
--- a/gnome-volume-control/src/gvc-mixer-sink.c
+++ b/gnome-volume-control/src/gvc-mixer-sink.c
@@ -48,11 +48,11 @@ G_DEFINE_TYPE (GvcMixerSink, gvc_mixer_sink, GVC_TYPE_MIXER_STREAM)
static gboolean
gvc_mixer_sink_push_volume (GvcMixerStream *stream, gpointer *op)
{
- pa_operation *o;
- guint index;
- GvcChannelMap *map;
- pa_context *context;
- const pa_cvolume *cv;
+ pa_operation *o;
+ guint index;
+ const GvcChannelMap *map;
+ pa_context *context;
+ const pa_cvolume *cv;
index = gvc_mixer_stream_get_index (stream);
@@ -133,7 +133,7 @@ gvc_mixer_sink_change_port (GvcMixerStream *stream,
return TRUE;
#else
- return FALSE;
+ return FALSE;
#endif /* PA_MICRO > 15 */
}
diff --git a/gnome-volume-control/src/gvc-mixer-source.c b/gnome-volume-control/src/gvc-mixer-source.c
index d13be9d..309bcb9 100644
--- a/gnome-volume-control/src/gvc-mixer-source.c
+++ b/gnome-volume-control/src/gvc-mixer-source.c
@@ -48,11 +48,11 @@ G_DEFINE_TYPE (GvcMixerSource, gvc_mixer_source, GVC_TYPE_MIXER_STREAM)
static gboolean
gvc_mixer_source_push_volume (GvcMixerStream *stream, gpointer *op)
{
- pa_operation *o;
- guint index;
- GvcChannelMap *map;
- pa_context *context;
- const pa_cvolume *cv;
+ pa_operation *o;
+ guint index;
+ const GvcChannelMap *map;
+ pa_context *context;
+ const pa_cvolume *cv;
index = gvc_mixer_stream_get_index (stream);
@@ -133,7 +133,7 @@ gvc_mixer_source_change_port (GvcMixerStream *stream,
return TRUE;
#else
- return FALSE;
+ return FALSE;
#endif /* PA_MICRO > 15 */
}
diff --git a/gnome-volume-control/src/gvc-mixer-stream.c b/gnome-volume-control/src/gvc-mixer-stream.c
index 59c1f3c..243d773 100644
--- a/gnome-volume-control/src/gvc-mixer-stream.c
+++ b/gnome-volume-control/src/gvc-mixer-stream.c
@@ -40,6 +40,7 @@ struct GvcMixerStreamPrivate
pa_context *pa_context;
guint id;
guint index;
+ gint card_index;
GvcChannelMap *channel_map;
char *name;
char *description;
@@ -73,6 +74,7 @@ enum
PROP_CAN_DECIBEL,
PROP_IS_EVENT_STREAM,
PROP_IS_VIRTUAL,
+ PROP_CARD_INDEX,
PROP_PORT,
};
@@ -117,7 +119,7 @@ gvc_mixer_stream_get_id (GvcMixerStream *stream)
return stream->priv->id;
}
-GvcChannelMap *
+const GvcChannelMap *
gvc_mixer_stream_get_channel_map (GvcMixerStream *stream)
{
g_return_val_if_fail (GVC_IS_MIXER_STREAM (stream), NULL);
@@ -403,7 +405,7 @@ gvc_mixer_stream_set_base_volume (GvcMixerStream *stream,
return TRUE;
}
-GvcMixerStreamPort *
+const GvcMixerStreamPort *
gvc_mixer_stream_get_port (GvcMixerStream *stream)
{
GList *l;
@@ -489,6 +491,25 @@ gvc_mixer_stream_set_ports (GvcMixerStream *stream,
return TRUE;
}
+gint
+gvc_mixer_stream_get_card_index (GvcMixerStream *stream)
+{
+ g_return_val_if_fail (GVC_IS_MIXER_STREAM (stream), PA_INVALID_INDEX);
+ return stream->priv->card_index;
+}
+
+gboolean
+gvc_mixer_stream_set_card_index (GvcMixerStream *stream,
+ gint card_index)
+{
+ g_return_val_if_fail (GVC_IS_MIXER_STREAM (stream), FALSE);
+
+ stream->priv->card_index = card_index;
+ g_object_notify (G_OBJECT (stream), "card-index");
+
+ return TRUE;
+}
+
static void
gvc_mixer_stream_set_property (GObject *object,
guint prop_id,
@@ -543,6 +564,9 @@ gvc_mixer_stream_set_property (GObject *object,
case PROP_PORT:
gvc_mixer_stream_set_port (self, g_value_get_string (value));
break;
+ case PROP_CARD_INDEX:
+ self->priv->card_index = g_value_get_long (value);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -605,6 +629,9 @@ gvc_mixer_stream_get_property (GObject *object,
case PROP_PORT:
g_value_set_string (value, self->priv->port);
break;
+ case PROP_CARD_INDEX:
+ g_value_set_long (value, self->priv->card_index);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -815,6 +842,13 @@ gvc_mixer_stream_class_init (GvcMixerStreamClass *klass)
"The name of the current port for this stream",
NULL,
G_PARAM_READWRITE));
+ g_object_class_install_property (gobject_class,
+ PROP_CARD_INDEX,
+ g_param_spec_long ("card-index",
+ "Card index",
+ "The index of the card for this stream",
+ PA_INVALID_INDEX, G_MAXLONG, PA_INVALID_INDEX,
+ G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
g_type_class_add_private (klass, sizeof (GvcMixerStreamPrivate));
}
diff --git a/gnome-volume-control/src/gvc-mixer-stream.h b/gnome-volume-control/src/gvc-mixer-stream.h
index 4ae2d34..bbeb8a3 100644
--- a/gnome-volume-control/src/gvc-mixer-stream.h
+++ b/gnome-volume-control/src/gvc-mixer-stream.h
@@ -68,8 +68,8 @@ GType gvc_mixer_stream_get_type (void);
pa_context * gvc_mixer_stream_get_pa_context (GvcMixerStream *stream);
guint gvc_mixer_stream_get_index (GvcMixerStream *stream);
guint gvc_mixer_stream_get_id (GvcMixerStream *stream);
-GvcChannelMap * gvc_mixer_stream_get_channel_map (GvcMixerStream *stream);
-GvcMixerStreamPort *gvc_mixer_stream_get_port (GvcMixerStream *stream);
+const GvcChannelMap *gvc_mixer_stream_get_channel_map(GvcMixerStream *stream);
+const GvcMixerStreamPort *gvc_mixer_stream_get_port (GvcMixerStream *stream);
const GList * gvc_mixer_stream_get_ports (GvcMixerStream *stream);
gboolean gvc_mixer_stream_change_port (GvcMixerStream *stream,
const char *port);
@@ -90,6 +90,7 @@ const char * gvc_mixer_stream_get_description (GvcMixerStream *stream);
const char * gvc_mixer_stream_get_application_id (GvcMixerStream *stream);
gboolean gvc_mixer_stream_is_event_stream (GvcMixerStream *stream);
gboolean gvc_mixer_stream_is_virtual (GvcMixerStream *stream);
+gint gvc_mixer_stream_get_card_index (GvcMixerStream *stream);
/* private */
gboolean gvc_mixer_stream_set_volume (GvcMixerStream *stream,
@@ -118,6 +119,8 @@ gboolean gvc_mixer_stream_set_port (GvcMixerStream *stream,
const char *port);
gboolean gvc_mixer_stream_set_ports (GvcMixerStream *stream,
GList *ports);
+gboolean gvc_mixer_stream_set_card_index (GvcMixerStream *stream,
+ gint card_index);
G_END_DECLS
diff --git a/gnome-volume-control/src/gvc-speaker-test.c b/gnome-volume-control/src/gvc-speaker-test.c
new file mode 100644
index 0000000..0d9082e
--- /dev/null
+++ b/gnome-volume-control/src/gvc-speaker-test.c
@@ -0,0 +1,501 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2009 Bastien Nocera
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#include "config.h"
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <unistd.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+#include <canberra.h>
+#include <canberra-gtk.h>
+
+#include "gvc-speaker-test.h"
+#include "gvc-mixer-stream.h"
+#include "gvc-mixer-card.h"
+
+#define GVC_SPEAKER_TEST_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GVC_TYPE_SPEAKER_TEST, GvcSpeakerTestPrivate))
+
+struct GvcSpeakerTestPrivate
+{
+ GtkWidget *channel_controls[PA_CHANNEL_POSITION_MAX];
+ ca_context *canberra;
+ GvcMixerCard *card;
+ GvcMixerControl *control;
+};
+
+enum {
+ COL_NAME,
+ COL_HUMAN_NAME,
+ NUM_COLS
+};
+
+enum {
+ PROP_0,
+ PROP_CARD,
+ PROP_CONTROL
+};
+
+static void gvc_speaker_test_class_init (GvcSpeakerTestClass *klass);
+static void gvc_speaker_test_init (GvcSpeakerTest *speaker_test);
+static void gvc_speaker_test_finalize (GObject *object);
+static void update_channel_map (GvcSpeakerTest *speaker_test);
+
+G_DEFINE_TYPE (GvcSpeakerTest, gvc_speaker_test, GTK_TYPE_TABLE)
+
+static const int position_table[] = {
+ /* Position, X, Y */
+ PA_CHANNEL_POSITION_FRONT_LEFT, 0, 0,
+ PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER, 1, 0,
+ PA_CHANNEL_POSITION_FRONT_CENTER, 2, 0,
+ PA_CHANNEL_POSITION_MONO, 2, 0,
+ PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER, 3, 0,
+ PA_CHANNEL_POSITION_FRONT_RIGHT, 4, 0,
+ PA_CHANNEL_POSITION_SIDE_LEFT, 0, 1,
+ PA_CHANNEL_POSITION_SIDE_RIGHT, 4, 1,
+ PA_CHANNEL_POSITION_REAR_LEFT, 0, 2,
+ PA_CHANNEL_POSITION_REAR_CENTER, 2, 2,
+ PA_CHANNEL_POSITION_REAR_RIGHT, 4, 2,
+ PA_CHANNEL_POSITION_LFE, 3, 2
+};
+
+static void
+gvc_speaker_test_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ GvcSpeakerTest *self = GVC_SPEAKER_TEST (object);
+
+ switch (prop_id) {
+ case PROP_CARD:
+ self->priv->card = g_value_dup_object (value);
+ if (self->priv->control != NULL)
+ update_channel_map (self);
+ break;
+ case PROP_CONTROL:
+ self->priv->control = g_value_dup_object (value);
+ if (self->priv->card != NULL)
+ update_channel_map (self);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+gvc_speaker_test_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ GvcSpeakerTest *self = GVC_SPEAKER_TEST (object);
+
+ switch (prop_id) {
+ case PROP_CARD:
+ g_value_set_object (value, self->priv->card);
+ break;
+ case PROP_CONTROL:
+ g_value_set_object (value, self->priv->control);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+gvc_speaker_test_class_init (GvcSpeakerTestClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->finalize = gvc_speaker_test_finalize;
+ object_class->set_property = gvc_speaker_test_set_property;
+ object_class->get_property = gvc_speaker_test_get_property;
+
+ g_object_class_install_property (object_class,
+ PROP_CARD,
+ g_param_spec_object ("card",
+ "card",
+ "The card",
+ GVC_TYPE_MIXER_CARD,
+ G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+ g_object_class_install_property (object_class,
+ PROP_CONTROL,
+ g_param_spec_object ("control",
+ "control",
+ "The mixer controller",
+ GVC_TYPE_MIXER_CONTROL,
+ G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
+ g_type_class_add_private (klass, sizeof (GvcSpeakerTestPrivate));
+}
+
+static const char *
+sound_name (pa_channel_position_t position)
+{
+ switch (position) {
+ case PA_CHANNEL_POSITION_FRONT_LEFT:
+ return "audio-channel-front-left";
+ case PA_CHANNEL_POSITION_FRONT_RIGHT:
+ return "audio-channel-front-right";
+ case PA_CHANNEL_POSITION_FRONT_CENTER:
+ return "audio-channel-front-center";
+ case PA_CHANNEL_POSITION_REAR_LEFT:
+ return "audio-channel-rear-left";
+ case PA_CHANNEL_POSITION_REAR_RIGHT:
+ return "audio-channel-rear-right";
+ case PA_CHANNEL_POSITION_REAR_CENTER:
+ return "audio-channel-rear-center";
+ case PA_CHANNEL_POSITION_LFE:
+ return "audio-channel-lfe";
+ case PA_CHANNEL_POSITION_SIDE_LEFT:
+ return "audio-channel-side-left";
+ case PA_CHANNEL_POSITION_SIDE_RIGHT:
+ return "audio-channel-side-right";
+ default:
+ return NULL;
+ }
+}
+
+static const char *
+icon_name (pa_channel_position_t position, gboolean playing)
+{
+ switch (position) {
+ case PA_CHANNEL_POSITION_FRONT_LEFT:
+ return playing ? "audio-speaker-left-testing" : "audio-speaker-left";
+ case PA_CHANNEL_POSITION_FRONT_RIGHT:
+ return playing ? "audio-speaker-right-testing" : "audio-speaker-right";
+ case PA_CHANNEL_POSITION_FRONT_CENTER:
+ return playing ? "audio-speaker-center-testing" : "audio-speaker-center";
+ case PA_CHANNEL_POSITION_REAR_LEFT:
+ return playing ? "audio-speaker-left-back-testing" : "audio-speaker-left-back";
+ case PA_CHANNEL_POSITION_REAR_RIGHT:
+ return playing ? "audio-speaker-right-back-testing" : "audio-speaker-right-back";
+ case PA_CHANNEL_POSITION_REAR_CENTER:
+ return playing ? "audio-speaker-center-back-testing" : "audio-speaker-center-back";
+ case PA_CHANNEL_POSITION_LFE:
+ return playing ? "audio-subwoofer-testing" : "audio-subwoofer";
+ case PA_CHANNEL_POSITION_SIDE_LEFT:
+ return playing ? "audio-speaker-left-side-testing" : "audio-speaker-left-side";
+ case PA_CHANNEL_POSITION_SIDE_RIGHT:
+ return playing ? "audio-speaker-right-side-testing" : "audio-speaker-right-side";
+ default:
+ return NULL;
+ }
+}
+
+static void
+update_button (GtkWidget *control)
+{
+ GtkWidget *button;
+ GtkWidget *image;
+ pa_channel_position_t position;
+ gboolean playing;
+
+ button = g_object_get_data (G_OBJECT (control), "button");
+ image = g_object_get_data (G_OBJECT (control), "image");
+ position = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "position"));
+ playing = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "playing"));
+ gtk_button_set_label (GTK_BUTTON (button), playing ? _("Stop") : _("Test"));
+ gtk_image_set_from_icon_name (GTK_IMAGE (image), icon_name (position, playing), GTK_ICON_SIZE_DIALOG);
+}
+
+static const char *
+pretty_position (pa_channel_position_t position)
+{
+ if (position == PA_CHANNEL_POSITION_LFE)
+ return N_("Subwoofer");
+
+ return pa_channel_position_to_pretty_string (position);
+}
+
+static gboolean
+idle_cb (GtkWidget *control)
+{
+ if (control == NULL)
+ return FALSE;
+
+ /* This is called in the background thread, hence
+ * forward to main thread via idle callback */
+ g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE));
+ update_button (control);
+
+ return FALSE;
+}
+
+static void
+finish_cb (ca_context *c, uint32_t id, int error_code, void *userdata)
+{
+ GtkWidget *control = (GtkWidget *) userdata;
+
+ if (error_code == CA_ERROR_DESTROYED || control == NULL)
+ return;
+ g_idle_add ((GSourceFunc) idle_cb, control);
+}
+
+static void
+on_test_button_clicked (GtkButton *button,
+ GtkWidget *control)
+{
+ gboolean playing;
+ ca_context *canberra;
+
+ canberra = g_object_get_data (G_OBJECT (control), "canberra");
+
+ ca_context_cancel (canberra, 1);
+
+ playing = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "playing"));
+
+ if (playing) {
+ g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE));
+ } else {
+ pa_channel_position_t position;
+ const char *name;
+ ca_proplist *proplist;
+
+ position = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (control), "position"));
+
+ ca_proplist_create (&proplist);
+ ca_proplist_sets (proplist, CA_PROP_MEDIA_ROLE, "test");
+ ca_proplist_sets (proplist, CA_PROP_MEDIA_NAME, pretty_position (position));
+ ca_proplist_sets (proplist, CA_PROP_CANBERRA_FORCE_CHANNEL,
+ pa_channel_position_to_string (position));
+ ca_proplist_sets (proplist, CA_PROP_CANBERRA_ENABLE, "1");
+
+ name = sound_name (position);
+ if (name != NULL) {
+ ca_proplist_sets (proplist, CA_PROP_EVENT_ID, name);
+ playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0;
+ }
+
+ if (!playing) {
+ ca_proplist_sets (proplist, CA_PROP_EVENT_ID, "audio-test-signal");
+ playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0;
+ }
+
+ if (!playing) {
+ ca_proplist_sets(proplist, CA_PROP_EVENT_ID, "bell-window-system");
+ playing = ca_context_play_full (canberra, 1, proplist, finish_cb, control) >= 0;
+ }
+ g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(playing));
+ }
+
+ update_button (control);
+}
+
+static GtkWidget *
+channel_control_new (ca_context *canberra, pa_channel_position_t position)
+{
+ GtkWidget *control;
+ GtkWidget *box;
+ GtkWidget *label;
+ GtkWidget *image;
+ GtkWidget *test_button;
+ const char *name;
+
+ control = gtk_vbox_new (FALSE, 6);
+ g_object_set_data (G_OBJECT (control), "playing", GINT_TO_POINTER(FALSE));
+ g_object_set_data (G_OBJECT (control), "position", GINT_TO_POINTER(position));
+ g_object_set_data (G_OBJECT (control), "canberra", canberra);
+
+ name = icon_name (position, FALSE);
+ if (name == NULL)
+ name = "audio-volume-medium";
+ image = gtk_image_new_from_icon_name (name, GTK_ICON_SIZE_DIALOG);
+ g_object_set_data (G_OBJECT (control), "image", image);
+ gtk_box_pack_start (GTK_BOX (control), image, FALSE, FALSE, 0);
+
+ label = gtk_label_new (pretty_position (position));
+ gtk_box_pack_start (GTK_BOX (control), label, FALSE, FALSE, 0);
+
+ test_button = gtk_button_new_with_label (_("Test"));
+ g_signal_connect (G_OBJECT (test_button), "clicked",
+ G_CALLBACK (on_test_button_clicked), control);
+ g_object_set_data (G_OBJECT (control), "button", test_button);
+
+ box = gtk_hbox_new (FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (box), test_button, TRUE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (control), box, FALSE, FALSE, 0);
+
+ gtk_widget_show_all (control);
+
+ return control;
+}
+
+static void
+create_channel_controls (GvcSpeakerTest *speaker_test)
+{
+ guint i;
+
+ for (i = 0; i < G_N_ELEMENTS (position_table); i += 3) {
+ speaker_test->priv->channel_controls[position_table[i]] = channel_control_new (speaker_test->priv->canberra, (pa_channel_position_t) position_table[i]);
+ gtk_table_attach (GTK_TABLE (speaker_test),
+ speaker_test->priv->channel_controls[position_table[i]],
+ position_table[i+1],
+ position_table[i+1]+1,
+ position_table[i+2],
+ position_table[i+2]+1,
+ GTK_EXPAND, GTK_EXPAND, 0, 0);
+ }
+}
+
+static const GvcChannelMap *
+get_channel_map_for_card (GvcMixerControl *control,
+ GvcMixerCard *card,
+ char **output_name)
+{
+ int card_index;
+ GSList *sinks, *l;
+ GvcMixerStream *stream;
+ const GvcChannelMap *map;
+
+ /* This gets the channel map for the only
+ * output for the card */
+
+ card_index = gvc_mixer_card_get_index (card);
+ if (card_index == PA_INVALID_INDEX)
+ return NULL;
+ sinks = gvc_mixer_control_get_sinks (control);
+ stream = NULL;
+ for (l = sinks; l != NULL; l = l->next) {
+ GvcMixerStream *s = l->data;
+ if (gvc_mixer_stream_get_card_index (s) == card_index) {
+ stream = g_object_ref (s);
+ break;
+ }
+ }
+ g_slist_free (sinks);
+
+ g_assert (stream);
+
+ g_debug ("Found stream '%s' for card '%s'",
+ gvc_mixer_stream_get_name (stream),
+ gvc_mixer_card_get_name (card));
+
+ *output_name = g_strdup (gvc_mixer_stream_get_name (stream));
+ map = gvc_mixer_stream_get_channel_map (stream);
+
+ g_debug ("Got channel map '%s' for port '%s'",
+ gvc_channel_map_get_mapping (map), *output_name);
+
+ return map;
+}
+
+static void
+update_channel_map (GvcSpeakerTest *speaker_test)
+{
+ guint i;
+ const GvcChannelMap *map;
+ char *output_name;
+
+ g_return_if_fail (speaker_test->priv->control != NULL);
+ g_return_if_fail (speaker_test->priv->card != NULL);
+
+ g_debug ("XXX update_channel_map called XXX");
+
+ map = get_channel_map_for_card (speaker_test->priv->control,
+ speaker_test->priv->card,
+ &output_name);
+
+ g_return_if_fail (map != NULL);
+
+ ca_context_change_device (speaker_test->priv->canberra, output_name);
+ g_free (output_name);
+
+ for (i = 0; i < G_N_ELEMENTS (position_table); i += 3) {
+ gtk_widget_set_visible (speaker_test->priv->channel_controls[position_table[i]],
+ gvc_channel_map_has_position(map, position_table[i]));
+ }
+}
+
+static void
+gvc_speaker_test_init (GvcSpeakerTest *speaker_test)
+{
+ GtkWidget *face;
+
+ speaker_test->priv = GVC_SPEAKER_TEST_GET_PRIVATE (speaker_test);
+
+ ca_context_create (&speaker_test->priv->canberra);
+ ca_context_set_driver (speaker_test->priv->canberra, "pulse");
+ ca_context_change_props (speaker_test->priv->canberra,
+ CA_PROP_APPLICATION_NAME, "Speaker Setup",
+ CA_PROP_APPLICATION_ID, "org.gnome.SpeakerSetup",
+ CA_PROP_APPLICATION_ICON_NAME, "audio-card",
+ NULL);
+
+ gtk_table_resize (GTK_TABLE (speaker_test), 3, 5);
+ gtk_container_set_border_width (GTK_CONTAINER (speaker_test), 12);
+ gtk_table_set_homogeneous (GTK_TABLE (speaker_test), TRUE);
+ gtk_table_set_row_spacings (GTK_TABLE (speaker_test), 12);
+ gtk_table_set_col_spacings (GTK_TABLE (speaker_test), 12);
+
+ create_channel_controls (speaker_test);
+
+ face = gtk_image_new_from_icon_name ("face-smile", GTK_ICON_SIZE_DIALOG);
+ gtk_table_attach (GTK_TABLE (speaker_test), face,
+ 2, 3, 1, 2, GTK_EXPAND, GTK_EXPAND, 0, 0);
+ gtk_widget_show (face);
+}
+
+static void
+gvc_speaker_test_finalize (GObject *object)
+{
+ GvcSpeakerTest *speaker_test;
+
+ g_return_if_fail (object != NULL);
+ g_return_if_fail (GVC_IS_SPEAKER_TEST (object));
+
+ speaker_test = GVC_SPEAKER_TEST (object);
+
+ g_return_if_fail (speaker_test->priv != NULL);
+
+ g_object_unref (speaker_test->priv->card);
+ speaker_test->priv->card = NULL;
+
+ g_object_unref (speaker_test->priv->control);
+ speaker_test->priv->control = NULL;
+
+ ca_context_destroy (speaker_test->priv->canberra);
+ speaker_test->priv->canberra = NULL;
+
+ G_OBJECT_CLASS (gvc_speaker_test_parent_class)->finalize (object);
+}
+
+GtkWidget *
+gvc_speaker_test_new (GvcMixerControl *control,
+ GvcMixerCard *card)
+{
+ GObject *speaker_test;
+
+ g_return_val_if_fail (card != NULL, NULL);
+ g_return_val_if_fail (control != NULL, NULL);
+
+ speaker_test = g_object_new (GVC_TYPE_SPEAKER_TEST,
+ "card", card,
+ "control", control,
+ NULL);
+
+ return GTK_WIDGET (speaker_test);
+}
+
diff --git a/gnome-volume-control/src/gvc-speaker-test.h b/gnome-volume-control/src/gvc-speaker-test.h
new file mode 100644
index 0000000..912c594
--- /dev/null
+++ b/gnome-volume-control/src/gvc-speaker-test.h
@@ -0,0 +1,57 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2009 Red Hat, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef __GVC_SPEAKER_TEST_H
+#define __GVC_SPEAKER_TEST_H
+
+#include <glib-object.h>
+#include <gvc-mixer-card.h>
+#include <gvc-mixer-control.h>
+
+G_BEGIN_DECLS
+
+#define GVC_TYPE_SPEAKER_TEST (gvc_speaker_test_get_type ())
+#define GVC_SPEAKER_TEST(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GVC_TYPE_SPEAKER_TEST, GvcSpeakerTest))
+#define GVC_SPEAKER_TEST_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GVC_TYPE_SPEAKER_TEST, GvcSpeakerTestClass))
+#define GVC_IS_SPEAKER_TEST(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GVC_TYPE_SPEAKER_TEST))
+#define GVC_IS_SPEAKER_TEST_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GVC_TYPE_SPEAKER_TEST))
+#define GVC_SPEAKER_TEST_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GVC_TYPE_SPEAKER_TEST, GvcSpeakerTestClass))
+
+typedef struct GvcSpeakerTestPrivate GvcSpeakerTestPrivate;
+
+typedef struct
+{
+ GtkNotebook parent;
+ GvcSpeakerTestPrivate *priv;
+} GvcSpeakerTest;
+
+typedef struct
+{
+ GtkNotebookClass parent_class;
+} GvcSpeakerTestClass;
+
+GType gvc_speaker_test_get_type (void);
+
+GtkWidget * gvc_speaker_test_new (GvcMixerControl *control,
+ GvcMixerCard *card);
+
+G_END_DECLS
+
+#endif /* __GVC_SPEAKER_TEST_H */
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 62e890f..c71cda1 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -11,6 +11,7 @@ gnome-volume-control/src/gvc-channel-bar.c
gnome-volume-control/src/gvc-combo-box.c
gnome-volume-control/src/gvc-mixer-control.c
gnome-volume-control/src/gvc-mixer-dialog.c
+gnome-volume-control/src/gvc-speaker-test.c
gnome-volume-control/src/gvc-stream-status-icon.c
grecord/gnome-sound-recorder.desktop.in.in
grecord/gnome-sound-recorder.schemas.in.in
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]