Add Soft Waves support for GRUB

This commit is contained in:
Aurélien COUDERC
2016-11-01 16:43:10 +00:00
parent 9bf87abed3
commit 3df682bac7
9 changed files with 957 additions and 25 deletions
+16 -4
View File
@@ -1,15 +1,25 @@
GRUB_THEMES=softwaves-theme/grub
DEFAULT_BACKGROUND=desktop-background
INSTALL=install -m 0644
BACKGROUNDS=$(wildcard backgrounds/*.png backgrounds/*.jpg backgrounds/*.svg backgrounds/*.tga backgrounds/*.xml)
PIXMAPS=$(wildcard pixmaps/*.png)
DESKTOPFILES=$(wildcard *.desktop)
all:
all: build-grub
clean:
build-grub clean-grub install-grub:
@target=`echo $@ | sed s/-grub//`; \
for grub_theme in $(GRUB_THEMES) ; do \
if [ -f $$grub_theme/Makefile ] ; then \
$(MAKE) $$target -C $$grub_theme || exit 1; \
fi \
done$
install:
clean: clean-grub
install: install-grub install-local
install-local:
# background files
mkdir -p $(DESTDIR)/usr/share/images/desktop-base
$(INSTALL) $(BACKGROUNDS) $(DESTDIR)/usr/share/images/desktop-base
@@ -132,3 +142,5 @@ install:
# Lock screen symlink for KDE
install -d $(DESTDIR)/usr/share/wallpapers
cd $(DESTDIR)/usr/share/wallpapers && ln -s /usr/share/desktop-base/softwaves-theme/lockscreen SoftWavesLockScreen
include Makefile.inc
+1
View File
@@ -0,0 +1 @@
INSTALL=install -m 0644
+3 -2
View File
@@ -2,7 +2,8 @@ desktop-base (9.0.0~exp1) UNRELEASED; urgency=medium
[ Aurélien COUDERC ]
* Initial support for Soft Waves theme by Juliette Belin.
- Default theme for Gnome wallpaper and lock screen
- Default theme for GRUB. (Closes: #598776, #773369)
- Default theme Gnome wallpaper and lock screen
- Theme available for SDDM login and Plasma 5 wallpaper and lock screen
- debian/copyright updated
* Initial support for global theme switching via alternatives
@@ -27,7 +28,7 @@ desktop-base (9.0.0~exp1) UNRELEASED; urgency=medium
[ Yves-Alexis Perez ]
* Also use Debian wallpaper for second monitor on Xfce. closes: #785371
-- Coucouf <coucouf@Grumly> Tue, 06 Sep 2016 08:14:12 +0200
-- Aurélien COUDERC <zecoucou@free.fr> Tue, 06 Sep 2016 08:14:12 +0200
desktop-base (8.0.2) unstable; urgency=medium
+1 -1
View File
@@ -8,7 +8,7 @@ Uploaders: Loïc Minier <lool@dooz.org>,
Josselin Mouette <joss@debian.org>,
Paul Tagliamonte <paultag@debian.org>,
Eshat Cakar <info@eshat.de>
Build-Depends: cdbs (>= 0.4.93), debhelper (>= 9)
Build-Depends: cdbs (>= 0.4.93), debhelper (>= 9), librsvg2-bin
Standards-Version: 3.9.8
Homepage: http://www.debian.org/devel/debian-desktop
Vcs-Browser: http://svn.debian.org/wsvn/debian-desktop/packages/trunk/desktop-base
+25 -12
View File
@@ -58,7 +58,7 @@ EOF
/usr/share/images/desktop-base/desktop-background.xml \
desktop-background.xml \
/usr/share/desktop-base/active-theme/wallpaper/gnome-background.xml 50
# Alternative for theme packages
# Alternatives for theme packages
while read theme priority; do
update-alternatives --install \
/usr/share/images/desktop-base/desktop-background.xml \
@@ -85,7 +85,7 @@ EOF
/usr/share/images/desktop-base/desktop-lockscreen.xml \
desktop-lockscreen.xml \
/usr/share/desktop-base/active-theme/lockscreen/gnome-background.xml 50
# Alternative for theme packages
# Alternatives for theme packages
while read theme priority; do
update-alternatives --install \
/usr/share/images/desktop-base/desktop-lockscreen.xml \
@@ -103,7 +103,7 @@ EOF
--slave /usr/share/sddm/themes/debian-theme/sddm-preview.jpg \
desktop-sddm-preview \
/usr/share/desktop-base/active-theme/sddm-preview.jpg
# Alternative for theme packages
# Alternatives for theme packages
while read theme priority; do
update-alternatives --install /usr/share/images/desktop-base/login-background.svg \
desktop-login-background \
@@ -137,33 +137,46 @@ EOF
/usr/share/desktop-base/joy-theme/sddm-preview.jpg
# Alternatives for grub
# Highest priority for active theme
## Favor widescreen / hi-res background for efi installations
num_grub_efi_installed=$(dpkg-query --list "grub-efi*" | grep "^i" | wc -l)
if [ $num_grub_efi_installed -gt 0 ] ; then
lines_grub_prio=15
lines_grub_1920_prio=20
grub_prio_4x3=15
grub_prio_16x9=20
else
lines_grub_prio=20
lines_grub_1920_prio=15
grub_prio_4x3=20
grub_prio_16x9=15
fi
update-alternatives --install \
/usr/share/images/desktop-base/desktop-grub.png \
desktop-grub \
/usr/share/images/desktop-base/lines-grub.png $lines_grub_prio
/usr/share/desktop-base/active-theme/grub/grub-4x3.png $grub_prio_4x3
update-alternatives --install \
/usr/share/images/desktop-base/desktop-grub.png \
desktop-grub \
/usr/share/images/desktop-base/lines-grub-1920x1080.png $lines_grub_1920_prio
/usr/share/desktop-base/active-theme/grub/grub-16x9.png $grub_prio_16x9
# Alternatives for theme packages
while read theme ratio priority; do
update-alternatives --install /usr/share/images/desktop-base/desktop-grub.png \
desktop-grub \
/usr/share/desktop-base/$theme-theme/grub/grub-$ratio.png $priority
done << EOF
softwaves 4x3 15
softwaves 16x9 15
EOF
# Old alternatives
while read background priority; do
update-alternatives --install \
/usr/share/images/desktop-base/desktop-grub.png \
desktop-grub \
/usr/share/images/desktop-base/$background $priority
done << EOF
joy-grub.png 15
spacefun-grub.png 15
spacefun-grub-widescreen.png 14
lines-grub.png 10
lines-grub-1920x1080.png 10
joy-grub.png 10
spacefun-grub.png 10
spacefun-grub-widescreen.png 10
EOF
# GRUB background
+18 -6
View File
@@ -111,11 +111,23 @@ EOF
/usr/share/desktop-base/active-theme/backgrounds/login.svg
# Remove grub background alternatives
# For theme packages
while read theme ratio; do
update-alternatives --remove \
desktop-grub \
/usr/share/desktop-base/$theme-theme/grub/grub-$ratio.png
done << EOF
softwaves 4x3
softwaves 16x9
EOF
# For old alternatives
while read background; do
update-alternatives --remove \
desktop-grub \
/usr/share/images/desktop-base/$background
done << EOF
lines-grub.png
lines-grub-1920x1080.png
joy-grub.png
spacefun-grub.png
spacefun-grub-widescreen.png
@@ -123,18 +135,18 @@ EOF
## *Lastly* remove *highest priority* alternative
num_grub_efi_installed=$(dpkg-query --list "grub-efi*" | grep "^i" | wc -l)
if [ $num_grub_efi_installed -gt 0 ] ; then
remove_first=lines-grub.png
remove_last=lines-grub-1920x1080.png
remove_first_ratio=4x3
remove_last_ratio=16x9
else
remove_first=lines-grub-1920x1080.png
remove_last=lines-grub.png
remove_first_ratio=16x9
remove_last_ratio=4x3
fi
update-alternatives --remove \
desktop-grub \
/usr/share/images/desktop-base/$remove_first
/usr/share/desktop-base/active-theme/grub/grub-$remove_first_ratio.png
update-alternatives --remove \
desktop-grub \
/usr/share/images/desktop-base/$remove_last
/usr/share/desktop-base/active-theme/grub/grub-$remove_last_ratio.png
# Remove theme package alternatives
while read theme; do
+22
View File
@@ -0,0 +1,22 @@
dir = usr/share/desktop-base/softwaves-theme/grub
files = \
grub-4x3.png \
grub-16x9.png
build: $(files)
clean:
rm -f grub-4x3.png grub-16x9.png
install:
install -d $(DESTDIR)/$(dir)
$(INSTALL) $(wildcard *.png) $(DESTDIR)/$(dir)
grub-4x3.png: grub-4x3.svg
rsvg-convert $< > $@
grub-16x9.png: grub-16x9.svg
rsvg-convert $< > $@
include ../../Makefile.inc
+434
View File
@@ -0,0 +1,434 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="root"
x="0px"
y="0px"
width="1920"
height="1080"
viewBox="0 0 1920 1080"
enable-background="new 0 0 640 480"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="grub-16x9.svg"><metadata
id="metadata4633"><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><defs
id="defs4631" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1007"
id="namedview4629"
showgrid="false"
inkscape:zoom="0.41927083"
inkscape:cx="725.91061"
inkscape:cy="490.9281"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="root"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" /><g
id="background_1_"
transform="matrix(3,0,0,3,0,-180)"><linearGradient
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
y2="-19.219999"
x2="217.6601"
y1="459.88571"
x1="217.6602"
gradientUnits="userSpaceOnUse"
id="SVGID_1_"><stop
id="stop4470"
style="stop-color:#133356"
offset="0" /><stop
id="stop4472"
style="stop-color:#7C9999"
offset="0.5025" /><stop
id="stop4474"
style="stop-color:#333333"
offset="1" /></linearGradient><rect
y="0"
x="0"
style="fill:url(#SVGID_1_)"
id="rect4476"
height="480"
width="640" /></g><g
id="Layer_4"
transform="matrix(3,0,0,3,0,-180)"><radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.987,0,0,-1.324,103.836,440.0038)"
r="316.2825"
cy="160.7695"
cx="189.6929"
id="SVGID_2_"><stop
id="stop4480"
style="stop-color:#E4C8A5;stop-opacity:0.5"
offset="0" /><stop
id="stop4482"
style="stop-color:#AEAB93;stop-opacity:0.4372"
offset="0.1429" /><stop
id="stop4484"
style="stop-color:#587E77;stop-opacity:0.3331"
offset="0.3797" /><stop
id="stop4486"
style="stop-color:#366C6C;stop-opacity:0.2857"
offset="0.4877" /></radialGradient><rect
y="0"
style="fill:url(#SVGID_2_)"
id="rect4488"
height="480"
width="640"
x="0" /></g><g
id="glows"
transform="matrix(3,0,0,3,0,-180)"><radialGradient
id="SVGID_3_"
cx="397.77151"
cy="187.293"
r="93.725098"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4492" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4494" /></radialGradient><circle
enable-background="new "
cx="500.10999"
cy="273.74701"
r="93.725998"
id="circle4496"
style="opacity:0.2;fill:url(#SVGID_3_)" /><radialGradient
id="SVGID_4_"
cx="345.71881"
cy="219.54739"
r="74.186798"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4499" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4501" /></radialGradient><circle
enable-background="new "
cx="448.05801"
cy="241.492"
r="74.186996"
id="circle4503"
style="opacity:0.2;fill:url(#SVGID_4_)" /><radialGradient
id="SVGID_5_"
cx="25.497999"
cy="232.3037"
r="98.356201"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4506" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4508" /></radialGradient><circle
enable-background="new "
cx="127.838"
cy="228.73599"
r="98.357002"
id="circle4510"
style="opacity:0.1;fill:url(#SVGID_5_)" /><radialGradient
id="SVGID_6_"
cx="88.607399"
cy="168.84419"
r="98.356697"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4513" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4515" /></radialGradient><circle
enable-background="new "
cx="190.94701"
cy="292.19601"
r="98.357002"
id="circle4517"
style="opacity:0.1;fill:url(#SVGID_6_)" /><radialGradient
id="SVGID_7_"
cx="161.73"
cy="109.4844"
r="125.8254"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4520" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4522" /></radialGradient><circle
enable-background="new "
cx="264.07001"
cy="351.556"
r="125.825"
id="circle4524"
style="opacity:0.1;fill:url(#SVGID_7_)" /><radialGradient
id="SVGID_8_"
cx="326.2168"
cy="163.78661"
r="125.8249"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4527" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4529" /></radialGradient><circle
enable-background="new "
cx="428.556"
cy="297.25299"
r="125.825"
id="circle4531"
style="opacity:0.1;fill:url(#SVGID_8_)" /><radialGradient
id="SVGID_9_"
cx="296.9541"
cy="208.0977"
r="125.8257"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4534" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4536" /></radialGradient><circle
enable-background="new "
cx="399.29401"
cy="252.942"
r="125.825"
id="circle4538"
style="opacity:0.2;fill:url(#SVGID_9_)" /><radialGradient
id="SVGID_10_"
cx="422.7793"
cy="208.0977"
r="125.8257"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4541" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4543" /></radialGradient><circle
enable-background="new "
cx="525.12"
cy="252.942"
r="125.825"
id="circle4545"
style="opacity:0.2;fill:url(#SVGID_10_)" /><radialGradient
id="SVGID_11_"
cx="385.91211"
cy="119.4766"
r="125.8247"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4548" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4550" /></radialGradient><circle
enable-background="new "
cx="488.25101"
cy="341.56299"
r="125.825"
id="circle4552"
style="opacity:0.2;fill:url(#SVGID_11_)" /></g><g
id="waves"
transform="matrix(3,0,0,3,0,-180)"><radialGradient
id="SVGID_12_"
cx="93.783203"
cy="227.40669"
r="236.50079"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4556" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4558" /></radialGradient><path
enable-background="new "
d="m 444.013,65.118 c 0,0 41.075,47.038 22.503,119.633 C 435.122,307.47 340.065,327.083 186.09,292.173 -85.233,230.652 -94.612,368.038 -92.598,380.794 l 14.73,21.354 c -2.015,-12.756 7.364,-150.14 278.688,-88.621 153.977,34.911 249.03,15.298 280.426,-107.422 C 499.818,133.511 444.013,65.118 444.013,65.118"
id="path4560"
style="opacity:0.5;fill:url(#SVGID_12_)"
inkscape:connector-curvature="0" /><radialGradient
id="SVGID_13_"
cx="156.7368"
cy="122.5254"
r="191.13341"
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4563" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4565" /></radialGradient><path
enable-background="new "
d="M 520.333,269.167 C 447.469,314.45 387.75,319.334 276.696,297.886 5.372,236.367 -4.006,373.75 -1.993,386.508 l 14.73,21.354 c -2.015,-12.756 7.365,-150.138 278.687,-88.621 115.97,28.533 189.124,-10.24 228.909,-50.074 z"
id="path4567"
style="opacity:0.5;fill:url(#SVGID_13_)"
inkscape:connector-curvature="0" /></g><g
id="logoWaves"
transform="matrix(3,0,0,3,0,-180)"><radialGradient
id="SVGID_14_"
cx="551.07031"
cy="222.4668"
r="68.965698"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4571" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4573" /></radialGradient><path
enable-background="new "
d="m 580.411,149.516 c 0,0 19.964,9.577 25.602,36.26 9.528,45.105 -16.604,65.391 -69.356,76.221 -49.466,5.337 -52.263,29.496 -49.651,33.42 -2.612,-3.923 13.106,-21.67 57.514,-28.503 52.751,-10.83 78.884,-31.119 69.356,-76.223 -5.638,-26.682 -33.465,-41.175 -33.465,-41.175"
id="path4575"
style="opacity:0.5;fill:url(#SVGID_14_)"
inkscape:connector-curvature="0" /><radialGradient
id="SVGID_15_"
cx="-124.3457"
cy="733.23438"
r="204.8933"
gradientTransform="matrix(-0.5695,0.5826,0.5146,0.503,167.7985,-34.3027)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4578" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4580" /></radialGradient><path
enable-background="new "
d="m 545.199,243.096 c 0,0 -17.947,0.101 -28.05,-17.749 -17.072,-30.175 -0.464,-54.779 39.376,-81.986 70.205,-47.939 45.559,-76.058 42.652,-78.037 l -7.309,-0.815 c 2.909,1.979 27.553,30.097 -42.651,78.038 -39.841,27.207 -56.447,51.81 -39.375,81.984 10.098,17.85 35.357,18.565 35.357,18.565"
id="path4582"
style="opacity:0.5;fill:url(#SVGID_15_)"
inkscape:connector-curvature="0" /></g><g
id="rounds"
transform="matrix(3,0,0,3,0,-180)"><path
stroke-miterlimit="10"
d="M 234.865,327.371"
id="path4585"
inkscape:connector-curvature="0"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-miterlimit:10" /><circle
enable-background="new "
cx="530.47699"
cy="130.379"
r="4.401"
id="circle4587"
style="opacity:0.2;fill:#ffffff" /><circle
enable-background="new "
cx="495.992"
cy="171.42799"
r="4.3990002"
id="circle4589"
style="opacity:0.1;fill:#ffffff" /><circle
enable-background="new "
cx="491.591"
cy="215.739"
r="4.4000001"
id="circle4591"
style="opacity:0.1;fill:#ffffff" /><circle
enable-background="new "
cx="575.43903"
cy="98.864998"
r="4.401"
id="circle4593"
style="opacity:0.2;fill:#ffffff" /></g><g
enable-background="new "
id="logo_1_"
transform="matrix(3,0,0,3,0,-180)"><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4597"
d="m 565.081,204.377 c -1.024,0.013 0.192,0.526 1.531,0.735 0.369,-0.292 0.702,-0.583 1.002,-0.866 -0.832,0.205 -1.679,0.21 -2.533,0.131" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4599"
d="m 570.574,203.009 c 0.611,-0.845 1.057,-1.764 1.213,-2.715 -0.139,0.676 -0.506,1.264 -0.853,1.883 -1.914,1.205 -0.182,-0.716 -0.002,-1.447 -2.055,2.591 -0.283,1.554 -0.358,2.279" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4601"
d="m 572.604,197.727 c 0.124,-1.842 -0.362,-1.258 -0.525,-0.558 0.192,0.102 0.342,1.301 0.525,0.558" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4603"
d="m 561.196,172.523 c 0.548,0.099 1.182,0.173 1.091,0.304 0.6,-0.132 0.735,-0.251 -1.091,-0.304" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4605"
d="m 562.287,172.825 -0.385,0.083 0.36,-0.034 0.025,-0.049" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4607"
d="m 579.33,198.428 c 0.062,1.657 -0.484,2.459 -0.977,3.883 l -0.885,0.44 c -0.726,1.408 0.07,0.895 -0.448,2.015 -1.132,1.004 -3.431,3.143 -4.165,3.339 -0.537,-0.013 0.361,-0.635 0.48,-0.879 -1.515,1.041 -1.214,1.563 -3.531,2.193 l -0.066,-0.151 c -5.708,2.687 -13.639,-2.636 -13.534,-9.898 -0.059,0.461 -0.173,0.346 -0.298,0.531 -0.297,-3.735 1.725,-7.488 5.13,-9.022 3.334,-1.648 7.241,-0.976 9.626,1.254 -1.311,-1.718 -3.921,-3.538 -7.013,-3.37 -3.029,0.049 -5.864,1.975 -6.81,4.064 -1.552,0.976 -1.733,3.766 -2.409,4.278 -0.911,6.687 1.713,9.576 6.147,12.977 0.696,0.469 0.196,0.541 0.289,0.899 -1.474,-0.688 -2.82,-1.73 -3.933,-3.005 0.59,0.86 1.226,1.698 2.048,2.357 -1.392,-0.472 -3.248,-3.368 -3.787,-3.485 2.395,4.288 9.714,7.521 13.552,5.917 -1.778,0.065 -4.03,0.037 -6.021,-0.701 -0.842,-0.432 -1.978,-1.32 -1.775,-1.488 5.234,1.953 10.637,1.478 15.165,-2.15 1.152,-0.899 2.411,-2.424 2.775,-2.444 -0.549,0.825 0.093,0.395 -0.328,1.122 1.146,-1.851 -0.499,-0.753 1.186,-3.195 l 0.622,0.858 c -0.232,-1.541 1.911,-3.405 1.69,-5.835 0.492,-0.743 0.549,0.802 0.027,2.511 0.723,-1.899 0.193,-2.202 0.376,-3.768 0.201,0.526 0.465,1.085 0.599,1.641 -0.47,-1.834 0.483,-3.086 0.72,-4.152 -0.233,-0.104 -0.728,0.81 -0.84,-1.354 0.014,-0.939 0.263,-0.493 0.355,-0.723 -0.184,-0.107 -0.668,-0.829 -0.961,-2.21 0.211,-0.325 0.569,0.844 0.86,0.889 -0.188,-1.096 -0.51,-1.936 -0.523,-2.78 -0.849,-1.776 -0.3,0.237 -0.987,-0.762 -0.905,-2.819 0.748,-0.655 0.861,-1.935 1.369,1.985 2.15,5.061 2.509,6.336 -0.274,-1.555 -0.716,-3.06 -1.256,-4.517 0.416,0.178 -0.673,-3.194 0.54,-0.961 -1.294,-4.761 -5.535,-9.208 -9.438,-11.293 0.476,0.436 1.08,0.984 0.864,1.07 -1.941,-1.154 -1.602,-1.247 -1.88,-1.733 -1.579,-0.644 -1.685,0.053 -2.729,0.004 -2.98,-1.583 -3.554,-1.416 -6.297,-2.406 l 0.123,0.584 c -1.975,-0.657 -2.301,0.249 -4.438,0.002 -0.126,-0.102 0.688,-0.368 1.355,-0.465 -1.907,0.253 -1.817,-0.375 -3.686,0.071 0.458,-0.324 0.948,-0.538 1.438,-0.813 -1.556,0.096 -3.716,0.906 -3.05,0.168 -2.54,1.132 -7.049,2.722 -9.579,5.097 l -0.079,-0.533 c -1.16,1.393 -5.058,4.157 -5.367,5.961 l -0.311,0.072 c -0.603,1.022 -0.994,2.179 -1.472,3.23 -0.79,1.345 -1.156,0.517 -1.044,0.729 -1.553,3.147 -2.324,5.792 -2.991,7.961 0.476,0.708 0.011,4.271 0.19,7.12 -0.777,14.079 9.88,27.747 21.532,30.9 1.707,0.613 4.246,0.592 6.406,0.65 -2.548,-0.725 -2.877,-0.384 -5.361,-1.25 -1.791,-0.843 -2.182,-1.805 -3.451,-2.907 l 0.501,0.886 c -2.484,-0.879 -1.446,-1.091 -3.47,-1.73 l 0.536,-0.7 c -0.808,-0.061 -2.136,-1.357 -2.498,-2.078 l -0.885,0.037 c -1.057,-1.307 -1.623,-2.252 -1.58,-2.981 l -0.286,0.506 c -0.324,-0.552 -3.899,-4.902 -2.044,-3.891 -0.344,-0.314 -0.804,-0.513 -1.299,-1.415 l 0.376,-0.432 c -0.891,-1.15 -1.644,-2.623 -1.584,-3.112 0.475,0.644 0.806,0.762 1.134,0.873 -2.257,-5.594 -2.382,-0.308 -4.091,-5.696 l 0.362,-0.028 c -0.277,-0.419 -0.445,-0.869 -0.669,-1.314 l 0.16,-1.567 c -1.623,-1.873 -0.454,-7.979 -0.222,-11.327 0.161,-1.361 1.355,-2.811 2.263,-5.083 l -0.553,-0.095 c 1.057,-1.841 6.031,-7.402 8.338,-7.118 1.115,-1.401 -0.224,-0.003 -0.441,-0.355 2.453,-2.536 3.222,-1.794 4.877,-2.251 1.787,-1.058 -1.53,0.416 -0.684,-0.401 3.084,-0.787 2.187,-1.791 6.21,-2.19 0.425,0.239 -0.985,0.371 -1.337,0.684 2.566,-1.259 8.134,-0.97 11.748,0.697 4.191,1.961 8.904,7.753 9.09,13.204 l 0.212,0.058 c -0.104,2.166 0.333,4.672 -0.429,6.973 l 0.52,-1.092" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4609"
d="m 553.904,205.783 -0.146,0.718 c 0.672,0.915 1.208,1.905 2.065,2.619 -0.616,-1.207 -1.075,-1.705 -1.919,-3.337" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4611"
d="m 555.493,205.721 c -0.356,-0.395 -0.565,-0.871 -0.803,-1.342 0.227,0.832 0.688,1.545 1.12,2.27 l -0.317,-0.928" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4613"
d="m 583.648,199.602 -0.149,0.377 c -0.276,1.958 -0.874,3.898 -1.787,5.694 1.009,-1.894 1.658,-3.969 1.936,-6.071" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4615"
d="m 561.4,172.031 c 0.692,-0.252 1.7,-0.137 2.437,-0.304 -0.959,0.08 -1.911,0.126 -2.854,0.247 l 0.417,0.057" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4617"
d="m 537.093,184.958 c 0.159,1.475 -1.109,2.049 0.279,1.075 0.749,-1.681 -0.289,-0.464 -0.279,-1.075" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4619"
d="m 535.457,191.793 c 0.321,-0.984 0.38,-1.575 0.502,-2.146 -0.888,1.134 -0.41,1.376 -0.502,2.146" /></g><rect
style="fill:none"
id="rect4621"
height="103.38"
width="283.23001"
y="1159.6229"
x="32.925018" /><rect
style="fill:none"
id="rect4625"
height="45.999001"
width="272.01001"
y="1214.271"
x="316.15503" /><rect
style="opacity:1;fill:none;fill-opacity:1;stroke:none"
id="rect5142"
width="1920"
height="1080"
x="0"
y="0" /></svg>

After

Width:  |  Height:  |  Size: 19 KiB

+437
View File
@@ -0,0 +1,437 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="root"
x="0px"
y="0px"
width="640px"
height="480px"
viewBox="0 0 640 480"
enable-background="new 0 0 640 480"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="grub-4x3.svg"><metadata
id="metadata4633"><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><defs
id="defs4631" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1007"
id="namedview4629"
showgrid="false"
inkscape:zoom="1.6770833"
inkscape:cx="320"
inkscape:cy="240"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="root" /><g
id="background_1_"><linearGradient
gradientTransform="matrix(1,0,0,-1,102.3398,461.04)"
y2="-19.219999"
x2="217.6601"
y1="459.88571"
x1="217.6602"
gradientUnits="userSpaceOnUse"
id="SVGID_1_"><stop
id="stop4470"
style="stop-color:#133356"
offset="0" /><stop
id="stop4472"
style="stop-color:#7C9999"
offset="0.5025" /><stop
id="stop4474"
style="stop-color:#333333"
offset="1" /></linearGradient><rect
y="0"
x="0"
style="fill:url(#SVGID_1_)"
id="rect4476"
height="480"
width="640" /></g><g
id="Layer_4"><radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.987,0,0,-1.324,103.836,440.0038)"
r="316.2825"
cy="160.7695"
cx="189.6929"
id="SVGID_2_"><stop
id="stop4480"
style="stop-color:#E4C8A5;stop-opacity:0.5"
offset="0" /><stop
id="stop4482"
style="stop-color:#AEAB93;stop-opacity:0.4372"
offset="0.1429" /><stop
id="stop4484"
style="stop-color:#587E77;stop-opacity:0.3331"
offset="0.3797" /><stop
id="stop4486"
style="stop-color:#366C6C;stop-opacity:0.2857"
offset="0.4877" /></radialGradient><rect
y="0"
style="fill:url(#SVGID_2_)"
id="rect4488"
height="480"
width="640"
x="0" /></g><g
id="glows"><radialGradient
id="SVGID_3_"
cx="397.7715"
cy="187.293"
r="93.7251"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4492" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4494" /></radialGradient><circle
opacity="0.2"
fill="url(#SVGID_3_)"
enable-background="new "
cx="500.11"
cy="273.747"
r="93.726"
id="circle4496" /><radialGradient
id="SVGID_4_"
cx="345.7188"
cy="219.5474"
r="74.1868"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4499" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4501" /></radialGradient><circle
opacity="0.2"
fill="url(#SVGID_4_)"
enable-background="new "
cx="448.058"
cy="241.492"
r="74.187"
id="circle4503" /><radialGradient
id="SVGID_5_"
cx="25.498"
cy="232.3037"
r="98.3562"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4506" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4508" /></radialGradient><circle
opacity="0.1"
fill="url(#SVGID_5_)"
enable-background="new "
cx="127.838"
cy="228.736"
r="98.357"
id="circle4510" /><radialGradient
id="SVGID_6_"
cx="88.6074"
cy="168.8442"
r="98.3567"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4513" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4515" /></radialGradient><circle
opacity="0.1"
fill="url(#SVGID_6_)"
enable-background="new "
cx="190.947"
cy="292.196"
r="98.357"
id="circle4517" /><radialGradient
id="SVGID_7_"
cx="161.73"
cy="109.4844"
r="125.8254"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4520" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4522" /></radialGradient><circle
opacity="0.1"
fill="url(#SVGID_7_)"
enable-background="new "
cx="264.07"
cy="351.556"
r="125.825"
id="circle4524" /><radialGradient
id="SVGID_8_"
cx="326.2168"
cy="163.7866"
r="125.8249"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4527" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4529" /></radialGradient><circle
opacity="0.1"
fill="url(#SVGID_8_)"
enable-background="new "
cx="428.556"
cy="297.253"
r="125.825"
id="circle4531" /><radialGradient
id="SVGID_9_"
cx="296.9541"
cy="208.0977"
r="125.8257"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4534" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4536" /></radialGradient><circle
opacity="0.2"
fill="url(#SVGID_9_)"
enable-background="new "
cx="399.294"
cy="252.942"
r="125.825"
id="circle4538" /><radialGradient
id="SVGID_10_"
cx="422.7793"
cy="208.0977"
r="125.8257"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#FFFCDD"
id="stop4541" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4543" /></radialGradient><circle
opacity="0.2"
fill="url(#SVGID_10_)"
enable-background="new "
cx="525.12"
cy="252.942"
r="125.825"
id="circle4545" /><radialGradient
id="SVGID_11_"
cx="385.9121"
cy="119.4766"
r="125.8247"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#99CCCC"
id="stop4548" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4550" /></radialGradient><circle
opacity="0.2"
fill="url(#SVGID_11_)"
enable-background="new "
cx="488.251"
cy="341.563"
r="125.825"
id="circle4552" /></g><g
id="waves"><radialGradient
id="SVGID_12_"
cx="93.7832"
cy="227.4067"
r="236.5008"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4556" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4558" /></radialGradient><path
opacity="0.5"
fill="url(#SVGID_12_)"
enable-background="new "
d="M444.013,65.118c0,0,41.075,47.038,22.503,119.633 C435.122,307.47,340.065,327.083,186.09,292.173c-271.323-61.521-280.702,75.865-278.688,88.621l14.73,21.354 c-2.015-12.756,7.364-150.14,278.688-88.621c153.977,34.911,249.03,15.298,280.426-107.422 C499.818,133.511,444.013,65.118,444.013,65.118"
id="path4560" /><radialGradient
id="SVGID_13_"
cx="156.7368"
cy="122.5254"
r="191.1334"
gradientTransform="matrix(1 0 0 -1 102.3398 461.04)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4563" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4565" /></radialGradient><path
opacity="0.5"
fill="url(#SVGID_13_)"
enable-background="new "
d="M520.333,269.167 c-72.864,45.283-132.583,50.167-243.637,28.719C5.372,236.367-4.006,373.75-1.993,386.508l14.73,21.354 c-2.015-12.756,7.365-150.138,278.687-88.621C407.394,347.774,480.548,309.001,520.333,269.167z"
id="path4567" /></g><g
id="logoWaves"><radialGradient
id="SVGID_14_"
cx="551.0703"
cy="222.4668"
r="68.9657"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4571" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4573" /></radialGradient><path
opacity="0.5"
fill="url(#SVGID_14_)"
enable-background="new "
d="M580.411,149.516c0,0,19.964,9.577,25.602,36.26 c9.528,45.105-16.604,65.391-69.356,76.221c-49.466,5.337-52.263,29.496-49.651,33.42c-2.612-3.923,13.106-21.67,57.514-28.503 c52.751-10.83,78.884-31.119,69.356-76.223C608.238,164.009,580.411,149.516,580.411,149.516"
id="path4575" /><radialGradient
id="SVGID_15_"
cx="-124.3457"
cy="733.2344"
r="204.8933"
gradientTransform="matrix(-0.5695 0.5826 0.5146 0.503 167.7985 -34.3027)"
gradientUnits="userSpaceOnUse"><stop
offset="0"
style="stop-color:#BCCCB3"
id="stop4578" /><stop
offset="1"
style="stop-color:#FEF9C8;stop-opacity:0"
id="stop4580" /></radialGradient><path
opacity="0.5"
fill="url(#SVGID_15_)"
enable-background="new "
d="M545.199,243.096c0,0-17.947,0.101-28.05-17.749 c-17.072-30.175-0.464-54.779,39.376-81.986c70.205-47.939,45.559-76.058,42.652-78.037l-7.309-0.815 c2.909,1.979,27.553,30.097-42.651,78.038c-39.841,27.207-56.447,51.81-39.375,81.984 C519.94,242.381,545.199,243.096,545.199,243.096"
id="path4582" /></g><g
id="rounds"><path
fill="none"
stroke="#FFFFFF"
stroke-width="2"
stroke-miterlimit="10"
d="M234.865,327.371"
id="path4585" /><circle
opacity="0.2"
fill="#FFFFFF"
enable-background="new "
cx="530.477"
cy="130.379"
r="4.401"
id="circle4587" /><circle
opacity="0.1"
fill="#FFFFFF"
enable-background="new "
cx="495.992"
cy="171.428"
r="4.399"
id="circle4589" /><circle
opacity="0.1"
fill="#FFFFFF"
enable-background="new "
cx="491.591"
cy="215.739"
r="4.4"
id="circle4591" /><circle
opacity="0.2"
fill="#FFFFFF"
enable-background="new "
cx="575.439"
cy="98.865"
r="4.401"
id="circle4593" /></g><g
enable-background="new "
id="logo_1_"><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4597"
d="m 565.081,204.377 c -1.024,0.013 0.192,0.526 1.531,0.735 0.369,-0.292 0.702,-0.583 1.002,-0.866 -0.832,0.205 -1.679,0.21 -2.533,0.131" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4599"
d="m 570.574,203.009 c 0.611,-0.845 1.057,-1.764 1.213,-2.715 -0.139,0.676 -0.506,1.264 -0.853,1.883 -1.914,1.205 -0.182,-0.716 -0.002,-1.447 -2.055,2.591 -0.283,1.554 -0.358,2.279" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4601"
d="m 572.604,197.727 c 0.124,-1.842 -0.362,-1.258 -0.525,-0.558 0.192,0.102 0.342,1.301 0.525,0.558" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4603"
d="m 561.196,172.523 c 0.548,0.099 1.182,0.173 1.091,0.304 0.6,-0.132 0.735,-0.251 -1.091,-0.304" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4605"
d="m 562.287,172.825 -0.385,0.083 0.36,-0.034 0.025,-0.049" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4607"
d="m 579.33,198.428 c 0.062,1.657 -0.484,2.459 -0.977,3.883 l -0.885,0.44 c -0.726,1.408 0.07,0.895 -0.448,2.015 -1.132,1.004 -3.431,3.143 -4.165,3.339 -0.537,-0.013 0.361,-0.635 0.48,-0.879 -1.515,1.041 -1.214,1.563 -3.531,2.193 l -0.066,-0.151 c -5.708,2.687 -13.639,-2.636 -13.534,-9.898 -0.059,0.461 -0.173,0.346 -0.298,0.531 -0.297,-3.735 1.725,-7.488 5.13,-9.022 3.334,-1.648 7.241,-0.976 9.626,1.254 -1.311,-1.718 -3.921,-3.538 -7.013,-3.37 -3.029,0.049 -5.864,1.975 -6.81,4.064 -1.552,0.976 -1.733,3.766 -2.409,4.278 -0.911,6.687 1.713,9.576 6.147,12.977 0.696,0.469 0.196,0.541 0.289,0.899 -1.474,-0.688 -2.82,-1.73 -3.933,-3.005 0.59,0.86 1.226,1.698 2.048,2.357 -1.392,-0.472 -3.248,-3.368 -3.787,-3.485 2.395,4.288 9.714,7.521 13.552,5.917 -1.778,0.065 -4.03,0.037 -6.021,-0.701 -0.842,-0.432 -1.978,-1.32 -1.775,-1.488 5.234,1.953 10.637,1.478 15.165,-2.15 1.152,-0.899 2.411,-2.424 2.775,-2.444 -0.549,0.825 0.093,0.395 -0.328,1.122 1.146,-1.851 -0.499,-0.753 1.186,-3.195 l 0.622,0.858 c -0.232,-1.541 1.911,-3.405 1.69,-5.835 0.492,-0.743 0.549,0.802 0.027,2.511 0.723,-1.899 0.193,-2.202 0.376,-3.768 0.201,0.526 0.465,1.085 0.599,1.641 -0.47,-1.834 0.483,-3.086 0.72,-4.152 -0.233,-0.104 -0.728,0.81 -0.84,-1.354 0.014,-0.939 0.263,-0.493 0.355,-0.723 -0.184,-0.107 -0.668,-0.829 -0.961,-2.21 0.211,-0.325 0.569,0.844 0.86,0.889 -0.188,-1.096 -0.51,-1.936 -0.523,-2.78 -0.849,-1.776 -0.3,0.237 -0.987,-0.762 -0.905,-2.819 0.748,-0.655 0.861,-1.935 1.369,1.985 2.15,5.061 2.509,6.336 -0.274,-1.555 -0.716,-3.06 -1.256,-4.517 0.416,0.178 -0.673,-3.194 0.54,-0.961 -1.294,-4.761 -5.535,-9.208 -9.438,-11.293 0.476,0.436 1.08,0.984 0.864,1.07 -1.941,-1.154 -1.602,-1.247 -1.88,-1.733 -1.579,-0.644 -1.685,0.053 -2.729,0.004 -2.98,-1.583 -3.554,-1.416 -6.297,-2.406 l 0.123,0.584 c -1.975,-0.657 -2.301,0.249 -4.438,0.002 -0.126,-0.102 0.688,-0.368 1.355,-0.465 -1.907,0.253 -1.817,-0.375 -3.686,0.071 0.458,-0.324 0.948,-0.538 1.438,-0.813 -1.556,0.096 -3.716,0.906 -3.05,0.168 -2.54,1.132 -7.049,2.722 -9.579,5.097 l -0.079,-0.533 c -1.16,1.393 -5.058,4.157 -5.367,5.961 l -0.311,0.072 c -0.603,1.022 -0.994,2.179 -1.472,3.23 -0.79,1.345 -1.156,0.517 -1.044,0.729 -1.553,3.147 -2.324,5.792 -2.991,7.961 0.476,0.708 0.011,4.271 0.19,7.12 -0.777,14.079 9.88,27.747 21.532,30.9 1.707,0.613 4.246,0.592 6.406,0.65 -2.548,-0.725 -2.877,-0.384 -5.361,-1.25 -1.791,-0.843 -2.182,-1.805 -3.451,-2.907 l 0.501,0.886 c -2.484,-0.879 -1.446,-1.091 -3.47,-1.73 l 0.536,-0.7 c -0.808,-0.061 -2.136,-1.357 -2.498,-2.078 l -0.885,0.037 c -1.057,-1.307 -1.623,-2.252 -1.58,-2.981 l -0.286,0.506 c -0.324,-0.552 -3.899,-4.902 -2.044,-3.891 -0.344,-0.314 -0.804,-0.513 -1.299,-1.415 l 0.376,-0.432 c -0.891,-1.15 -1.644,-2.623 -1.584,-3.112 0.475,0.644 0.806,0.762 1.134,0.873 -2.257,-5.594 -2.382,-0.308 -4.091,-5.696 l 0.362,-0.028 c -0.277,-0.419 -0.445,-0.869 -0.669,-1.314 l 0.16,-1.567 c -1.623,-1.873 -0.454,-7.979 -0.222,-11.327 0.161,-1.361 1.355,-2.811 2.263,-5.083 l -0.553,-0.095 c 1.057,-1.841 6.031,-7.402 8.338,-7.118 1.115,-1.401 -0.224,-0.003 -0.441,-0.355 2.453,-2.536 3.222,-1.794 4.877,-2.251 1.787,-1.058 -1.53,0.416 -0.684,-0.401 3.084,-0.787 2.187,-1.791 6.21,-2.19 0.425,0.239 -0.985,0.371 -1.337,0.684 2.566,-1.259 8.134,-0.97 11.748,0.697 4.191,1.961 8.904,7.753 9.09,13.204 l 0.212,0.058 c -0.104,2.166 0.333,4.672 -0.429,6.973 l 0.52,-1.092" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4609"
d="m 553.904,205.783 -0.146,0.718 c 0.672,0.915 1.208,1.905 2.065,2.619 -0.616,-1.207 -1.075,-1.705 -1.919,-3.337" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4611"
d="m 555.493,205.721 c -0.356,-0.395 -0.565,-0.871 -0.803,-1.342 0.227,0.832 0.688,1.545 1.12,2.27 l -0.317,-0.928" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4613"
d="m 583.648,199.602 -0.149,0.377 c -0.276,1.958 -0.874,3.898 -1.787,5.694 1.009,-1.894 1.658,-3.969 1.936,-6.071" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4615"
d="m 561.4,172.031 c 0.692,-0.252 1.7,-0.137 2.437,-0.304 -0.959,0.08 -1.911,0.126 -2.854,0.247 l 0.417,0.057" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4617"
d="m 537.093,184.958 c 0.159,1.475 -1.109,2.049 0.279,1.075 0.749,-1.681 -0.289,-0.464 -0.279,-1.075" /><path
style="fill:#ffffff"
inkscape:connector-curvature="0"
id="path4619"
d="m 535.457,191.793 c 0.321,-0.984 0.38,-1.575 0.502,-2.146 -0.888,1.134 -0.41,1.376 -0.502,2.146" /></g><rect
style="fill:none"
id="rect4621"
height="34.459999"
width="94.410004"
y="446.54099"
x="10.975" /><rect
style="fill:none"
id="rect4625"
height="15.333"
width="90.669998"
y="464.75699"
x="105.385" /><rect
style="opacity:1;fill:none;fill-opacity:1;stroke:none"
id="rect5142"
width="640"
height="480"
x="0"
y="0" /></svg>

After

Width:  |  Height:  |  Size: 18 KiB