diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-08-03 23:30:25 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-08-03 23:30:25 +0000 |
| commit | bc3f2d78003fe893afd4d1ba748d78f1c2e26ed4 (patch) | |
| tree | 47cff0a948d6d0d29c15d1261454569e53ef10bf /share/icons | |
| parent | Fix test compiling bug (diff) | |
| download | inkscape-bc3f2d78003fe893afd4d1ba748d78f1c2e26ed4.tar.gz inkscape-bc3f2d78003fe893afd4d1ba748d78f1c2e26ed4.zip | |
Add inkscape app icon to themes
Diffstat (limited to 'share/icons')
21 files changed, 572 insertions, 49 deletions
diff --git a/share/icons/CMakeLists.txt b/share/icons/CMakeLists.txt index 89bcddf43..17efcd7a9 100644 --- a/share/icons/CMakeLists.txt +++ b/share/icons/CMakeLists.txt @@ -1,4 +1,3 @@ -add_subdirectory(application) add_subdirectory(hicolor) add_subdirectory(Tango) diff --git a/share/icons/application/16x16/inkscape.png b/share/icons/Tango/16x16/apps/inkscape.png Binary files differindex e4aed9222..e4aed9222 100644 --- a/share/icons/application/16x16/inkscape.png +++ b/share/icons/Tango/16x16/apps/inkscape.png diff --git a/share/icons/application/22x22/inkscape.png b/share/icons/Tango/22x22/apps/inkscape.png Binary files differindex b1adda08c..b1adda08c 100644 --- a/share/icons/application/22x22/inkscape.png +++ b/share/icons/Tango/22x22/apps/inkscape.png diff --git a/share/icons/application/24x24/inkscape.png b/share/icons/Tango/24x24/apps/inkscape.png Binary files differindex 4c2cded2c..4c2cded2c 100644 --- a/share/icons/application/24x24/inkscape.png +++ b/share/icons/Tango/24x24/apps/inkscape.png diff --git a/share/icons/application/256x256/inkscape.png b/share/icons/Tango/256x256/apps/inkscape.png Binary files differindex 76e07fb3d..76e07fb3d 100644 --- a/share/icons/application/256x256/inkscape.png +++ b/share/icons/Tango/256x256/apps/inkscape.png diff --git a/share/icons/application/32x32/inkscape.png b/share/icons/Tango/32x32/apps/inkscape.png Binary files differindex aa445e4bc..aa445e4bc 100644 --- a/share/icons/application/32x32/inkscape.png +++ b/share/icons/Tango/32x32/apps/inkscape.png diff --git a/share/icons/application/48x48/inkscape.png b/share/icons/Tango/48x48/apps/inkscape.png Binary files differindex 668acfdef..668acfdef 100644 --- a/share/icons/application/48x48/inkscape.png +++ b/share/icons/Tango/48x48/apps/inkscape.png diff --git a/share/icons/Tango/CMakeLists.txt b/share/icons/Tango/CMakeLists.txt index 2ff009c0b..de0644b69 100644 --- a/share/icons/Tango/CMakeLists.txt +++ b/share/icons/Tango/CMakeLists.txt @@ -1,5 +1,6 @@ set(THEME Tango) -install(FILES "index.theme" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/Tango) +install(FILES "index.theme" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}) + set(PIXMAP_SIZES "scalable") set(CONTENT "actions") @@ -9,3 +10,17 @@ foreach(pixmap_size ${PIXMAP_SIZES}) install(FILES ${PIXMAP_FILES} DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}/${pixmap_size}/${content}) endforeach(content) endforeach(pixmap_size) + +set(PIXMAP_SIZES "16x16" "22x22" "24x24" "32x32" "48x48" "256x256" "scalable" "symbolic") +set(CONTENT "apps") + +foreach(pixmap_size ${PIXMAP_SIZES}) + foreach(content ${CONTENT}) + FILE(GLOB PIXMAP_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/${content}/*.png ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/${content}/*.svg) + install(FILES ${PIXMAP_FILES} DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}/${pixmap_size}/${content}) + endforeach(content) +endforeach(pixmap_size) + +if(WIN32) + install(CODE "execute_process(COMMAND gtk-update-icon-cache \${CMAKE_INSTALL_PREFIX}/${INKSCAPE_SHARE_INSTALL}/icons/${THEME})") +endif() diff --git a/share/icons/Tango/index.theme b/share/icons/Tango/index.theme index 8330b2a43..572cc8672 100644 --- a/share/icons/Tango/index.theme +++ b/share/icons/Tango/index.theme @@ -2,18 +2,49 @@ Name=Tango Comment=Tango icon theme Hidden=true -Directories=scalable/actions,symbolic/actions +Directories=scalable/actions,scalable/apps,16x16/apps,22x22/apps,24x24/apps,32x32/apps,48x48/apps,256x256/apps [scalable/actions] MinSize=8 Size=16 MaxSize=512 -Context=Applications +Context=Actions Type=Scalable -[symbolic/actions] +[scalable/apps] MinSize=8 Size=16 MaxSize=512 Context=Applications Type=Scalable + +[16x16/apps] +Context=Applications +Size=16 +Type=Fixed + +[22x22/apps] +Context=Applications +Size=22 +Type=Fixed + +[24x24/apps] +Context=Applications +Size=24 +Type=Fixed + +[32x32/apps] +Context=Applications +Size=32 +Type=Fixed + +[48x48/apps] +Context=Applications +Size=48 +Type=Fixed + +[256x256/apps] +Context=Applications +Size=256 +Type=Fixed + diff --git a/share/icons/application/CMakeLists.txt b/share/icons/application/CMakeLists.txt deleted file mode 100644 index c9913b2bc..000000000 --- a/share/icons/application/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -set(PIXMAP_SIZES "16x16" "22x22" "24x24" "32x32" "48x48" "256x256") -set(THEME hicolor) -foreach(pixmap_size ${PIXMAP_SIZES}) - FILE(GLOB PIXMAP_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/*.png ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/*.svg) - install(FILES ${PIXMAP_FILES} DESTINATION ${SHARE_INSTALL}/icons/${THEME}/${pixmap_size}/apps) -endforeach(pixmap_size) diff --git a/share/icons/hicolor/16x16/apps/inkscape.png b/share/icons/hicolor/16x16/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..e4aed9222 --- /dev/null +++ b/share/icons/hicolor/16x16/apps/inkscape.png diff --git a/share/icons/hicolor/22x22/apps/inkscape.png b/share/icons/hicolor/22x22/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..b1adda08c --- /dev/null +++ b/share/icons/hicolor/22x22/apps/inkscape.png diff --git a/share/icons/hicolor/24x24/apps/inkscape.png b/share/icons/hicolor/24x24/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..4c2cded2c --- /dev/null +++ b/share/icons/hicolor/24x24/apps/inkscape.png diff --git a/share/icons/hicolor/256x256/apps/inkscape.png b/share/icons/hicolor/256x256/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..76e07fb3d --- /dev/null +++ b/share/icons/hicolor/256x256/apps/inkscape.png diff --git a/share/icons/hicolor/32x32/apps/inkscape.png b/share/icons/hicolor/32x32/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..aa445e4bc --- /dev/null +++ b/share/icons/hicolor/32x32/apps/inkscape.png diff --git a/share/icons/hicolor/48x48/apps/inkscape.png b/share/icons/hicolor/48x48/apps/inkscape.png Binary files differnew file mode 100644 index 000000000..668acfdef --- /dev/null +++ b/share/icons/hicolor/48x48/apps/inkscape.png diff --git a/share/icons/hicolor/CMakeLists.txt b/share/icons/hicolor/CMakeLists.txt index 1a0f65feb..d557fac6a 100644 --- a/share/icons/hicolor/CMakeLists.txt +++ b/share/icons/hicolor/CMakeLists.txt @@ -1,7 +1,7 @@ -install(FILES "index.theme" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/hicolor) set(THEME hicolor) +install(FILES "index.theme" DESTINATION ${INKSCAPE_SHARE_INSTALL}/icons/${THEME}) -set(PIXMAP_SIZES "scalable") +set(PIXMAP_SIZES "scalable" "symbolic") set(CONTENT "actions") foreach(pixmap_size ${PIXMAP_SIZES}) @@ -11,8 +11,8 @@ foreach(pixmap_size ${PIXMAP_SIZES}) endforeach(content) endforeach(pixmap_size) -set(PIXMAP_SIZES "symbolic") -set(CONTENT "actions") +set(PIXMAP_SIZES "16x16" "22x22" "24x24" "32x32" "48x48" "256x256" "scalable" "symbolic") +set(CONTENT "apps") foreach(pixmap_size ${PIXMAP_SIZES}) foreach(content ${CONTENT}) diff --git a/share/icons/hicolor/index.theme b/share/icons/hicolor/index.theme index 46d766193..2369cdc0b 100644 --- a/share/icons/hicolor/index.theme +++ b/share/icons/hicolor/index.theme @@ -2,12 +2,19 @@ Name=Hicolor Comment=Fallback icon theme Hidden=true -Directories=scalable/actions,symbolic/actions +Directories=scalable/actions,scalable/apps,symbolic/actions,symbolic/apps,16x16/apps,22x22/apps,24x24/apps,32x32/apps,48x48/apps,256x256/apps [scalable/actions] MinSize=8 Size=16 MaxSize=512 +Context=Actions +Type=Scalable + +[scalable/apps] +MinSize=8 +Size=16 +MaxSize=512 Context=Applications Type=Scalable @@ -15,6 +22,43 @@ Type=Scalable MinSize=8 Size=16 MaxSize=512 +Context=Actions +Type=Scalable + +[symbolic/apps] +MinSize=8 +Size=16 +MaxSize=512 Context=Applications Type=Scalable +[16x16/apps] +Context=Applications +Size=16 +Type=Fixed + +[22x22/apps] +Context=Applications +Size=22 +Type=Fixed + +[24x24/apps] +Context=Applications +Size=24 +Type=Fixed + +[32x32/apps] +Context=Applications +Size=32 +Type=Fixed + +[48x48/apps] +Context=Applications +Size=48 +Type=Fixed + +[256x256/apps] +Context=Applications +Size=256 +Type=Fixed + diff --git a/share/icons/hicolor/scalable/actions/inkscape-logo.svg b/share/icons/hicolor/scalable/actions/inkscape-logo.svg index 7c1bc6a5e..41ec15b30 100644 --- a/share/icons/hicolor/scalable/actions/inkscape-logo.svg +++ b/share/icons/hicolor/scalable/actions/inkscape-logo.svg @@ -1,51 +1,308 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://web.resource.org/cc/" + 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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="svg1" width="15.010778" height="14.757766" - > + version="1.1" + sodipodi:docname="inkscape-logo.svg" + inkscape:version="0.92+devel (dbb1827eab, 2018-08-02, custom)"> + <metadata + id="metadata847"> + <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></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> <sodipodi:namedview id="base" showgrid="true" - gridspacingy="1pt" - gridspacingx="1pt" - gridoriginy="0pt" - gridoriginx="0pt" - /> - <defs id="defs3"> - - <linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3731" inkscape:collect="always" x1="0" x2="0" xlink:href="#WhiteTransparent" y1="128" y2="76"/> - <linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3735" inkscape:collect="always" x1="33" x2="58" xlink:href="#WhiteTransparent" y1="35" y2="60"/> - <linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3733" inkscape:collect="always" x1="80" x2="60" xlink:href="#WhiteTransparent" y1="20" y2="40"/> - <linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3737" inkscape:collect="always" x1="0" x2="0" xlink:href="#BlackTransparent" y1="128" y2="64"/> - <linearGradient gradientUnits="userSpaceOnUse" id="BlackTransparent"> - <stop id="stop12" offset="0" style="stop-color:black;stop-opacity:1"/> - <stop id="stop14" offset="1" style="stop-color:black;stop-opacity:0"/> + inkscape:document-rotation="0" + inkscape:snap-global="false" + inkscape:zoom="23.750208" + inkscape:cx="8.3715684" + inkscape:cy="10.396987" + inkscape:current-layer="svg1"> + <inkscape:grid + id="GridFromPre046Settings" + type="xygrid" + originx="0pt" + originy="0pt" + spacingx="1pt" + spacingy="1pt" + color="#3f3fff" + empcolor="#3f3fff" + opacity="0.15" + empopacity="0.38" + empspacing="5" /> + </sodipodi:namedview> + <defs + id="defs3"> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3731" + inkscape:collect="always" + x1="0" + x2="0" + xlink:href="#WhiteTransparent" + y1="128" + y2="76" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3735" + inkscape:collect="always" + x1="33" + x2="58" + xlink:href="#WhiteTransparent" + y1="35" + y2="60" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3733" + inkscape:collect="always" + x1="80" + x2="60" + xlink:href="#WhiteTransparent" + y1="20" + y2="40" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3737" + inkscape:collect="always" + x1="0" + x2="0" + xlink:href="#BlackTransparent" + y1="128" + y2="64" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="BlackTransparent"> + <stop + id="stop12" + offset="0" + style="stop-color:black;stop-opacity:1" /> + <stop + id="stop14" + offset="1" + style="stop-color:black;stop-opacity:0" /> </linearGradient> - <linearGradient gradientUnits="userSpaceOnUse" id="WhiteTransparent"> - <stop id="stop7" offset="0" style="stop-color:white;stop-opacity:1"/> - <stop id="stop9" offset="1" style="stop-color:white;stop-opacity:0"/> + <linearGradient + gradientUnits="userSpaceOnUse" + id="WhiteTransparent"> + <stop + id="stop7" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop9" + offset="1" + style="stop-color:white;stop-opacity:0" /> </linearGradient> - <linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3739" inkscape:collect="always" x1="60" x2="90" xlink:href="#WhiteTransparent" y1="20" y2="50"/> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3739" + inkscape:collect="always" + x1="60" + x2="90" + xlink:href="#WhiteTransparent" + y1="20" + y2="50" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1817" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1819" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1821" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1823" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1825" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1827" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> + <linearGradient + inkscape:collect="always" + xlink:href="#BlackTransparent" + id="linearGradient1829" + gradientUnits="userSpaceOnUse" + x1="0" + y1="128" + x2="0" + y2="64" /> </defs> -<g id="inkscape-logo" inkscape:label="#inkscape_options" transform="matrix(0.1336824,0,0,0.1336824,-1.06747000000001,-1.16972100000001)"> - <use class="outline-big" height="128" id="use32" style="opacity:0.1;fill:none" width="128" x="0" xlink:href="#outline1" y="0"/> - <use class="outline-small" height="128" id="use34" style="opacity:0.2;fill:none" width="128" x="0" xlink:href="#outline1" y="0"/> - <use class="black;" height="128" id="use36" width="128" x="0" xlink:href="#outline1" y="0"/> - <use class="stroke-highlight" clip-path="url(#clipoutline1)" height="128" id="use38" style="opacity:0.2;fill:none" width="128" x="0" xlink:href="#outline1" y="0"/> - <use class="specularity" height="128" id="use40" style="opacity:0.5;fill:url(#linearGradient3731)" width="128" x="0" xlink:href="#outline1" y="0"/> - <use class="low-specularity" height="128" id="use42" style="opacity:0.25;fill:url(#linearGradient3733)" width="128" x="0" xlink:href="#outline1" y="0"/> - <path class="specularity" d="M 16.8,56.9 C 5.7,67.9 25.2,64.8 40.2,70.7 L 71.2,16.2 C 66.5,11.4 60.5,11.8 56.2,16.2 Z" id="path44" inkscape:connector-curvature="0" style="opacity:0.5;fill:url(#linearGradient3735)"/> - <path class="shade" d="M 8.9,61.7 C 6.3,71.1 22.3,70.9 31.2,74.4 32.7,73.5 33.5,72.4 32.4,71.4 25.2,67.8 11,67.8 8.9,61.7 Z M 120,62.7 C 117.3,71.6 94.5,75 86.6,79.7 85.5,80.8 86.2,81.8 87.5,82.8 97.3,77.9 123.2,74.1 120,62.7 Z M 44.3,73.7 C 41.1,73.7 39.1,75.3 44.9,77.4 52.6,78 63.7,81.1 66.1,82.1 69.8,75.5 45.1,73.7 44.3,73.7 Z M 23.2,82.2 C 21.9,83.1 21.2,84.1 22.3,85.1 25.8,88.8 43.8,92.2 47.5,95.8 48.4,94.6 48.7,93.4 47.6,92.2 44.2,88.8 28.2,85.6 23.2,82.2 Z M 103,91.3 C 102.3,92.1 101.7,93 101.5,94 101.5,96.1 116.9,97.4 116.9,93.4 116.6,92.7 116.3,92 115.7,91.3 112.9,92.9 106,92.5 103,91.3 Z M 95.6,91.7 C 92.2,98.8 84.3,94.2 75.8,102.8 74.4,104.3 75.2,105.1 76.5,105.8 85.2,97.6 93.2,102.9 96.2,94 96.4,93.1 96.2,92.4 95.6,91.7 Z M 41.6,98.7 C 39.2,101.9 35,104 32,101.4 31.7,101.2 31.5,100.9 31.3,100.6 30.2,102 30.2,103.5 32,105.1 35.6,108.2 41.3,104.3 43,99.9 42.7,99.4 42.1,99 41.6,98.7 Z M 98.3,99.7 C 96,103.4 100.6,106.4 104.7,104.1 105.3,103.4 105.2,102 104.1,100.6 101.7,101.8 99.4,101.1 98.3,99.7 Z M 43.9,103.6 C 43,104.7 42.7,106 43.8,107.2 47.4,110.8 55.8,107.3 57.3,115.8 58.4,121.9 72,118.7 78.8,113.8 80.3,112.16 79.6,111.1 78.3,110.3 71.2,115.1 58.3,118 57.3,112.2 55.8,103.7 47.5,107.1 43.9,103.6 Z" id="path46" inkscape:connector-curvature="0" style="fill:url(#linearGradient3737)"/> - <path class="full-specularity" d="M 70.5,15.5 86.8,32.1 C 88.3,33.6 88.3,36.7 87.4,37.6 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 C 33.4,42 33.8,39.1 36.7,36.2 42.4,29.9 53.5,19.2 57,15.5 60.6,11.8 66.9,11.9 70.5,15.5 Z" id="icecap" inkscape:connector-curvature="0" style="fill:url(#linearGradient3739)"/> -</g> - + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccc" + style="display:inline;fill:#000000;fill-opacity:1;stroke-width:0.13294493;enable-background:new" + d="M 6.1890188,0.57075028 0.71083029,6.1801481 C -1.3634353,8.2537658 2.0537844,8.0809643 3.2903657,8.8652168 3.8621185,9.237404 1.4554385,9.7159297 1.9474115,10.207752 c 0.4786766,0.491818 2.8853571,0.94376 3.3640337,1.422287 0.4786766,0.49182 -0.9706502,1.010224 -0.4919736,1.502042 0.4653802,0.49182 1.5822926,0.02658 1.7817411,1.143149 0.1462621,0.824129 2.0476727,0.412064 2.8986536,-0.292434 0.5318627,-0.451942 -0.917464,-0.451942 -0.4387875,-0.943761 1.1966912,-1.20961 2.2604172,-0.544989 2.6992052,-1.661552 0.239338,-0.598158 -1.8083345,-1.023516 -1.263175,-1.4089963 1.303066,-0.917177 6.08983,-1.3824106 3.8826,-3.5889518 L 8.7020718,0.57075028 c -0.7047186,-0.66462173 -1.8615208,-0.66462173 -2.513053,0 z M 12.478299,11.377483 c 0,0.279141 2.167342,0.43865 2.047672,-0.06647 -0.172854,-0.850714 -1.808334,-0.784252 -2.047672,0.06647 z M 3.2371796,12.85294 C 3.7291525,13.278298 4.4737609,12.7599 4.7130991,12.161736 4.2344226,11.536992 2.4659779,12.201626 3.2371796,12.85294 Z m 8.9751884,-0.89059 c -0.611642,0.55828 0.106377,1.143146 0.704719,0.757667 0.159557,-0.106344 -0.0133,-0.624743 -0.704719,-0.757667 z" + id="use7631" /> + <g + id="inkscape-logo" + inkscape:label="#inkscape_options" + transform="matrix(0.1336824,0,0,0.1336824,-1.0532868,-1.187227)"> + <use + class="outline-big" + height="128" + id="use32" + style="opacity:0.1;fill:none" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <use + class="outline-small" + height="128" + id="use34" + style="opacity:0.2;fill:none" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <use + class="black;" + height="128" + id="use36" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <use + class="stroke-highlight" + clip-path="url(#clipoutline1)" + height="128" + id="use38" + style="opacity:0.2;fill:none" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <use + class="specularity" + height="128" + id="use40" + style="opacity:0.5;fill:url(#linearGradient3731)" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <use + class="low-specularity" + height="128" + id="use42" + style="opacity:0.25;fill:url(#linearGradient3733)" + width="128" + x="0" + xlink:href="#outline1" + y="0" /> + <path + class="specularity" + d="m 16.8,56.9 c -11.1,11 8.4,7.9 23.4,13.8 l 31,-54.5 c -4.7,-4.8 -10.7,-4.4 -15,0 z" + id="path44" + inkscape:connector-curvature="0" + style="opacity:0.5;fill:url(#linearGradient3735)" /> + <path + style="fill:url(#linearGradient1817)" + d="m 43.9,103.6 c -0.9,1.1 -1.2,2.4 -0.1,3.6 3.6,3.6 12,0.1 13.5,8.6 1.1,6.1 14.7,2.9 21.5,-2 1.5,-1.64 0.8,-2.7 -0.5,-3.5 -7.1,4.8 -20,7.7 -21,1.9 -1.5,-8.5 -9.8,-5.1 -13.4,-8.6 z" + id="path1815" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1819)" + d="m 98.3,99.7 c -2.3,3.7 2.3,6.7 6.4,4.4 0.6,-0.7 0.5,-2.1 -0.6,-3.5 -2.4,1.2 -4.7,0.5 -5.8,-0.9 z" + id="path1813" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1821)" + d="m 41.6,98.7 c -2.4,3.2 -6.6,5.3 -9.6,2.7 -0.3,-0.2 -0.5,-0.5 -0.7,-0.8 -1.1,1.4 -1.1,2.9 0.7,4.5 3.6,3.1 9.3,-0.8 11,-5.2 -0.3,-0.5 -0.9,-0.9 -1.4,-1.2 z" + id="path1811" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1823)" + d="m 95.6,91.7 c -3.4,7.1 -11.3,2.5 -19.8,11.1 -1.4,1.5 -0.6,2.3 0.7,3 8.7,-8.2 16.7,-2.9 19.7,-11.8 0.2,-0.9 0,-1.6 -0.6,-2.3 z" + id="path1809" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1825)" + d="m 103,91.3 c -0.7,0.8 -1.3,1.7 -1.5,2.7 0,2.1 15.4,3.4 15.4,-0.6 -0.3,-0.7 -0.6,-1.4 -1.2,-2.1 -2.8,1.6 -9.7,1.2 -12.7,0 z" + id="path1807" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1827)" + d="m 23.2,82.2 c -1.3,0.9 -2,1.9 -0.9,2.9 3.5,3.7 21.5,7.1 25.2,10.7 0.9,-1.2 1.2,-2.4 0.1,-3.6 -3.4,-3.4 -19.4,-6.6 -24.4,-10 z" + id="path1805" + inkscape:connector-curvature="0" /> + <path + style="fill:#ffffff" + d="m 44.3,73.7 c -3.2,0 -5.2,1.6 0.6,3.7 7.7,0.6 18.8,3.7 21.2,4.7 3.7,-6.6 -21,-8.4 -21.8,-8.4 z" + id="path1803" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient1829)" + d="m 120,62.7 c -2.7,8.9 -25.5,12.3 -33.4,17 -1.1,1.1 -0.4,2.1 0.9,3.1 9.8,-4.9 35.7,-8.7 32.5,-20.1 z" + id="path1801" + inkscape:connector-curvature="0" /> + <path + style="fill:url(#linearGradient3737)" + d="m 8.9,61.7 c -2.6,9.4 13.4,9.2 22.3,12.7 1.5,-0.9 2.3,-2 1.2,-3 C 25.2,67.8 11,67.8 8.9,61.7 Z" + id="path46" + inkscape:connector-curvature="0" /> + <path + class="full-specularity" + d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z" + id="icecap" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient3739)" /> + </g> </svg> diff --git a/share/icons/hicolor/scalable/apps/inkscape.svg b/share/icons/hicolor/scalable/apps/inkscape.svg new file mode 100644 index 000000000..bdf6ec72f --- /dev/null +++ b/share/icons/hicolor/scalable/apps/inkscape.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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" + id="svg1" + width="16" + height="16" + version="1.1" + sodipodi:docname="inkscape-logo.svg" + inkscape:version="0.92+devel (dbb1827eab, 2018-08-02, custom)"> + <metadata + id="metadata182"> + <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 /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + id="base" + showgrid="true" + inkscape:document-rotation="0" + inkscape:pagecheckerboard="true" + inkscape:snap-global="false" + inkscape:zoom="33.779522" + inkscape:cx="7.4993787" + inkscape:cy="7.7747204" + inkscape:window-width="1280" + inkscape:window-height="960" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="svg1"> + <inkscape:grid + id="GridFromPre046Settings" + type="xygrid" + originx="0pt" + originy="0pt" + spacingx="1pt" + spacingy="1pt" + color="#3f3fff" + empcolor="#3f3fff" + opacity="0.15" + empopacity="0.38" + empspacing="5" /> + </sodipodi:namedview> + <defs + id="defs3"> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3731" + inkscape:collect="always" + x1="0" + x2="0" + xlink:href="#WhiteTransparent" + y1="128" + y2="76" + gradientTransform="matrix(0.13826275,0,0,0.14033306,-0.7993514,-1.0268723)" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="BlackTransparent"> + <stop + id="stop12" + offset="0" + style="stop-color:black;stop-opacity:1" /> + <stop + id="stop14" + offset="1" + style="stop-color:black;stop-opacity:0" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + id="WhiteTransparent"> + <stop + id="stop7" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop9" + offset="1" + style="stop-color:white;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5785" + id="linearGradient9175" + gradientUnits="userSpaceOnUse" + x1="82.118591" + y1="20" + x2="60" + y2="40" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient5785"> + <stop + id="stop5787" + offset="0" + style="stop-color:#c0cdf9;stop-opacity:1" /> + <stop + id="stop5789" + offset="1" + style="stop-color:#07092d;stop-opacity:0.28804347" /> + </linearGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath9086"> + <path + inkscape:connector-curvature="0" + d="m 54.100001,12.5 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 C 96.300001,76.3 132.3,72.8 115.7,56.2 L 73.000001,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z M 101.4,93.8 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.499999,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.799999,8.6 5.299999,5.7 1.2,-0.8 -0.1,-4.7 -5.299999,-5.7 z" + id="use9088" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </clipPath> + </defs> + <g + id="inkscape-logo" + label="#inkscape_options" + transform="matrix(1.0329834,0,0,1.0338481,-0.31473882,-0.20784698)"> + <path + inkscape:connector-curvature="0" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z m 7.9086289,2.3295291 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + id="use32" + style="opacity:0.1;fill:none;stroke-width:0.13929406" /> + <path + inkscape:connector-curvature="0" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z m 7.9086289,2.3295291 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + id="use34" + style="opacity:0.2;fill:none;stroke-width:0.13929406" /> + <path + inkscape:connector-curvature="0" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z m 7.9086289,2.3295291 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + id="use36" + style="opacity:1;stroke-width:0.13929406" /> + <path + inkscape:connector-curvature="0" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z m 7.9086289,2.3295291 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + id="use38" + style="opacity:0.2;fill:none;stroke-width:0.13929406" /> + <path + inkscape:connector-curvature="0" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z m 7.9086289,2.3295291 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + id="use40" + style="opacity:0.5;fill:url(#linearGradient3731);stroke-width:0.13929406" /> + <path + id="use42" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.13929406;stroke-opacity:1" + d="M 6.6806634,0.72729095 0.98423807,6.6493461 C -1.1726608,8.8385418 2.3806918,8.6561088 3.6665354,9.4840739 4.2610652,9.8770065 1.7585095,10.382205 2.2700816,10.901438 c 0.4977459,0.519232 3.0003017,0.996365 3.4980476,1.501564 0.4977459,0.519232 -1.0093181,1.066531 -0.5115722,1.585763 0.4839197,0.519232 1.6453268,0.02807 1.8527209,1.206864 0.152089,0.870065 2.1292463,0.435033 3.0141281,-0.308732 C 10.676457,14.409764 9.1693929,14.409764 9.6671388,13.890532 10.911504,12.613501 12.017606,13.315166 12.473873,12.136369 12.722746,11.50487 10.593499,11.055804 11.160376,10.648838 12.515351,9.6805402 17.49281,9.1893745 15.197649,6.8598457 L 9.2938293,0.72729095 c -0.7327925,-0.7016653 -1.9356784,-0.7016653 -2.6131659,0 z M 13.220491,12.136369 c 0,0.294699 2.253683,0.463099 2.129247,-0.07017 -0.179742,-0.898131 -1.880374,-0.827965 -2.129247,0.07017 z m -9.6092607,1.557697 c 0.5115722,0.449065 1.2858436,-0.09823 1.5347166,-0.729732 -0.4977459,-0.659566 -2.3366405,0.0421 -1.5347166,0.729732 z m 9.3327357,-0.940232 c -0.636009,0.589399 0.11061,1.206865 0.732793,0.799899 0.165915,-0.112267 -0.01383,-0.659566 -0.732793,-0.799899 z" + inkscape:connector-curvature="0" /> + <path + class="full-specularity" + d="m 8.9481725,1.1482901 2.2536825,2.3295288 c 0.207394,0.2104996 0.207394,0.6455321 0.08296,0.7718319 L 10.164885,3.3234526 9.9436643,4.6846832 9.0173038,4.1794842 7.5102399,5.1477823 7.012494,3.112953 6.21057,4.8811495 4.2057601,4.8671162 c -0.3871356,0 -0.3318305,-0.4069659 0.069131,-0.8139317 0.7880977,-0.8840983 2.3228142,-2.385662 2.8067338,-2.9048944 0.497746,-0.51923229 1.3688013,-0.50519899 1.8665476,0 z" + id="icecap" + inkscape:connector-curvature="0" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.13929406" /> + <path + style="opacity:1;fill:#ffffff;fill-opacity:0.98314113;stroke:none;stroke-width:0.13929406;stroke-opacity:1" + d="m 5.3118621,9.8068399 c 0.1244365,0 4.2584927,0.5613321 2.6684711,0.9963651 C 7.3719771,10.971604 4.5790696,9.8068399 5.3118621,9.8068399 Z" + id="path858" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/share/icons/hicolor/symbolic/apps/inkscape-symbolic.svg b/share/icons/hicolor/symbolic/apps/inkscape-symbolic.svg new file mode 100644 index 000000000..9832949dd --- /dev/null +++ b/share/icons/hicolor/symbolic/apps/inkscape-symbolic.svg @@ -0,0 +1,13 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!-- Created with Inkscape (http://www.inkscape.org/) and export_objects.py --> +<svg xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg1" width="16" height="16" viewBox="0 0 16 16" sodipodi:docname="inkscape-logo-symbolic.svg"><sodipodi:namedview objecttolerance="10" gridtolerance="10" guidetolerance="10" id="namedview" showgrid="true" inkscape:zoom="0.6002936" inkscape:cx="732.67439" inkscape:cy="-567.94603" inkscape:window-width="1920" inkscape:window-height="1016" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="layer1"> + <inkscape:grid type="xygrid" id="grid"/> + </sodipodi:namedview> + <g transform="translate(-225.09894,-567.37128)" inkscape:label="00101" id="inkscape-logo"> + <path inkscape:connector-curvature="0" id="rect13270-8" d="m 225.0988,567.37128 h 15.99999 v 16 H 225.0988 Z" style="opacity:0;fill:none"/> + <path style="opacity:1" d="m 233.097,567.3713 c -0.4562,0 -0.9001,0.1737 -1.2497,0.5344 l -6.2129,6.4132 c -0.3426,0.3536 -0.5287,0.8212 -0.5355,1.2826 -10e-5,0.01 0,0.028 0,0.036 -10e-5,1.3729 3.6905,0.021 4.022,1.7 0.1794,0.9085 -2.0221,0.515 -2.0221,1.429 0,1.0722 3.094,0.3167 3.9779,1.2006 0.3631,0.8839 -1.1857,0.7513 -0.911,1.5726 0.5178,0.5343 1.6814,0.2387 1.9051,1.1011 0.2556,0.9852 1.9407,0.8119 2.9175,0.09 0.5178,-0.5342 -0.8057,-0.7948 -0.288,-1.329 0.5178,-0.5343 3.0914,-0.4286 3.1099,-1.5961 -0.2444,-0.7335 -1.2095,-0.8334 -1.2242,-1.7003 -0.052,-0.7341 0.766,-0.5299 3.4176,-1.2605 1.0603,-0.4969 1.0956,-0.7502 1.0916,-1.2078 -1e-4,-0.01 0,-0.026 0,-0.036 -0.01,-0.4614 -0.193,-0.929 -0.5356,-1.2826 l -6.2129,-6.4131 c -0.3496,-0.3604 -0.7934,-0.5341 -1.2497,-0.5341 z m 0.1334,1.3506 c 0.4698,0 1.7608,1.6051 2.9096,2.7944 0.3231,0.4321 -0.14,0.8459 -0.14,0.8459 l -2.3944,-1.3004 -1.0739,1.4396 -0.9195,-1.3914 -0.5748,2.1608 -1.6459,-0.9775 0.435,-0.5752 2.5902,-2.639 c 0.1989,-0.2021 0.3523,-0.3607 0.8135,-0.3571 z" id="path13254-1" inkscape:connector-curvature="0"/> + <path style="opacity:1" d="m 240.3614,578.344 c -0.1263,0 -0.2459,0.011 -0.3358,0.036 -0.1695,0.049 -0.9929,0.071 -0.9268,0.6815 0.7274,0.3049 1.852,0.5384 1.9842,-0.072 0.099,-0.4575 -0.3424,-0.6316 -0.7216,-0.6456 z" id="path13250-6" inkscape:connector-curvature="0"/> + <path style="opacity:1" d="m 228.1757,580.3758 c -0.1442,-0.013 -0.2853,6e-4 -0.4233,0.053 -0.5517,0.2097 -0.923,0.6758 -0.4076,0.8686 0.5155,0.1928 0.8807,-0.027 1.3326,-0.2659 0.4519,-0.2392 0.4402,-0.2859 0.4076,-0.3782 -0.063,0.013 -0.4766,-0.2397 -0.9093,-0.2777 z" id="path13248-6" inkscape:connector-curvature="0"/> + <path style="opacity:0;fill:none" d="m 238.304,580.3713 c -0.3696,0.1525 -0.3652,0.6822 -0.07,0.911 0.2957,0.2288 0.6656,0.081 0.8134,-0.072 0.1479,-0.1525 0,-0.6868 -0.7438,-0.8393 z" id="path1217-0" inkscape:connector-curvature="0"/> + </g> + </svg> |
