summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2018-06-15 15:59:33 +0200
committerDebarshi Ray <debarshir@gnome.org>2018-06-25 13:24:01 +0200
commit052fac5c2c069cd2710d2dbc49331d23e05a222a (patch)
tree775452a08e68d32fd0c53c8258af1197fed33de4
parentdeba9472db84087aabda14bba742c3f85b19fc96 (diff)
downloadgnome-terminal-wip/jimmac/appicon.tar.gz
icons: Ship app iconwip/jimmac/appicon
- fullcolor & symbolic app icons Fixes GNOME/gnome-terminal#6: https://gitlab.gnome.org/GNOME/gnome-terminal/issues/6
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--data/Makefile.am3
-rw-r--r--data/icons/Makefile.am58
-rw-r--r--data/icons/hicolor_apps_16x16_org.gnome.Terminal.pngbin0 -> 441 bytes
-rw-r--r--data/icons/hicolor_apps_22x22_org.gnome.Terminal.pngbin0 -> 584 bytes
-rw-r--r--data/icons/hicolor_apps_24x24_org.gnome.Terminal.pngbin0 -> 575 bytes
-rw-r--r--data/icons/hicolor_apps_32x32_org.gnome.Terminal.pngbin0 -> 773 bytes
-rw-r--r--data/icons/hicolor_apps_48x48_org.gnome.Terminal.pngbin0 -> 1024 bytes
-rw-r--r--data/icons/hicolor_apps_512x512_org.gnome.Terminal.pngbin0 -> 19601 bytes
-rw-r--r--data/icons/hicolor_apps_symbolic_org.gnome.Terminal-symbolic.svg46
-rw-r--r--data/icons/terminal-source.svg1328
-rw-r--r--org.gnome.Terminal.desktop.in.in2
-rw-r--r--src/terminal-app.h2
-rw-r--r--src/terminal-nautilus.c2
15 files changed, 1441 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 948a24ef..cb54296c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = src po help
+SUBDIRS = data src po help
NULL =
diff --git a/configure.ac b/configure.ac
index 065fe9d4..26d967e1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -303,6 +303,8 @@ AC_DEFINE_UNQUOTED([GDK_VERSION_MAX_ALLOWED],[G_ENCODE_VERSION($(echo $GTK_MAX_A
AC_CONFIG_FILES([
Makefile
org.gnome.Terminal.desktop.in
+data/Makefile
+data/icons/Makefile
src/Makefile
src/terminal-version.h
help/Makefile
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644
index 00000000..ed1988e3
--- /dev/null
+++ b/data/Makefile.am
@@ -0,0 +1,3 @@
+NULL =
+
+SUBDIRS = icons
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
new file mode 100644
index 00000000..bf6e58ad
--- /dev/null
+++ b/data/icons/Makefile.am
@@ -0,0 +1,58 @@
+NULL =
+
+public_icons_themes = hicolor
+
+dist_noinst_DATA = \
+ hicolor_apps_16x16_org.gnome.Terminal.png \
+ hicolor_apps_22x22_org.gnome.Terminal.png \
+ hicolor_apps_24x24_org.gnome.Terminal.png \
+ hicolor_apps_32x32_org.gnome.Terminal.png \
+ hicolor_apps_48x48_org.gnome.Terminal.png \
+ hicolor_apps_512x512_org.gnome.Terminal.png \
+ hicolor_apps_symbolic_org.gnome.Terminal-symbolic.svg \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(NULL)
+
+install-public-icons:
+ for icon in $(dist_noinst_DATA); do \
+ THEME=`echo $$icon | cut -d_ -f1`; \
+ CONTEXT=`echo $$icon | cut -d_ -f2`; \
+ SIZE=`echo $$icon | cut -d_ -f3`; \
+ ICONFILE=`echo $$icon | cut -d_ -f4`; \
+ $(MKDIR_P) $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+ $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+ done
+
+uninstall-public-icons:
+ -for icon in $(dist_noinst_DATA); do \
+ THEME=`echo $$icon | cut -d_ -f1`; \
+ CONTEXT=`echo $$icon | cut -d_ -f2`; \
+ SIZE=`echo $$icon | cut -d_ -f3`; \
+ ICONFILE=`echo $$icon | cut -d_ -f4`; \
+ rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+ done
+
+install-data-local: install-public-icons
+uninstall-local: uninstall-public-icons
+
+install-data-hook: update-icon-cache
+uninstall-hook: update-icon-cache
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t
+
+update-icon-cache:
+ @-if test -z "$(DESTDIR)"; then \
+ echo "Updating Gtk icon cache."; \
+ for theme in $(public_icons_themes); do \
+ $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
+ done; \
+ else \
+ echo "*** Icon cache not updated. After (un)install, run this:"; \
+ for theme in $(public_icons_themes); do \
+ echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
+ done; \
+ fi
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/hicolor_apps_16x16_org.gnome.Terminal.png b/data/icons/hicolor_apps_16x16_org.gnome.Terminal.png
new file mode 100644
index 00000000..fd4c0337
--- /dev/null
+++ b/data/icons/hicolor_apps_16x16_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_22x22_org.gnome.Terminal.png b/data/icons/hicolor_apps_22x22_org.gnome.Terminal.png
new file mode 100644
index 00000000..441d1dc0
--- /dev/null
+++ b/data/icons/hicolor_apps_22x22_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_24x24_org.gnome.Terminal.png b/data/icons/hicolor_apps_24x24_org.gnome.Terminal.png
new file mode 100644
index 00000000..cc404e54
--- /dev/null
+++ b/data/icons/hicolor_apps_24x24_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_32x32_org.gnome.Terminal.png b/data/icons/hicolor_apps_32x32_org.gnome.Terminal.png
new file mode 100644
index 00000000..24bb8560
--- /dev/null
+++ b/data/icons/hicolor_apps_32x32_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_48x48_org.gnome.Terminal.png b/data/icons/hicolor_apps_48x48_org.gnome.Terminal.png
new file mode 100644
index 00000000..695b1dcd
--- /dev/null
+++ b/data/icons/hicolor_apps_48x48_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_512x512_org.gnome.Terminal.png b/data/icons/hicolor_apps_512x512_org.gnome.Terminal.png
new file mode 100644
index 00000000..c5be3ce5
--- /dev/null
+++ b/data/icons/hicolor_apps_512x512_org.gnome.Terminal.png
Binary files differ
diff --git a/data/icons/hicolor_apps_symbolic_org.gnome.Terminal-symbolic.svg b/data/icons/hicolor_apps_symbolic_org.gnome.Terminal-symbolic.svg
new file mode 100644
index 00000000..4bb35570
--- /dev/null
+++ b/data/icons/hicolor_apps_symbolic_org.gnome.Terminal-symbolic.svg
@@ -0,0 +1,46 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+ Copyright © 2012 Christian Persch
+
+ 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 3, or (at your option)
+ any later version.
+
+ This program is distributed in the hope conf 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, see <http://www.gnu.org/licenses/>.
+-->
+<svg xmlns:cc='http://creativecommons.org/ns#' xmlns:svg='http://www.w3.org/2000/svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' id='svg7384' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' version='1.1' inkscape:version='0.47 r22583' height='16.000019' sodipodi:docname='utilities-terminal-symbolic.svg' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns='http://www.w3.org/2000/svg' width='16'>
+ <metadata id='metadata90'>
+ <rdf:RDF>
+ <cc:Work rdf:about=''>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage'/>
+ <dc:title>Gnome Symbolic Icon Theme</dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview inkscape:object-paths='true' inkscape:cy='-218.16054' inkscape:current-layer='layer11' inkscape:window-width='1920' pagecolor='#555753' showborder='false' showguides='true' inkscape:snap-nodes='false' objecttolerance='10' showgrid='true' inkscape:object-nodes='true' inkscape:pageshadow='2' inkscape:guide-bbox='true' inkscape:window-x='0' inkscape:snap-bbox='true' bordercolor='#666666' id='namedview88' inkscape:window-maximized='1' inkscape:snap-global='true' inkscape:window-y='26' gridtolerance='10' inkscape:zoom='1' inkscape:window-height='1021' borderopacity='1' guidetolerance='10' inkscape:snap-bbox-midpoints='false' inkscape:cx='-64.56688' inkscape:bbox-paths='false' inkscape:snap-grids='true' inkscape:pageopacity='1' inkscape:snap-to-guides='true'>
+ <inkscape:grid visible='true' spacingx='1px' type='xygrid' spacingy='1px' id='grid4866' empspacing='2' enabled='true' snapvisiblegridlinesonly='true'/>
+ </sodipodi:namedview>
+ <title id='title9167'>Gnome Symbolic Icon Theme</title>
+ <defs id='defs7386'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer9' inkscape:label='status' style='display:inline'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer10' inkscape:label='devices'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer11' inkscape:label='apps'>
+ <path d='M 124.1875,490 C 122.98196,490 122,491.01672 122,492.21875 l 0,10.5625 c 0,1.20203 0.98197,2.21875 2.1875,2.21875 l 11.625,0 c 1.20553,0 2.1875,-1.01671 2.1875,-2.21875 l 0,-10.5625 C 138,491.01671 137.01804,490 135.8125,490 l -11.625,0 z m 0,2 11.625,0 c 0.1228,0 0.1875,0.0809 0.1875,0.21875 l 0,10.5625 C 136,502.91909 135.93531,503 135.8125,503 l -11.625,0 C 124.06469,503 124,502.9191 124,502.78125 l 0,-10.5625 C 124,492.0809 124.0647,492 124.1875,492 z' id='rect11749-5-9' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/>
+
+ <path d='m 126.3125,495.90625 a 0.60006002,0.60006002 0 0 0 -0.25,1.03125 l 1.5625,1.5625 -1.5625,1.5625 a 0.61871843,0.61871843 0 1 0 0.875,0.875 l 2,-2 a 0.60006002,0.60006002 0 0 0 0,-0.875 l -2,-2 a 0.60006002,0.60006002 0 0 0 -0.625,-0.15625 z' id='path11751-2-3' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.20000005;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans'/>
+ <rect x='130' y='500' id='rect4987' height='1.00001' width='3' style='color:#bebebe;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate'/>
+ </g>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer12' inkscape:label='actions'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer13' inkscape:label='places'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer14' inkscape:label='mimetypes'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='layer15' inkscape:label='emblems' style='display:inline'/>
+ <g transform='translate(-122,-489.99998)' inkscape:groupmode='layer' id='g4953' inkscape:label='categories' style='display:inline'/>
+</svg>
diff --git a/data/icons/terminal-source.svg b/data/icons/terminal-source.svg
new file mode 100644
index 00000000..734995d2
--- /dev/null
+++ b/data/icons/terminal-source.svg
@@ -0,0 +1,1328 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<!--
+ Copyright © 2012 Christian Persch
+
+ 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 3, or (at your option)
+ any later version.
+
+ This program is distributed in the hope conf 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, see <http://www.gnu.org/licenses/>.
+-->
+<!--
+ To generate PNGS form the SVG, use inkscape and manually export each tile from the
+ baseplate layer.
+-->
+<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"
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/sam/Dropbox/Public/terminals.png"
+ width="700"
+ height="560"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.92.2 2405546, 2018-03-11"
+ sodipodi:docname="terminal-source.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0"
+ style="display:inline;enable-background:new"
+ viewBox="0 0 700 560">
+ <title
+ id="title4162">Adwaita Icon</title>
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9921">
+ <stop
+ style="stop-color:#2c2c2c;stop-opacity:1;"
+ offset="0"
+ id="stop9917" />
+ <stop
+ style="stop-color:#2c2c2c;stop-opacity:0;"
+ offset="1"
+ id="stop9919" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9745">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop9741" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop9743" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9461">
+ <stop
+ style="stop-color:#f5f5f5;stop-opacity:1;"
+ offset="0"
+ id="stop9457" />
+ <stop
+ style="stop-color:#f5f5f5;stop-opacity:0.17716536"
+ offset="1"
+ id="stop9459" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8459">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop8455" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop8457" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9389">
+ <stop
+ style="stop-color:#7f817e;stop-opacity:1"
+ offset="0"
+ id="stop5728" />
+ <stop
+ style="stop-color:#a1a29f;stop-opacity:1"
+ offset="1"
+ id="stop5730" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5333">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop5329" />
+ <stop
+ id="stop5339"
+ offset="0.30681816"
+ style="stop-color:#ffffff;stop-opacity:0.45703125" />
+ <stop
+ id="stop5337"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0.12890625" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9383">
+ <stop
+ id="stop9385"
+ offset="0"
+ style="stop-color:#c3c3c3;stop-opacity:1" />
+ <stop
+ id="stop9387"
+ offset="1"
+ style="stop-color:#afafaf;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9389-6"
+ inkscape:collect="always">
+ <stop
+ id="stop9391"
+ offset="0"
+ style="stop-color:#454943;stop-opacity:1" />
+ <stop
+ id="stop9393"
+ offset="1"
+ style="stop-color:#50514e;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9395">
+ <stop
+ style="stop-color:#3f4a44;stop-opacity:1"
+ offset="0"
+ id="stop9397" />
+ <stop
+ style="stop-color:#232323;stop-opacity:1"
+ offset="1"
+ id="stop9399" />
+ </linearGradient>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter4838"
+ x="-0.11451823"
+ width="1.2290365"
+ y="-0.12603296"
+ height="1.2520659">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.42944335"
+ id="feGaussianBlur4840" />
+ </filter>
+ <linearGradient
+ id="linearGradient9844">
+ <stop
+ id="stop9846"
+ offset="0"
+ style="stop-color:#cecece;stop-opacity:1" />
+ <stop
+ id="stop9848"
+ offset="1"
+ style="stop-color:#aaaaaa;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient9911">
+ <stop
+ style="stop-color:#e9e9e9;stop-opacity:1"
+ offset="0"
+ id="stop9913" />
+ <stop
+ id="stop9915"
+ offset="1"
+ style="stop-color:#cfcfcf;stop-opacity:1" />
+ </linearGradient>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5297"
+ x="-0.0056875004"
+ width="1.011375"
+ y="-0.0063488367"
+ height="1.0126977">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.91000008"
+ id="feGaussianBlur5299" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5333"
+ id="linearGradient5335"
+ x1="296"
+ y1="-139.99992"
+ x2="296"
+ y2="196.00008"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient9944-2-2-2">
+ <stop
+ style="stop-color:#326304;stop-opacity:1"
+ offset="0"
+ id="stop9948-3-2-9" />
+ <stop
+ style="stop-color:#25311c;stop-opacity:1"
+ offset="1"
+ id="stop9946-1-4-8" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath7517-3-6">
+ <path
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51764706"
+ d="M 88,-140 H 456 V 204.00006 H 88 Z"
+ id="path7519-6-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9389-6"
+ id="linearGradient5063"
+ gradientUnits="userSpaceOnUse"
+ x1="344"
+ y1="236"
+ x2="344"
+ y2="-316" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9383"
+ id="linearGradient5098"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0512821,0,0,1.15625,-51.375376,26.463288)"
+ x1="604.38141"
+ y1="-187.13736"
+ x2="604.38141"
+ y2="-157.88022" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5184"
+ x="-0.012436364"
+ width="1.0248727"
+ y="-0.34200001"
+ height="1.684">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.28"
+ id="feGaussianBlur5186" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5208"
+ x="-0.026192468"
+ width="1.0523849"
+ y="-0.60858971"
+ height="2.2171793">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.1554219"
+ id="feGaussianBlur5210" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5214"
+ x="-0.052384935"
+ width="1.1047699"
+ y="-1.2171794"
+ height="3.4343588">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4.3108437"
+ id="feGaussianBlur5216" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5222"
+ x="-0.026135178"
+ width="1.0522704"
+ y="-0.58771348"
+ height="2.175427">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.2648017"
+ id="feGaussianBlur5224" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5228"
+ x="-0.052270357"
+ width="1.1045407"
+ y="-1.175427"
+ height="3.3508539">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4.5296035"
+ id="feGaussianBlur5230" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5232"
+ x="-0.064215623"
+ width="1.1284312"
+ y="-0.73389131"
+ height="2.4677825">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="5.5079175"
+ id="feGaussianBlur5234" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9383"
+ id="linearGradient5476"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.3846154,0,0,0.40625005,340.61876,66.081698)"
+ x1="604.38141"
+ y1="-187.13736"
+ x2="604.38141"
+ y2="-157.88022" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9389"
+ id="linearGradient5733"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0512821,0,0,1.15625,-30.358974,26.453125)"
+ x1="603.41461"
+ y1="-157.87143"
+ x2="603.41461"
+ y2="-179.81429" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9389"
+ id="linearGradient5737"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.3846154,0,0,0.40625005,348.30769,66.078126)"
+ x1="603.41461"
+ y1="-157.87143"
+ x2="603.14282"
+ y2="-187.55881" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath5774">
+ <rect
+ ry="8"
+ y="220"
+ x="-496"
+ height="16"
+ width="432"
+ id="rect5776"
+ style="opacity:0.3;fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="8" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9395"
+ id="linearGradient5505"
+ x1="572"
+ y1="-7"
+ x2="581"
+ y2="-1"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9395"
+ id="linearGradient5507"
+ x1="576"
+ y1="-184"
+ x2="608"
+ y2="-160"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9395"
+ id="linearGradient5509"
+ x1="574"
+ y1="-108"
+ x2="595"
+ y2="-93"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92,0,0,1.0000007,46.719997,5.8467788e-5)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9395"
+ id="linearGradient5511"
+ x1="575"
+ y1="-52"
+ x2="587"
+ y2="-44"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.0769232,0,4.2692345)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9395"
+ id="linearGradient5513"
+ x1="135.34413"
+ y1="-96.71682"
+ x2="448"
+ y2="172"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-4,4)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5333"
+ id="linearGradient5958"
+ gradientUnits="userSpaceOnUse"
+ x1="592"
+ y1="156"
+ x2="592"
+ y2="188" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9383"
+ id="linearGradient6122"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.74358977,0,0,0.84375006,128.92961,43.554294)"
+ x1="604.38141"
+ y1="-187.13736"
+ x2="604.38141"
+ y2="-157.88022" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9389"
+ id="linearGradient6124"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.74358977,0,0,0.84375006,143.79487,43.546879)"
+ x1="604.10345"
+ y1="-155.85999"
+ x2="604.10345"
+ y2="-180.17999" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5333"
+ id="linearGradient6128"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92592593,0,0,1,43.259259,-0.99999184)"
+ x1="584"
+ y1="-90.023819"
+ x2="584"
+ y2="-112.02381" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9383"
+ id="linearGradient6171"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.53846156,0,0,0.59375005,250.46627,53.427096)"
+ x1="604.38141"
+ y1="-187.13736"
+ x2="604.38141"
+ y2="-157.88022" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9389"
+ id="linearGradient6173"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.53846156,0,0,0.59375005,261.23077,53.421876)"
+ x1="603.41461"
+ y1="-157.87143"
+ x2="603.14282"
+ y2="-187.55881" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9844"
+ id="radialGradient6197"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-2.0363635,0,3.0109252e-8,-1.6727271,356.30841,-88.28898)"
+ cx="143.54431"
+ cy="4.6098504"
+ fx="143.54431"
+ fy="4.6098504"
+ r="220.00002" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath6208">
+ <path
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 64,-172 v 400 c 0,4.432 3.568,8 8,8 h 416 c 4.432,0 8,-3.568 8,-8 v -400 z"
+ id="path6210"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath7790">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path7792"
+ d="M 88,-132 H 456 V 204.00006 H 88 Z"
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51764706" />
+ </clipPath>
+ <linearGradient
+ id="linearGradient9893-3"
+ inkscape:collect="always">
+ <stop
+ id="stop9895"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1" />
+ <stop
+ id="stop9897"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0.42578125" />
+ </linearGradient>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath7790-3">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path7792-6"
+ d="M 88,-132 H 456 V 204.00006 H 88 Z"
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51764706" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath5774-3">
+ <rect
+ ry="8"
+ y="220"
+ x="-496"
+ height="16"
+ width="432"
+ id="rect5776-5"
+ style="opacity:0.3;fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="8" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath7951">
+ <rect
+ ry="8"
+ y="-236"
+ x="-496"
+ height="16"
+ width="432"
+ id="rect7953"
+ style="opacity:1;fill:#ef2929;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="8" />
+ </clipPath>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter8443"
+ x="-0.011666667"
+ width="1.0233333"
+ y="-0.012352941"
+ height="1.0247059">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.1"
+ id="feGaussianBlur8445" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8459"
+ id="linearGradient8613"
+ gradientUnits="userSpaceOnUse"
+ x1="288"
+ y1="496"
+ x2="288"
+ y2="336"
+ gradientTransform="translate(0,-256)" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter5313-0-1-2"
+ x="-0.011375001"
+ width="1.02275"
+ y="-0.012697673"
+ height="1.0253953">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.8200002"
+ id="feGaussianBlur5315-6-4-7" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9893-3"
+ id="linearGradient9103"
+ gradientUnits="userSpaceOnUse"
+ x1="288"
+ y1="-132"
+ x2="288"
+ y2="196" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath9119">
+ <path
+ inkscape:connector-curvature="0"
+ id="path9121"
+ d="m 60,-172 v 400 c 0,4.432 3.568,8 8,8 h 424 c 4.432,0 8.02216,-3.56806 8,-8 v -400 z"
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="csssscc" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath9129">
+ <path
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51764706"
+ d="M 88,-132 H 464 V 204.00006 H 88 Z"
+ id="path9131"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath9129-6">
+ <path
+ style="opacity:1;fill:#204a87;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51764706"
+ d="M 88,-132 H 464 V 204.00006 H 88 Z"
+ id="path9131-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </clipPath>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9461"
+ id="radialGradient9527"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.03636364,0,88.527275)"
+ cx="280"
+ cy="315.49991"
+ fx="280"
+ fy="315.49991"
+ r="220" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter9671"
+ x="-0.012109091"
+ width="1.0242182"
+ y="-0.011892857"
+ height="1.0237857">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.22"
+ id="feGaussianBlur9673" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter9675"
+ x="-0.012109091"
+ width="1.0242182"
+ y="-0.011892857"
+ height="1.0237857">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2.22"
+ id="feGaussianBlur9677" />
+ </filter>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9911"
+ id="radialGradient9739"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.8909091,2.6723415e-7,0,-0.25454545,-231.27273,242.76365)"
+ cx="-77.884613"
+ cy="199.42854"
+ fx="-77.884613"
+ fy="199.42854"
+ r="220" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9745"
+ id="linearGradient9821"
+ gradientUnits="userSpaceOnUse"
+ x1="304"
+ y1="104"
+ x2="304"
+ y2="-88" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter9969"
+ x="-0.0062181819"
+ width="1.0124364"
+ y="-0.171"
+ height="1.342">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.14"
+ id="feGaussianBlur9971" />
+ </filter>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath9985">
+ <rect
+ rx="8"
+ style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect9987"
+ width="440"
+ height="32"
+ x="-500"
+ y="144"
+ ry="7.625" />
+ </clipPath>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9921"
+ id="linearGradient10023"
+ gradientUnits="userSpaceOnUse"
+ x1="-376"
+ y1="168"
+ x2="-376"
+ y2="148" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter10037"
+ x="-0.062181819"
+ width="1.1243635"
+ y="-1.71"
+ height="4.4200001">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="11.4"
+ id="feGaussianBlur10039" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#ef2929"
+ fill="#f57900"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="-175.88132"
+ inkscape:cy="57.403622"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="3440"
+ inkscape:window-height="1376"
+ inkscape:window-x="0"
+ inkscape:window-y="61"
+ width="400px"
+ height="300px"
+ inkscape:snap-nodes="true"
+ inkscape:snap-bbox="true"
+ objecttolerance="7"
+ gridtolerance="12"
+ guidetolerance="13"
+ inkscape:window-maximized="1"
+ inkscape:pagecheckerboard="false"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:locked="false"
+ inkscape:measure-start="0,0"
+ inkscape:measure-end="0,0"
+ inkscape:object-nodes="true"
+ inkscape:bbox-nodes="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5883"
+ spacingx="1px"
+ spacingy="1px"
+ enabled="true"
+ visible="true"
+ empspacing="4" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Sam Hewitt</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://samuelhewitt.com/</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+ <dc:title>Adwaita Icon</dc:title>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:date />
+ <dc:rights>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:publisher>
+ <dc:identifier />
+ <dc:relation />
+ <dc:language />
+ <dc:coverage />
+ <dc:description />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#Notice" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#Attribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="artwork:utilities-terminal"
+ inkscape:groupmode="layer"
+ style="display:inline"
+ transform="translate(0,260)">
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="baseplate"
+ style="display:none">
+ <rect
+ inkscape:label="48x48"
+ y="-196"
+ x="568"
+ height="48"
+ width="48"
+ id="rect6284"
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+ <rect
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ id="rect6592"
+ width="32"
+ height="32"
+ x="568"
+ y="-116"
+ inkscape:label="32x32" />
+ <rect
+ inkscape:label="22x22"
+ y="-58.941162"
+ x="569"
+ height="22"
+ width="22"
+ id="rect6749"
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
+ <rect
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ id="rect6833"
+ width="16"
+ height="16"
+ x="568"
+ y="-12"
+ inkscape:label="16x16" />
+ <rect
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ id="rect8104"
+ width="24"
+ height="24"
+ x="568"
+ y="-60"
+ inkscape:label="24x24" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.30133247px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
+ x="31.855944"
+ y="-303.69958"
+ id="context"
+ inkscape:label="context"><tspan
+ sodipodi:role="line"
+ id="tspan2716"
+ x="31.855944"
+ y="-303.69958">apps</tspan></text>
+ <text
+ inkscape:label="icon-name"
+ id="text3021"
+ y="-277.90063"
+ x="31.264769"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:18.30133247px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:'Cantarell, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new"
+ xml:space="preserve"><tspan
+ y="-277.90063"
+ x="31.264769"
+ id="tspan3023"
+ sodipodi:role="line">utilities-terminal</tspan></text>
+ <rect
+ style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ id="rect13805"
+ width="512"
+ height="512"
+ x="24"
+ y="-236"
+ inkscape:label="512x512" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path13807"
+ d="m 24,-236 v 512 h 511.875 v -512 h -36 V 240 H 60 v -476 z"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer8"
+ inkscape:label="icons"
+ style="display:inline">
+ <g
+ id="g9033">
+ <rect
+ style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1796875;filter:url(#filter10037)"
+ id="rect5192"
+ width="440"
+ height="16"
+ x="60"
+ y="228"
+ ry="8"
+ rx="8" />
+ <rect
+ rx="8"
+ ry="7.9558058"
+ y="228"
+ x="61"
+ height="16"
+ width="438"
+ id="rect5400"
+ style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1796875;filter:url(#filter5184)" />
+ <path
+ id="path8437"
+ d="m 60,-168 v 400 c 0,4.432 3.568,8 8,8 h 424 c 4.432,0 8.02216,-3.56806 8,-8 V -168 H 492 68 Z"
+ style="opacity:0.5;fill:url(#linearGradient8613);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8443)"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="csssscccc" />
+ <path
+ sodipodi:nodetypes="csssscc"
+ style="opacity:1;fill:url(#radialGradient6197);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 60,-168 v 400 c 0,4.432 3.568,8 8,8 h 424 c 4.432,0 8.02216,-3.56806 8,-8 v -400 z"
+ id="rect5046"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="4.6242976"
+ transform="matrix(-0.1442465,0,0,0.2162491,606.4287,-135.359)"
+ y="212.06631"
+ x="51.500038"
+ height="9.2485952"
+ width="207.97731"
+ id="rect5226"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;filter:url(#filter5228);enable-background:accumulate"
+ rx="4.6242976" />
+ <path
+ transform="matrix(0.2092246,0,0,-0.3106775,561.72118,-87.23691)"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;filter:url(#filter5214);enable-background:accumulate"
+ d="M 46.720447,213.5 H 244.22045 V 222 H 46.720447 Z"
+ id="path5212"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;filter:url(#filter5222);enable-background:accumulate"
+ id="rect9422"
+ width="207.97731"
+ height="9.2485952"
+ x="51.500038"
+ y="212.06631"
+ transform="matrix(-0.1442465,0,0,0.2162491,606.4287,-135.359)"
+ ry="4.6242976"
+ rx="4.6242976" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect9429"
+ d="M 46.720447,213.5 H 244.22045 V 222 H 46.720447 Z"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.2;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;filter:url(#filter5208);enable-background:accumulate"
+ transform="matrix(0.2092246,0,0,-0.3106775,561.72118,-87.23691)" />
+ <rect
+ rx="1"
+ ry="1"
+ y="-10.500008"
+ x="568.5"
+ height="13"
+ width="15"
+ id="rect4984"
+ style="opacity:1;fill:url(#linearGradient5476);fill-opacity:1;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ transform="matrix(0.10687219,0,0,-0.11103577,563.83159,-15.42581)"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;filter:url(#filter5232);enable-background:accumulate"
+ id="rect9596"
+ width="205.85336"
+ height="18.012207"
+ x="48.360664"
+ y="207.80666" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient5098);fill-opacity:1;stroke:url(#linearGradient5733);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect4876"
+ width="41"
+ height="37"
+ x="571.5"
+ y="-191.5"
+ ry="1.5" />
+ <rect
+ rx="0.25"
+ ry="0.24999999"
+ y="156.5"
+ x="573.5"
+ height="31"
+ width="37"
+ id="rect4768"
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient5958);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(1,-1)" />
+ <rect
+ ry="1.5"
+ y="-115.50001"
+ x="569.5"
+ height="27"
+ width="29"
+ id="rect4892"
+ style="opacity:1;fill:url(#linearGradient6122);fill-opacity:1;stroke:url(#linearGradient6124);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.5" />
+ <rect
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient6128);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect4894"
+ width="25"
+ height="22"
+ x="571.5"
+ y="-112.49998"
+ ry="0.99999994"
+ rx="1" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient6171);fill-opacity:1;stroke:url(#linearGradient6173);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect4944"
+ width="21"
+ height="19"
+ x="569.5"
+ y="-58.500011"
+ ry="1"
+ rx="1" />
+ <path
+ transform="translate(0,4)"
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient5063);stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9675)"
+ clip-path="url(#clipPath9119)"
+ d="m 68,-180 h 422 c 4.432,0 10,3.568 10,8 V 268 H 60 v -440 c 0,-4.432 3.568,-8 8,-8 z"
+ id="rect5149"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssccss" />
+ <rect
+ y="-1.5002179"
+ x="569"
+ height="1.9999993"
+ width="22"
+ id="rect5434"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.32680228;marker:none;enable-background:accumulate"
+ transform="scale(1,-1)" />
+ <path
+ style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 572.15234,69.5 C 572.06427,69.649055 572,69.813633 572,70 c 0,0.554 0.446,1 1,1 h 38 c 0.554,0 1,-0.446 1,-1 0,-0.186367 -0.0643,-0.350945 -0.15234,-0.5 C 611.67391,69.794032 611.36763,70 611,70 h -38 c -0.36763,0 -0.67391,-0.205968 -0.84766,-0.5 z"
+ transform="translate(0,-260)"
+ id="rect5845"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 570.15234,145.5 C 570.06427,145.64906 570,145.81363 570,146 c 0,0.554 0.446,1 1,1 h 26 c 0.554,0 1,-0.446 1,-1 0,-0.18637 -0.0643,-0.35094 -0.15234,-0.5 -0.17375,0.29403 -0.48003,0.5 -0.84766,0.5 h -26 c -0.36763,0 -0.67391,-0.20597 -0.84766,-0.5 z"
+ transform="translate(0,-260)"
+ id="rect6100"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect6110"
+ width="20"
+ height="1"
+ x="570"
+ y="-57" />
+ <rect
+ y="-10"
+ x="569"
+ height="1"
+ width="14"
+ id="rect6112"
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect6114"
+ width="12"
+ height="1"
+ x="570"
+ y="1" />
+ <rect
+ y="-41"
+ x="571"
+ height="1"
+ width="18"
+ id="rect6116"
+ style="opacity:0.4;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ rx="8"
+ style="opacity:1;fill:url(#radialGradient9739);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect5115"
+ width="440"
+ height="16"
+ x="-500"
+ y="160"
+ ry="7.625"
+ transform="scale(-1)" />
+ <path
+ sodipodi:nodetypes="sssccss"
+ inkscape:connector-curvature="0"
+ id="path9607"
+ d="m 68,-180 h 422 c 4.432,0 10,3.568 10,8 V 268 H 60 v -440 c 0,-4.432 3.568,-8 8,-8 z"
+ clip-path="url(#clipPath9119)"
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient9821);stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9671)"
+ transform="translate(0,4)" />
+ <path
+ style="opacity:0.4;fill:url(#radialGradient9527);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 60.033203,91 C 60.0157,91.206779 60,91.413781 60,91.625 v 0.75 c 0,4.22425 3.568,7.625 8,7.625 h 424 c 4.432,0 8,-3.40075 8,-7.625 v -0.75 c 0,-0.211219 -0.0157,-0.418221 -0.0332,-0.625 -0.33255,3.928674 -3.75641,7 -7.9668,7 H 68 c -4.210393,0 -7.634249,-3.071326 -7.966797,-7 z"
+ id="rect9446"
+ transform="translate(0,-260)"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="scale(-1)"
+ style="opacity:0.2;fill:none;fill-opacity:1;stroke:url(#linearGradient10023);stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9969)"
+ clip-path="url(#clipPath9985)"
+ d="m -500,140 h 440 v 28 c 0,4.432 -3.568,8 -8,8 h -424 c -4.432,0 -8,-3.568 -8,-8 z"
+ id="rect9911"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccssssc" />
+ </g>
+ <g
+ id="g5470"
+ transform="translate(0,1)">
+ <path
+ style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5505);fill-opacity:1;fill-rule:nonzero;stroke:#2c2f2f;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+ d="m 570.49996,-9.4999998 h 11 v 8.99999983 h -11 z"
+ id="path4988"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccc"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;enable-background:new"
+ d="m 571,-9 v 1 h 10 v -1 z m 0,2 v 1 h 10 v -1 z m 0,2 v 1 h 10 v -1 z m 0,2 v 1.00001 h 10 V -3 Z"
+ id="path4990"
+ inkscape:connector-curvature="0" />
+ <path
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
+ d="m 572.26286,-8.177867 v 0.481692 l 1.70749,1.227716 -1.70749,1.198195 v 0.492423 l 2.12828,-1.505456 V -6.685828 Z M 574,-4.0000002 v 0.440099 h 3 v -0.440099 z"
+ id="path4992"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ id="path4994"
+ d="m 575.04883,-106.17773 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z m 2.50764,6.08147 v 0.640621 h 4.33063 v -0.640621 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44957745;filter:url(#filter4838)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.69274089,0,0,0.68698353,173.90302,64.764485)"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <g
+ style="stroke-width:4.33333349"
+ transform="matrix(0.23076923,0,0,0.23076923,440.92308,16.923077)"
+ id="g5002" />
+ </g>
+ <path
+ style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5507);fill-opacity:1;fill-rule:nonzero;stroke:#2c2f2f;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+ d="m 574.5,-186.5 h 35 v 29 h -35 z"
+ id="rect9439"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="rect9061"
+ d="m 575,-185 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z m 0,2 v 1 h 34 v -1 z"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;enable-background:new" />
+ <path
+ inkscape:connector-curvature="0"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none"
+ d="m 577.04883,-184.17773 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z M 581,-176.64062 V -176 h 5.04883 v -0.64062 z"
+ id="path9631"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4832"
+ d="m 577.01817,-184.20839 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z m 3.95117,7.53711 v 0.64062 h 5.04883 v -0.64062 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter4838)"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path4896"
+ d="m 572.49998,-111.50001 h 23 v 20.000002 h -23 z"
+ style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5509);fill-opacity:1;fill-rule:nonzero;stroke:#2c2f2f;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:0.51643192;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;enable-background:new"
+ d="m 573,-111 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z m 0,2 v 1 h 22 v -1 z"
+ id="path4898"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ <g
+ id="g4938"
+ transform="matrix(0.69274089,0,0,0.68698353,176.90302,-34.235515)"
+ style="stroke-width:1.44957745">
+ <path
+ id="path4904"
+ d="m 575.04883,-109.08901 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z M 579,-101.5519 v 0.64062 h 5.04883 v -0.64062 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44957745;filter:url(#filter4838)"
+ inkscape:connector-curvature="0" />
+ <path
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44957745"
+ d="m 575.04883,-109.08901 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z M 579,-101.5519 v 0.64062 h 5.04883 v -0.64062 z"
+ id="path4902"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4934"
+ transform="matrix(0.53846154,0,0,0.53846154,269.15385,-49.846154)"
+ style="stroke-width:1.85714281" />
+ <path
+ style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5511);fill-opacity:1;fill-rule:nonzero;stroke:#2c2f2f;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+ d="m 571.49998,-55.5 h 17 v 14.000001 h -17 z"
+ id="path4948"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.05;fill:#ffffff;fill-opacity:0.51643192;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;enable-background:new"
+ d="m 572,-55 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z m 0,2 v 1 h 16 v -1 z"
+ id="path4950"
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" />
+ <g
+ id="g4982">
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path4952"
+ d="m 573.26286,-54.177867 v 0.481692 l 1.70749,1.227716 -1.70749,1.198195 v 0.492423 l 2.12828,-1.505456 v -0.402531 z M 576,-49 v 0.440099 h 3 V -49 Z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1" />
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ transform="matrix(0.69274089,0,0,0.68698353,174.90302,18.764485)"
+ inkscape:connector-curvature="0"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44957745;filter:url(#filter4838)"
+ d="m 575.04883,-106.17773 v 0.70117 l 2.46484,1.78711 -2.46484,1.74414 v 0.71679 l 3.07226,-2.1914 v -0.58594 z M 579,-98.640625 V -98 h 4.33063 v -0.640625 z"
+ id="path4954" />
+ </g>
+ <g
+ style="stroke-width:2.88888884"
+ transform="matrix(0.34615385,0,0,0.34615385,377.88461,-15.615384)"
+ id="g4962" />
+ <path
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient5335);stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5297)"
+ d="M 88,-140 H 464 V 196.00006 H 88 Z"
+ id="rect5279"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ transform="matrix(1,0,0,-1,4,68.000069)" />
+ <path
+ style="opacity:1;fill:url(#linearGradient5513);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
+ d="M 92,-128 H 468 V 208.00006 H 92 Z"
+ id="rect5269"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="opacity:0.2;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
+ d="m 93,208.00006 h 374 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 93 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
+ id="rect5325"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssssss" />
+ <path
+ style="display:inline;overflow:visible;visibility:visible;opacity:0.02000002;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994;marker:none;enable-background:new"
+ d="m 92,-124 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 V 8 H 468 V -4 Z m 0,24 V 32 H 468 V 20 Z m 0,24 V 56 H 468 V 44 Z m 0,24 V 80 H 468 V 68 Z m 0,24 v 12 H 468 V 92 Z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z m 0,24 v 12 h 376 v -12 z"
+ id="path5341"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ <path
+ id="path5247"
+ d="m 135.34419,-85.4063 v 8.689516 l 30.35274,22.147387 -30.35274,21.61489 v 8.88315 l 37.83269,-27.157781 v -7.261437 z m 48.65584,81.406306 3e-5,8.000029 56.00003,2.9e-5 -3e-5,-8.000029 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.08094866;filter:url(#filter4838)"
+ d="m 577.04883,76.822266 v 0.701172 l 2.46484,1.787109 -2.46484,1.744141 v 0.716796 l 3.07226,-2.191406 V 78.994141 Z M 581,83.391075 v 0.645535 l 4.54757,3e-6 -10e-6,-0.645536 z"
+ transform="matrix(12.314286,0,0,12.392857,-6970.6002,-1037.4537)"
+ id="path5249"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ transform="translate(3.8842499,3.8413962)"
+ style="display:inline;opacity:0.2;fill:none;fill-opacity:1;stroke:url(#linearGradient9103);stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5313-0-1-2);enable-background:new"
+ clip-path="url(#clipPath9129)"
+ d="M 88,-132 H 464 V 204.00006 H 88 Z"
+ id="rect5301-9-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ </g>
+</svg>
diff --git a/org.gnome.Terminal.desktop.in.in b/org.gnome.Terminal.desktop.in.in
index 98ad8f9f..77928303 100644
--- a/org.gnome.Terminal.desktop.in.in
+++ b/org.gnome.Terminal.desktop.in.in
@@ -4,7 +4,7 @@ _Comment=Use the command line
_Keywords=shell;prompt;command;commandline;cmd;
TryExec=gnome-terminal
Exec=gnome-terminal
-Icon=utilities-terminal
+Icon=org.gnome.Terminal
Type=Application
X-GNOME-DocPath=gnome-terminal/index.html
X-GNOME-Bugzilla-Bugzilla=GNOME
diff --git a/src/terminal-app.h b/src/terminal-app.h
index f29d766b..03b6bf66 100644
--- a/src/terminal-app.h
+++ b/src/terminal-app.h
@@ -26,7 +26,7 @@
G_BEGIN_DECLS
-#define GNOME_TERMINAL_ICON_NAME "utilities-terminal"
+#define GNOME_TERMINAL_ICON_NAME "org.gnome.Terminal"
#define TERMINAL_RESOURCES_PATH_PREFIX "/org/gnome/terminal"
diff --git a/src/terminal-nautilus.c b/src/terminal-nautilus.c
index 03e52b97..36dc05c0 100644
--- a/src/terminal-nautilus.c
+++ b/src/terminal-nautilus.c
@@ -89,7 +89,7 @@ static GType terminal_nautilus_menu_item_get_type (void);
/* --- */
-#define TERMINAL_ICON_NAME "utilities-terminal"
+#define TERMINAL_ICON_NAME "org.gnome.Terminal"
typedef enum {
/* local files. Always open "conventionally", i.e. cd and spawn. */