Initial commit

This commit is contained in:
Ward from fusion-voyager-3 2024-07-24 18:24:35 +03:00
parent 08b83877dd
commit e513cfe19b
47 changed files with 1558 additions and 0 deletions

30
desktop-base/Makefile Normal file
View File

@ -0,0 +1,30 @@
PIXMAPS=$(wildcard pixmaps/*.png)
.PHONY: all clean install install-local
all: build-emblems build-logos
clean: clean-emblems clean-logos
.PHONY: build-emblems clean-emblems install-emblems
build-emblems clean-emblems install-emblems:
@target=`echo $@ | sed s/-emblems//`; \
$(MAKE) $$target -C emblems-pika || exit 1;
.PHONY: build-logos clean-logos install-logos
build-logos clean-logos install-logos:
@target=`echo $@ | sed s/-logos//`; \
$(MAKE) $$target -C pika-logos || exit 1;
install: install-emblems install-logos install-local
install-local:
# pika logo in circle as default user face icon
install -d $(DESTDIR)/etc/skel
$(INSTALL_DATA) defaults/common/etc/skel/.face $(DESTDIR)/etc/skel
cd $(DESTDIR)/etc/skel && ln -s .face .face.icon
# pixmaps files
mkdir -p $(DESTDIR)/usr/share/pixmaps
$(INSTALL_DATA) $(PIXMAPS) $(DESTDIR)/usr/share/pixmaps/
include Makefile.inc

View File

@ -0,0 +1,7 @@
INSTALL=install
INSTALL_PROGRAM=$(INSTALL)
# Don't use $(INSTALL) for data as debhelper >= 11 injects
# --strip-program=true which is specific to non-data files
#INSTALL_DATA=$(INSTALL) -m 644
INSTALL_DATA=install -m 644

1
desktop-base/README.md Normal file
View File

@ -0,0 +1 @@
# desktop-base

View File

@ -0,0 +1,5 @@
desktop-base (13.3-101pika1) pika; urgency=medium
* First version of the PikaOS OS desktop-base package
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 06 Jun 2024 00:35:00 +0200

View File

@ -0,0 +1 @@
13

View File

@ -0,0 +1,15 @@
Source: desktop-base
Section: x11
Priority: optional
Maintainer: Ward Nakchbandi <hotrod.master@hotmail.com>
Build-Depends: debhelper (>= 13),
librsvg2-bin,
optipng
Rules-Requires-Root: no
Standards-Version: 4.6.2
Package: desktop-base
Architecture: all
Depends: librsvg2-common,
Description: common files for the Desktops on PikaOS

View File

@ -0,0 +1 @@
License: GPL-3+ or CC-BY-SA-3.0

View File

@ -0,0 +1 @@
desktop-base

View File

@ -0,0 +1,14 @@
# The following folders are created in order to point alternatives to them.
# They filled by update-alternatives in postinst during installation.
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/128x128/emblems/]
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/256x256/emblems/]
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/64x64/emblems/]
desktop-base binary: package-contains-empty-directory [usr/share/icons/vendor/scalable/emblems/]
# We do want the pika user icon in circle logo to be copied for newly created users
desktop-base: package-contains-file-in-etc-skel [etc/skel/.face.icon]
desktop-base: package-contains-file-in-etc-skel [etc/skel/.face]
# to make lintian/ftp-master happy :-/
desktop-base: package-contains-file-in-etc-skel etc/skel/.face.icon
desktop-base: package-contains-file-in-etc-skel etc/skel/.face

View File

@ -0,0 +1,7 @@
# Automatically added by dh_icons/13.6ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if command -v update-icon-caches >/dev/null; then
update-icon-caches /usr/share/icons/desktop-base
fi
fi
# End automatically added section

View File

@ -0,0 +1,5 @@
# Automatically added by dh_icons/13.6ubuntu1
if command -v update-icon-caches >/dev/null; then
update-icon-caches /usr/share/icons/desktop-base
fi
# End automatically added section

View File

@ -0,0 +1,2 @@
misc:Depends=
misc:Pre-Depends=

View File

@ -0,0 +1,2 @@
desktop-base_100.0_all.deb x11 optional
desktop-base_100.0_amd64.buildinfo x11 optional

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,52 @@
#!/bin/sh
set -e
# Tag to allow some debhelper commands to inject relevant code
#DEBHELPER#
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ]; then
# Vendor logo alternative
mkdir -p /usr/share/images/vendor-logo || true
echo "Setting up vendor-logo alternative"
update-alternatives --install \
/usr/share/images/vendor-logos \
vendor-logos \
/usr/share/desktop-base/pika-logos 50 \
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor.png \
emblem-vendor-64 \
/usr/share/icons/desktop-base/64x64/emblems/emblem-pika.png \
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor.png \
emblem-vendor-128 \
/usr/share/icons/desktop-base/128x128/emblems/emblem-pika.png \
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor.png \
emblem-vendor-256 \
/usr/share/icons/desktop-base/256x256/emblems/emblem-pika.png \
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor.svg \
emblem-vendor-scalable \
/usr/share/icons/desktop-base/scalable/emblems/emblem-pika.svg \
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-symbolic.png \
emblem-vendor-symbolic-64 \
/usr/share/icons/desktop-base/64x64/emblems/emblem-pika-symbolic.png \
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-symbolic.png \
emblem-vendor-symbolic-128 \
/usr/share/icons/desktop-base/128x128/emblems/emblem-pika-symbolic.png \
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-symbolic.png \
emblem-vendor-symbolic-256 \
/usr/share/icons/desktop-base/256x256/emblems/emblem-pika-symbolic.png \
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-symbolic.svg \
emblem-vendor-symbolic-scalable \
/usr/share/icons/desktop-base/scalable/emblems/emblem-pika-symbolic.svg \
--slave /usr/share/icons/vendor/64x64/emblems/emblem-vendor-white.png \
emblem-vendor-white-64 \
/usr/share/icons/desktop-base/64x64/emblems/emblem-pika-white.png \
--slave /usr/share/icons/vendor/128x128/emblems/emblem-vendor-white.png \
emblem-vendor-white-128 \
/usr/share/icons/desktop-base/128x128/emblems/emblem-pika-white.png \
--slave /usr/share/icons/vendor/256x256/emblems/emblem-vendor-white.png \
emblem-vendor-white-256 \
/usr/share/icons/desktop-base/256x256/emblems/emblem-pika-white.png \
--slave /usr/share/icons/vendor/scalable/emblems/emblem-vendor-white.svg \
emblem-vendor-white-scalable \
/usr/share/icons/desktop-base/scalable/emblems/emblem-pika-white.svg \
--force
fi

12
desktop-base/debian/prerm Normal file
View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Tag to allow some debhelper commands to inject relevant code
#DEBHELPER#
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
# Remove vendor logos alternative, all slaves get removed automatically
update-alternatives --remove \
vendor-logos \
/usr/share/desktop-base/pika-logos
fi

4
desktop-base/debian/rules Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@

View File

@ -0,0 +1 @@
3.0 (native)

View File

@ -0,0 +1,2 @@
# we ignore ${Misc:Depends} because it would bring gconf and dconf
desktop-base source: debhelper-but-no-misc-depends desktop-base

View File

@ -0,0 +1,2 @@
Tests: validate-xmls-lint, validate-svgs-xmllint
Depends: libxml2-utils

View File

@ -0,0 +1,22 @@
#!/bin/bash
dir_name=$(dirname $0)
. ${dir_name}/xmllint-functions
XML_FILE_PATTERN="*.svg"
XML_LINT_SUMMARY="svgs-xmllint-summary.csv"
if [[ -n ${AUTOPKGTEST_ARTIFACTS} ]] ; then
XML_LINT_SUMMARY="${AUTOPKGTEST_ARTIFACTS}/${XML_LINT_SUMMARY}"
fi
xml_lint_command="lint_xmls ${XML_FILE_PATTERN} ${XML_LINT_SUMMARY}"
echo "$0: running '${xml_lint_command}'..."
${xml_lint_command}
xml_lint_result=$?
echo "$0: '${xml_lint_command}' returned ${xml_lint_result}"
exit ${xml_lint_result}

View File

@ -0,0 +1,22 @@
#!/bin/bash
dir_name=$(dirname $0)
. ${dir_name}/xmllint-functions
XML_FILE_PATTERN="*.xml"
XML_LINT_SUMMARY="xmls-lint-summary.csv"
if [[ -n ${AUTOPKGTEST_ARTIFACTS} ]] ; then
XML_LINT_SUMMARY="${AUTOPKGTEST_ARTIFACTS}/${XML_LINT_SUMMARY}"
fi
xml_lint_command="lint_xmls ${XML_FILE_PATTERN} ${XML_LINT_SUMMARY}"
echo "$0: running '${xml_lint_command}'..."
${xml_lint_command}
xml_lint_result=$?
echo "$0: '${xml_lint_command}' returned ${xml_lint_result}"
exit ${xml_lint_result}

View File

@ -0,0 +1,48 @@
#!/bin/bash
lint_xmls() {
local xml_file_pattern=$1
local xml_lint_summary=$2
if [ "$#" -ne 2 ] ; then
echo "$0: wrong number of arguments."
echo "Expected:"
echo " $0 xml_file_pattern summary_file_name"
return 255
fi
echo "Running xmllint for pattern '${xml_file_pattern}'"
echo "Current directory is '$(pwd)'"
echo "Result will be stored in ${xml_lint_summary}"
echo
echo "file,xmllint_status" > ${xml_lint_summary}
local files_list=$(find . -name "${xml_file_pattern}")
local nb_files=$(echo "${files_list}" | wc -l)
local nb_ok=0
local nb_errors=0
echo "${nb_files} files will be checked"
while IFS= read -d $'\n' -r xml_file ; do
xmllint --noout ${xml_file}
local xmllint_result=$?
echo "${xml_file},${xmllint_result}" >> ${xml_lint_summary}
if [ ${xmllint_result} -eq 0 ] ; then
echo "'${xml_file}' is OK"
((nb_ok++))
else
echo "'${xml_file}' has errors"
((nb_errors++))
fi
done <<< "${files_list}"
echo "Results of xmllint for pattern '${xml_file_pattern}'"
echo " Checked: ${nb_files}"
echo " OK: ${nb_ok}"
echo " Errors: ${nb_errors}"
return ${nb_errors}
}

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 358 358" width="358pt" height="358pt"><defs><clipPath id="_clipPath_IL4AliEVTG4OyvgAHwDFjOIKJcV7p1mm"><rect width="358" height="358"/></clipPath></defs><g clip-path="url(#_clipPath_IL4AliEVTG4OyvgAHwDFjOIKJcV7p1mm)"><circle vector-effect="non-scaling-stroke" cx="179" cy="179" r="179" fill="rgb(251,189,78)"/><path d=" M 142.934 134.566 C 142.613 136.636 142.841 141.436 144.486 148.192 C 128.884 135.405 109.18 135.844 87.464 139.901 C 80.58 141.187 73.761 141.614 67.006 141.183 C 70.479 154.349 74.178 165.094 78.1 173.421 C 85.412 188.943 97.237 199.639 100.701 202.428 C 103.042 204.314 110.814 208.037 123.323 210.232 C 121.928 210.694 120.616 211.189 119.388 211.718 C 100.185 219.98 91.793 238.266 85.902 260.092 C 84.077 266.854 81.506 273.184 78.189 279.084 C 91.56 281.661 102.847 282.987 112.05 283.06 C 129.208 283.198 143.972 277.18 147.988 275.267 C 152.004 273.354 164.793 262.473 175.569 239.924 C 176.852 237.239 178.027 234.372 179.096 231.318 C 184.377 246.352 189.966 257.294 195.862 264.145 C 209.498 279.989 229.459 282.518 252.047 281.6 C 259.043 281.315 265.855 281.871 272.479 283.269 C 270.929 269.741 268.812 258.574 266.126 249.771 C 261.116 233.361 250.951 221.077 247.923 217.82 C 246.08 215.837 240.091 211.747 230.106 208.054 C 235.903 207.464 240.853 206.461 244.953 205.044 C 264.711 198.216 274.425 180.597 281.906 159.263 C 284.223 152.655 287.252 146.53 290.994 140.889 C 277.849 137.337 266.689 135.186 257.517 134.435 C 240.415 133.035 225.25 137.952 221.104 139.565 C 219.356 140.244 215.935 142.399 211.635 146.29 C 215.396 125.953 205.051 108.839 190.43 91.798 C 185.87 86.484 182.086 80.794 179.077 74.731 C 169.419 84.331 161.97 92.913 156.727 100.477 C 146.952 114.579 143.614 130.17 142.934 134.566 Z M 179.324 211.318 C 192.618 211.318 203.394 200.542 203.394 187.249 C 203.394 173.956 192.618 163.18 179.324 163.18 C 166.031 163.18 155.255 173.956 155.255 187.249 C 155.255 200.542 166.031 211.318 179.324 211.318 Z " fill-rule="evenodd" fill="rgb(255,255,255)"/></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=User folders update
TryExec=xdg-user-dirs-update
Exec=xdg-user-dirs-update
StartupNotify=false
NoDisplay=true
X-KDE-autostart-phase=1

View File

@ -0,0 +1,3 @@
[General]
LogoPath=emblem-pika
Version=4

View File

@ -0,0 +1,2 @@
[Branding]
Homepage=https://www.pika-os.com/

View File

@ -0,0 +1,7 @@
## from http://standards.freedesktop.org/menu-spec/latest/
# XDG_CONFIG_DIRS
if [ -z "${XDG_CONFIG_DIRS}" ] ; then
XDG_CONFIG_DIRS=/etc/xdg:/usr/share/desktop-base/kf5-settings
export XDG_CONFIG_DIRS
fi

View File

@ -0,0 +1,2 @@
[General]
only basic indexing=true

View File

@ -0,0 +1,5 @@
[General]
XftAntialias=true
XftHintStyle=hintslight
XftSubPixel=rgb
BrowserApplication=firefox.desktop

View File

@ -0,0 +1,2 @@
[Greeter]
WallpaperPlugin=org.kde.image

View File

@ -0,0 +1,75 @@
TARGET_DIR = usr/share/icons/desktop-base
TARGET_DIR_SCALABLE = $(TARGET_DIR)/scalable/emblems
# Generic folder for alternatives
TARGET_VENDOR = usr/share/icons/vendor
# TODO remove installing to _legacy early in bullseye cycle
TARGET_DIR_LEGACY = usr/share/icons/hicolor
TARGET_DIR_SCALABLE_LEGACY = $(TARGET_DIR_LEGACY)/scalable/emblems
.PHONY: build clean install
EMBLEMS = $(basename $(wildcard *.svg))
$(info Emblems: '$(EMBLEMS)')
# TODO remove installing to _legacy early in bullseye cycle
RESOLUTIONS := 64 128 256
$(info Resolutions: '$(RESOLUTIONS)')
RESOLUTIONS_LEGACY := 16 22 32 36 48 64 128 256
$(info Legacy Resolutions: '$(RESOLUTIONS_LEGACY)')
# The build: target should depend on all PNGs to generate
$(info $(foreach SVG,$(EMBLEMS),$(foreach RES,$(RESOLUTIONS_LEGACY),$(SVG)-$(RES)x$(RES).png)))
build: $(foreach SVG,$(EMBLEMS),$(foreach RES,$(RESOLUTIONS_LEGACY),$(SVG)-$(RES)x$(RES).png))
# Dynamically add rules for PNG generation for each resolution, for each emblem file
define SVG_TO_PNG_RULE
$1-$2x$2.png: $1.svg
rsvg-convert $$< -w $2 -h $2 -o $$@.raw
optipng $$@.raw -out $$@
endef
$(foreach EMBLEM,$(EMBLEMS),$(foreach RES,$(RESOLUTIONS_LEGACY),$(eval $(call SVG_TO_PNG_RULE,$(EMBLEM),$(RES)))))
clean:
rm -f *.png.raw
rm -f *.png
install:
# Generic vendor folders, created empty and will be populated with
# update-alternatives
for RES in $(RESOLUTIONS) ; do \
RES_DIR=$(DESTDIR)/$(TARGET_VENDOR)/$${RES}x$${RES}/emblems ; \
install -d $${RES_DIR} ; \
done
install -d $(DESTDIR)/$(TARGET_VENDOR)/scalable/emblems
# Install PNG icons for each resolution
for RES in $(RESOLUTIONS) ; do \
EMBLEMS_DIR=$(DESTDIR)/$(TARGET_DIR)/$${RES}x$${RES}/emblems ; \
install -d $${EMBLEMS_DIR} ; \
for EMBLEM in $(EMBLEMS) ; do \
PNG_SOURCE=$${EMBLEM}-$${RES}x$${RES}.png ; \
$(INSTALL_DATA) $${PNG_SOURCE} $${EMBLEMS_DIR}/$${EMBLEM}.png ; \
done ; \
done
# TODO remove installing to _legacy early in bullseye cycle
for RES in $(RESOLUTIONS_LEGACY) ; do \
EMBLEMS_DIR=$(DESTDIR)/$(TARGET_DIR_LEGACY)/$${RES}x$${RES}/emblems ; \
install -d $${EMBLEMS_DIR} ; \
for EMBLEM in $(EMBLEMS) ; do \
PNG_SOURCE=$${EMBLEM}-$${RES}x$${RES}.png ; \
$(INSTALL_DATA) $${PNG_SOURCE} $${EMBLEMS_DIR}/$${EMBLEM}.png ; \
$(INSTALL_DATA) $${EMBLEM}.icon $${EMBLEMS_DIR}/ ; \
done ; \
done
# Install SVG emblems in the scalable emblems dir
for EMBLEM in $(EMBLEMS) ; do \
EMBLEMS_DIR=$(DESTDIR)/$(TARGET_DIR_SCALABLE) ; \
install -d $${EMBLEMS_DIR} ; \
$(INSTALL_DATA) $${EMBLEM}.svg $${EMBLEMS_DIR}/ ; \
done
for EMBLEM in $(EMBLEMS) ; do \
EMBLEMS_DIR=$(DESTDIR)/$(TARGET_DIR_SCALABLE_LEGACY) ; \
install -d $${EMBLEMS_DIR} ; \
$(INSTALL_DATA) $${EMBLEM}.svg $${EMBLEMS_DIR}/ ; \
$(INSTALL_DATA) $${EMBLEM}.icon $${EMBLEMS_DIR}/ ; \
done
include ../Makefile.inc

View File

@ -0,0 +1,2 @@
[Icon Data]
DisplayName=PikaOS Symbolic

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
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"
ns2:viewOrigin="262 450"
ns2:rulerOrigin="0 0"
ns2:pageBounds="0 792 612 0"
width="128"
height="128"
viewBox="0 0 128 128"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="emblem-debian-symbolic.svg"
style="overflow:visible"
inkscape:export-filename="/tmp/emblem-debian-white.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"><defs
id="defs35" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="954"
inkscape:window-height="1002"
id="namedview33"
showgrid="false"
inkscape:zoom="2.1762184"
inkscape:cx="79.88908"
inkscape:cy="72.72024"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" /><metadata
id="metadata4"><ns3:variableSets><ns3:variableSet
varSetName="binding1"
locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" /></ns4:sfw><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><g
id="g865"><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path9"
d="m 72.505555,67.0725 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path11"
d="m 82.150555,64.6685 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path13"
d="m 85.710555,55.4045 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path15"
d="m 65.691555,11.1745 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path17"
d="m 67.607555,11.7075 -0.678,0.14 0.631,-0.056 0.047,-0.084"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path19"
d="m 97.511555,56.6315 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 l -0.119,-0.264 c -10.018,4.713 -23.934,-4.627 -23.751,-17.371 -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.347995,-5.97 2.966995,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 -2.26999,-8.352 -9.714995,-16.156 -16.563995,-19.818 0.838,0.767 1.896,1.73 1.516,1.881 -3.406,-2.028 -2.807,-2.186 -3.295,-3.043 -2.775,-1.129 -2.957,0.091 -4.795,0.002 -5.23,-2.774 -6.238,-2.479 -11.051,-4.217 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 c -1.415,-0.107 -3.748,-2.385 -4.386,-3.646 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 l 0.634,-0.051 c -0.486,-0.732 -0.781,-1.527 -1.172,-2.307 l 0.276,-2.75 c -2.849,-3.294 -0.797,-14.006 -0.386,-19.881 0.285,-2.389 2.378,-4.932 3.97,-8.92 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path21"
d="m 52.891555,69.5395 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path23"
d="m 55.683555,69.4295 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path25"
d="m 105.08755,58.6915 -0.26399,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.76999,-3.328 2.915,-6.968 3.39499,-10.656"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path27"
d="m 66.046555,10.3125 c 1.215,-0.445 2.987,-0.244 4.276,-0.537 -1.68,0.141 -3.352,0.225 -5.003,0.438 l 0.727,0.099"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path29"
d="m 23.391555,32.9945 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
ns2:knockout="Off" /><path
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0"
id="path31"
d="m 20.519555,44.9905 c 0.563,-1.728 0.665,-2.766 0.88,-3.766 -1.556,1.989 -0.716,2.413 -0.88,3.766"
ns2:knockout="Off" /></g></svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -0,0 +1,2 @@
[Icon Data]
DisplayName= White

View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
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"
ns2:viewOrigin="262 450"
ns2:rulerOrigin="0 0"
ns2:pageBounds="0 792 612 0"
width="128"
height="128"
viewBox="0 0 128 128"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="emblem-debian-white.svg"
style="overflow:visible"
inkscape:export-filename="/tmp/emblem-debian-white.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"><defs
id="defs35" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="954"
inkscape:window-height="1013"
id="namedview33"
showgrid="false"
inkscape:zoom="2.1762184"
inkscape:cx="64.035892"
inkscape:cy="72.72024"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" /><metadata
id="metadata4"><ns3:variableSets><ns3:variableSet
varSetName="binding1"
locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" /></ns4:sfw><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><g
id="Layer_1"
ns2:layer="yes"
ns2:dimmedPercent="50"
ns2:rgbTrio="#4F008000FFFF"
transform="translate(20.519555,9.7755)"><g
id="g7"><path
ns2:knockout="Off"
d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
id="path9"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
id="path11"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
id="path13"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
id="path15"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
id="path17"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
id="path19"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
id="path21"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
id="path23"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
id="path25"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
id="path27"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
id="path29"
inkscape:connector-curvature="0"
style="fill:#ffffff" /><path
ns2:knockout="Off"
d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
id="path31"
inkscape:connector-curvature="0"
style="fill:#ffffff" /></g></g></svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -0,0 +1,2 @@
[Icon Data]
DisplayName=PikaOS

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"
xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
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"
ns2:viewOrigin="262 450"
ns2:rulerOrigin="0 0"
ns2:pageBounds="0 792 612 0"
width="128"
height="128"
viewBox="0 0 128 128"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="emblem-debian.svg"
style="overflow:visible"
inkscape:export-filename="/tmp/emblem-debian.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"><defs
id="defs35" /><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="1008"
id="namedview33"
showgrid="false"
inkscape:zoom="8.7048736"
inkscape:cx="50.853219"
inkscape:cy="66.736687"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" /><metadata
id="metadata4"><ns3:variableSets><ns3:variableSet
varSetName="binding1"
locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" /></ns4:sfw><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><g
id="g865"><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path9"
d="m 72.505555,67.0725 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path11"
d="m 82.150555,64.6685 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path13"
d="m 85.710555,55.4045 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path15"
d="m 65.691555,11.1745 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path17"
d="m 67.607555,11.7075 -0.678,0.14 0.631,-0.056 0.047,-0.084"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path19"
d="m 97.511555,56.6315 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 l -0.119,-0.264 c -10.018,4.713 -23.934,-4.627 -23.751,-17.371 -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.347995,-5.97 2.966995,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 -2.26999,-8.352 -9.714995,-16.156 -16.563995,-19.818 0.838,0.767 1.896,1.73 1.516,1.881 -3.406,-2.028 -2.807,-2.186 -3.295,-3.043 -2.775,-1.129 -2.957,0.091 -4.795,0.002 -5.23,-2.774 -6.238,-2.479 -11.051,-4.217 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 c -1.415,-0.107 -3.748,-2.385 -4.386,-3.646 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 l 0.634,-0.051 c -0.486,-0.732 -0.781,-1.527 -1.172,-2.307 l 0.276,-2.75 c -2.849,-3.294 -0.797,-14.006 -0.386,-19.881 0.285,-2.389 2.378,-4.932 3.97,-8.92 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path21"
d="m 52.891555,69.5395 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path23"
d="m 55.683555,69.4295 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path25"
d="m 105.08755,58.6915 -0.26399,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.76999,-3.328 2.915,-6.968 3.39499,-10.656"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path27"
d="m 66.046555,10.3125 c 1.215,-0.445 2.987,-0.244 4.276,-0.537 -1.68,0.141 -3.352,0.225 -5.003,0.438 l 0.727,0.099"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path29"
d="m 23.391555,32.9945 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
ns2:knockout="Off" /><path
style="fill:#a80030;fill-opacity:1"
inkscape:connector-curvature="0"
id="path31"
d="m 20.519555,44.9905 c 0.563,-1.728 0.665,-2.766 0.88,-3.766 -1.556,1.989 -0.716,2.413 -0.88,3.766"
ns2:knockout="Off" /></g></svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
desktop-base/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,31 @@
dir = usr/share/desktop-base/pika-logos
.PHONY: build clean install
LOGOS = $(basename $(wildcard *.svg))
$(info Logos: '$(LOGOS)')
RESOLUTIONS := 64 128 256
$(info Resolutions: '$(RESOLUTIONS)')
# The build: target should depend on all PNGs to generate
$(info $(foreach SVG,$(LOGOS),$(foreach RES,$(RESOLUTIONS),$(SVG)-$(RES).png)))
build: $(foreach SVG,$(LOGOS),$(foreach RES,$(RESOLUTIONS),$(SVG)-$(RES).png))
# Dynamically add rules for PNG generation for each resolution, for each logo file
define SVG_TO_PNG_RULE
$1-$2.png: $1.svg
rsvg-convert $$< -h $2 -o $$@.raw
optipng $$@.raw -out $$@
endef
$(foreach LOGO,$(LOGOS),$(foreach RES,$(RESOLUTIONS),$(eval $(call SVG_TO_PNG_RULE,$(LOGO),$(RES)))))
clean:
rm -f *.png.raw
rm -f *.png
install:
install -d $(DESTDIR)/$(dir)
$(INSTALL_DATA) $(wildcard *.svg) $(DESTDIR)/$(dir)
$(INSTALL_DATA) $(wildcard *.png) $(DESTDIR)/$(dir)
include ../Makefile.inc

View File

@ -0,0 +1,203 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="80"
height="26"
viewBox="0 0 21.166667 6.8791668"
version="1.1"
id="svg908"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="logo-text-version.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
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"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview910"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="5.9864116"
inkscape:cx="12.194283"
inkscape:cy="12.862463"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs905">
<clipPath
id="SVGID_00000065040548837432246740000015681463041764845981_">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use237" />
</clipPath>
<rect
id="SVGID_00000105414853600283290720000017360153226701225652_"
y="0"
width="640"
height="483.70001"
x="0" />
</defs>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g292"
transform="matrix(0.26458439,0,0,0.26458333,-3.1190053,-118.71854)">
<defs
id="defs235">
<rect
id="rect1106"
y="0"
width="640"
height="483.70001"
x="0" />
</defs>
<clipPath
id="clipPath762">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use760" />
</clipPath>
<g
clip-path="url(#SVGID_00000065040548837432246740000015681463041764845981_)"
id="g290">
<g
class="st25"
id="g264"
style="opacity:0.71">
<path
class="st26"
d="m 19.4,463.3 c -0.2,0 0,0.1 0.3,0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 -0.1,0 -0.3,0 -0.5,0"
id="path240"
style="fill:#ffffff" />
<path
class="st26"
d="m 20.6,463 c 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,0.1 -0.1,0.3 -0.2,0.4 -0.4,0.3 0,-0.2 0,-0.3 -0.5,0.6 -0.1,0.3 -0.1,0.5"
id="path242"
style="fill:#ffffff" />
<path
class="st26"
d="m 21,461.8 c 0,-0.4 -0.1,-0.3 -0.1,-0.1 0.1,0 0.1,0.3 0.1,0.1"
id="path244"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.5,456.3 c 0.1,0 0.3,0 0.2,0.1 0.2,-0.1 0.2,-0.1 -0.2,-0.1"
id="path246"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.8,456.4 v 0 0 0"
id="path248"
style="fill:#ffffff" />
<path
class="st26"
d="m 22.5,462 c 0,0.4 -0.1,0.5 -0.2,0.9 l -0.2,0.1 c -0.2,0.3 0,0.2 -0.1,0.4 -0.2,0.2 -0.8,0.7 -0.9,0.7 -0.1,0 0.1,-0.1 0.1,-0.2 -0.3,0.2 -0.3,0.3 -0.8,0.5 v 0 c -1.3,0.6 -3,-0.6 -3,-2.2 0,0.1 0,0.1 -0.1,0.1 -0.1,-0.8 0.4,-1.6 1.1,-2 0.7,-0.4 1.6,-0.2 2.1,0.3 -0.3,-0.4 -0.9,-0.8 -1.5,-0.7 -0.7,0 -1.3,0.4 -1.5,0.9 -0.3,0.2 -0.4,0.8 -0.5,0.9 -0.2,1.5 0.4,2.1 1.3,2.8 0.2,0.1 0,0.1 0.1,0.2 -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 0.1,0.2 0.3,0.4 0.4,0.5 -0.3,-0.1 -0.7,-0.7 -0.8,-0.8 0.5,0.9 2.1,1.6 3,1.3 -0.4,0 -0.9,0 -1.3,-0.2 -0.2,-0.1 -0.4,-0.3 -0.4,-0.3 1.1,0.4 2.3,0.3 3.3,-0.5 0.3,-0.2 0.5,-0.5 0.6,-0.5 -0.1,0.2 0,0.1 -0.1,0.2 0.3,-0.4 -0.1,-0.2 0.3,-0.7 l 0.1,0.2 c -0.1,-0.3 0.4,-0.7 0.4,-1.3 0.1,-0.2 0.1,0.2 0,0.6 0.2,-0.4 0,-0.5 0.1,-0.8 0,0.1 0.1,0.2 0.1,0.4 -0.1,-0.4 0.1,-0.7 0.2,-0.9 -0.1,0 -0.2,0.2 -0.2,-0.3 0,-0.2 0.1,-0.1 0.1,-0.2 0,0 -0.1,-0.2 -0.2,-0.5 0,-0.1 0.1,0.2 0.2,0.2 0,-0.2 -0.1,-0.4 -0.1,-0.6 -0.2,-0.4 -0.1,0.1 -0.2,-0.2 -0.2,-0.6 0.2,-0.1 0.2,-0.4 0.3,0.4 0.5,1.1 0.6,1.4 -0.1,-0.3 -0.2,-0.7 -0.3,-1 0.1,0 -0.1,-0.7 0.1,-0.2 -0.3,-1 -1.2,-2 -2.1,-2.5 0.1,0.1 0.2,0.2 0.2,0.2 -0.4,-0.3 -0.4,-0.3 -0.4,-0.4 -0.3,-0.1 -0.4,0 -0.6,0 -0.7,-0.3 -0.8,-0.3 -1.4,-0.5 v 0.1 c -0.4,-0.1 -0.5,0.1 -1,0 0,0 0.1,-0.1 0.3,-0.1 -0.4,0.1 -0.4,-0.1 -0.8,0 0.1,-0.1 0.2,-0.1 0.3,-0.2 -0.3,0 -0.8,0.2 -0.7,0 -0.6,0.2 -1.5,0.6 -2.1,1.1 V 457 c -0.3,0.3 -1.1,0.9 -1.2,1.3 H 14 c -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.2,0.3 -0.3,0.1 -0.2,0.2 -0.3,0.7 -0.5,1.3 -0.7,1.7 0.1,0.2 0,0.9 0,1.6 -0.2,3.1 2.2,6.1 4.7,6.8 0.4,0.1 0.9,0.1 1.4,0.1 -0.6,-0.2 -0.6,-0.1 -1.2,-0.3 -0.4,-0.2 -0.5,-0.4 -0.8,-0.6 l 0.1,0.2 c -0.5,-0.2 -0.3,-0.2 -0.8,-0.4 l 0.1,-0.2 c -0.2,0 -0.5,-0.3 -0.5,-0.5 h -0.2 c -0.2,-0.3 -0.4,-0.5 -0.3,-0.7 l -0.1,0.1 c -0.1,-0.1 -0.9,-1.1 -0.4,-0.9 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 l 0.1,-0.1 c -0.2,-0.3 -0.4,-0.6 -0.3,-0.7 0.1,0.1 0.2,0.2 0.2,0.2 C 14,464 14,465.1 13.6,464 h 0.1 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.4,-0.4 -0.1,-1.8 0,-2.5 0,-0.3 0.3,-0.6 0.5,-1.1 H 14 c 0.2,-0.4 1.3,-1.6 1.8,-1.6 0.2,-0.3 0,0 -0.1,-0.1 0.5,-0.6 0.7,-0.4 1.1,-0.5 0.4,-0.2 -0.3,0.1 -0.2,-0.1 0.7,-0.2 0.5,-0.4 1.4,-0.5 0.1,0.1 -0.2,0.1 -0.3,0.2 0.6,-0.3 1.8,-0.2 2.6,0.2 0.9,0.4 2,1.7 2,2.9 v 0 c 0,0.5 0.1,1 -0.1,1.5 l 0.3,0.2"
id="path250"
style="fill:#ffffff" />
<path
class="st26"
d="m 16.9,463.6 v 0.2 c 0.1,0.2 0.3,0.4 0.5,0.6 -0.2,-0.3 -0.3,-0.4 -0.5,-0.8"
id="path252"
style="fill:#ffffff" />
<path
class="st26"
d="m 17.3,463.6 c -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,0.2 0.2,0.3 0.2,0.5 v -0.2"
id="path254"
style="fill:#ffffff" />
<path
class="st26"
d="m 23.5,462.2 v 0 c -0.1,0.5 -0.2,0.9 -0.4,1.3 0.1,-0.3 0.3,-0.8 0.4,-1.3"
id="path256"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.6,456.2 c 0.2,-0.1 0.4,0 0.5,-0.1 -0.2,0 -0.4,0.1 -0.5,0.1 v 0"
id="path258"
style="fill:#ffffff" />
<path
class="st26"
d="m 13.2,459 c 0,0.3 -0.2,0.4 0.1,0.2 0.2,-0.3 -0.1,0 -0.1,-0.2"
id="path260"
style="fill:#ffffff" />
<path
class="st26"
d="m 12.9,460.5 c 0.1,-0.2 0.1,-0.3 0.1,-0.5 -0.2,0.3 -0.1,0.4 -0.1,0.5"
id="path262"
style="fill:#ffffff" />
</g>
<g
id="g288">
<g
class="st25"
id="g280"
style="opacity:0.71">
<path
class="st26"
d="m 35.1,461.3 c 0,0 0,2.7 0,3.4 0,0.6 -0.1,1.8 -1.3,1.8 -1.2,0 -1.5,-1.4 -1.6,-2 -0.1,-0.7 -0.1,-1.3 -0.1,-1.5 0,-0.8 0,-3 1.9,-3 0.6,0 0.9,0.2 1.1,0.3 z m -4.8,2 c 0,4.7 2.5,4.7 2.9,4.7 1,0 1.7,-0.6 2,-1.6 v 1.5 c 0.3,0 0.6,0 1.2,0 0.2,0 0.3,0 0.5,0 0.1,0 0.3,0 0.4,0 -0.3,-0.5 -0.5,-1.7 -0.5,-4.4 0,-2.5 0,-6.9 0.2,-8.2 -0.6,0.3 -1.1,0.5 -2.3,0.6 0.5,0.5 0.5,0.7 0.5,3 -0.3,-0.1 -0.7,-0.2 -1.4,-0.2 -3,0.1 -3.5,2.7 -3.5,4.6"
id="path266"
style="fill:#ffffff" />
<path
class="st26"
d="m 39.4,462.5 c 0,-1.4 0.3,-2.6 1.5,-2.6 1.3,0 1.4,1.4 1.4,2.6 z m 4.5,0.1 c 0,-2 -0.4,-3.9 -2.9,-3.9 -3.4,0 -3.4,3.8 -3.4,4.6 0,3.4 1.5,4.7 4.1,4.7 1.1,0 1.7,-0.2 2,-0.2 0,-0.6 0.1,-1 0.2,-1.5 -0.4,0.2 -0.8,0.5 -1.8,0.5 -2.6,0 -2.6,-2.4 -2.6,-3.2 H 44 l -0.1,-1"
id="path268"
style="fill:#ffffff" />
<path
class="st26"
d="m 49.3,463.3 c 0,1.6 -0.3,3.7 -2.2,3.7 -0.3,0 -0.6,0 -0.8,-0.1 0,-0.6 0,-1.6 0,-2.8 0,-1.4 0.2,-2.2 0.3,-2.6 0.4,-1.2 1.1,-1.2 1.3,-1.2 1.2,0 1.4,1.7 1.4,3 z m -4.8,1.9 c 0,1.2 0,1.9 -0.2,2.5 0.7,0.3 1.5,0.4 2.6,0.4 0.7,0 2.5,0 3.6,-2.1 0.5,-1 0.7,-2.3 0.7,-3.3 0,-0.6 -0.1,-1.9 -0.6,-2.8 -0.5,-0.8 -1.2,-1.2 -2,-1.2 -1.6,0 -2.1,1.3 -2.3,2 0,-0.9 0,-3.8 0.2,-5.4 -1.1,0.5 -1.8,0.6 -2.5,0.7 0.7,0.3 0.7,1.4 0.7,5 l -0.2,4.2"
id="path270"
style="fill:#ffffff" />
<path
class="st26"
d="m 54.3,468 c -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.5,0 -0.9,0 -1.3,0.1 0.2,-0.3 0.2,-0.5 0.3,-1.6 0.1,-1.5 0.1,-5.5 0,-6.3 -0.1,-0.6 -0.2,-0.7 -0.5,-0.9 1.4,-0.1 1.8,-0.2 2.4,-0.5 -0.1,0.7 -0.2,1.1 -0.2,2.2 0.1,5.8 0.1,6.4 0.4,7.1"
id="path272"
style="fill:#ffffff" />
<path
class="st26"
d="m 59.7,463.2 c 0,1.1 0,1.8 -0.3,2.4 -0.4,0.7 -0.9,1 -1.4,1 -1,0 -1.2,-0.8 -1.2,-1.7 0,-1.6 1.4,-1.7 2,-1.7 z m -4.6,2.1 c 0,1.1 0.3,2.1 1.3,2.6 0.4,0.2 0.8,0.2 1,0.2 1.5,0 2.1,-1.1 2.4,-1.9 0,0.7 0,1.2 0,1.8 0.3,0 0.6,0 1.1,0 0.3,0 0.6,0 0.8,0 -0.2,-0.3 -0.3,-0.5 -0.3,-1.1 0,-0.6 0,-1.3 0,-2.2 v -3.4 c 0,-1.3 -0.3,-2.5 -2.8,-2.5 -1.7,0 -2.6,0.5 -3.1,0.7 0.2,0.4 0.4,0.7 0.5,1.4 0.7,-0.6 1.5,-0.9 2.4,-0.9 1.4,0 1.4,0.9 1.4,2.2 -0.3,0 -0.6,0 -1,0 -2.3,0 -3.7,0.8 -3.7,3.1"
id="path274"
style="fill:#ffffff" />
<path
class="st26"
d="m 69.4,466.3 c 0,0.6 0,1.2 0.2,1.7 -0.4,0 -0.6,-0.1 -1.3,-0.1 -0.4,0 -0.6,0 -0.9,0.1 0.1,-0.2 0.1,-0.3 0.1,-0.6 0,-0.4 0.1,-1.7 0.1,-2.1 v -1.8 c 0,-0.8 0,-1.9 0,-2.3 0,-0.3 -0.1,-1.1 -1.1,-1.1 -0.9,0 -1.3,0.7 -1.4,1.3 -0.1,0.6 -0.1,1.2 -0.1,3.7 0,2.1 0,2.3 0.2,2.9 -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.4,0 -0.7,0 -1,0.1 0.1,-0.3 0.2,-0.4 0.2,-1.3 0,-0.9 0.1,-5.4 0,-6.5 -0.1,-0.7 -0.2,-0.8 -0.4,-1 1.4,-0.1 1.8,-0.3 2.2,-0.5 v 1.8 c 0.2,-0.5 0.6,-1.7 2.3,-1.7 2.1,0 2.1,1.5 2.1,2.5 l -0.1,5"
id="path276"
style="fill:#ffffff" />
<path
class="st26"
d="m 54.5,456.3 -1.4,1.4 -1.4,-1.4 1.4,-1.4 1.4,1.4"
id="path278"
style="fill:#ffffff" />
</g>
<g
id="g286">
<path
class="st26"
d="m 80.3,462.5 c 0,1.8 0,2.9 0.1,3.8 0.1,1.2 0.2,1.4 0.3,1.7 -0.5,-0.1 -1,-0.1 -1.4,-0.1 -0.5,0 -0.8,0 -1.2,0.1 0.2,-0.5 0.3,-0.7 0.3,-1.7 0,-0.7 0.1,-1.6 0.1,-3.8 v -2.1 c -0.1,-2.8 -0.1,-3 -0.1,-3.6 -0.8,0.3 -1.6,0.6 -2.4,1.1 0,-0.2 0,-0.4 0.1,-0.6 0,-0.3 0,-0.6 -0.1,-0.8 0.9,-0.2 2.9,-0.8 4.4,-1.8 -0.1,1.4 -0.1,2.4 -0.1,5.2 0,0 0,2.6 0,2.6 z"
id="path282"
style="fill:#ffffff" />
<path
class="st26"
d="m 88.1,466.2 c 2.5,0 2.8,0 3.5,-0.5 -0.1,0.4 -0.1,0.8 -0.1,1.4 0,0.5 0,0.7 0.1,1 -1.2,-0.1 -2.3,-0.1 -3.5,-0.1 -1.8,0 -3.4,0 -4,0.1 0,-0.2 0.1,-0.5 0.1,-0.9 0,-0.4 0,-0.7 -0.1,-0.9 0.6,-0.5 1.1,-0.9 2.2,-2.1 2.2,-2.3 3.1,-3.8 3.1,-5.3 0,-1.4 -1,-2.3 -2.5,-2.3 -0.8,0 -1.6,0.2 -2.2,0.6 0,-0.4 0.1,-0.8 0.1,-1.1 0,-0.3 0,-0.6 0,-0.7 0.9,-0.3 1.8,-0.5 2.8,-0.5 2.6,0 3.9,1.3 3.9,3.3 0,1.6 -0.9,2.9 -1.4,3.7 -0.7,1 -2,2.5 -4,4.3 z"
id="path284"
style="fill:#ffffff" />
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,226 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="56.811687"
height="24"
viewBox="0 0 15.031425 6.35"
version="1.1"
id="svg908"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="logo-text.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
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"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview910"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="5.9864116"
inkscape:cx="18.45847"
inkscape:cy="12.528373"
inkscape:window-width="1920"
inkscape:window-height="1023"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs905">
<rect
id="SVGID_00000105414853600283290720000017360153226701225652_"
y="0"
width="640"
height="483.70001"
x="0" />
<defs
id="defs235">
<rect
id="rect1106"
y="0"
width="640"
height="483.70001"
x="0" />
</defs>
<clipPath
id="clipPath762">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use760" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1373">
<g
id="g1377"
transform="matrix(3.7795276,0,0,3.7795276,12.788315,454.7)">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use1375"
transform="matrix(0.26458333,0,0,0.26458333,-3.383575,-120.30604)" />
</g>
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1396">
<g
id="g1402"
transform="matrix(3.7795276,0,0,3.7795276,12.788315,454.7)">
<g
id="g1400">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use1398"
transform="matrix(0.26458333,0,0,0.26458333,-3.383575,-120.30604)" />
</g>
</g>
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1404">
<g
id="g1410"
transform="matrix(3.7795276,0,0,3.7795276,12.788315,454.7)">
<g
id="g1408">
<use
xlink:href="#SVGID_00000105414853600283290720000017360153226701225652_"
style="overflow:visible"
id="use1406"
transform="matrix(0.26458333,0,0,0.26458333,-3.383575,-120.30604)" />
</g>
</g>
</clipPath>
</defs>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-2.104408e-8,-0.05291682)">
<g
id="g1433"
transform="translate(0,1.3229167)">
<g
class="st25"
id="g264"
style="opacity:0.71"
transform="matrix(0.26458333,0,0,0.26458333,-3.383575,-120.30604)"
clip-path="url(#clipPath1373)">
<path
class="st26"
d="m 19.4,463.3 c -0.2,0 0,0.1 0.3,0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 -0.1,0 -0.3,0 -0.5,0"
id="path240"
style="fill:#ffffff" />
<path
class="st26"
d="m 20.6,463 c 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,0.1 -0.1,0.3 -0.2,0.4 -0.4,0.3 0,-0.2 0,-0.3 -0.5,0.6 -0.1,0.3 -0.1,0.5"
id="path242"
style="fill:#ffffff" />
<path
class="st26"
d="m 21,461.8 c 0,-0.4 -0.1,-0.3 -0.1,-0.1 0.1,0 0.1,0.3 0.1,0.1"
id="path244"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.5,456.3 c 0.1,0 0.3,0 0.2,0.1 0.2,-0.1 0.2,-0.1 -0.2,-0.1"
id="path246"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.8,456.4 v 0 0 0"
id="path248"
style="fill:#ffffff" />
<path
class="st26"
d="m 22.5,462 c 0,0.4 -0.1,0.5 -0.2,0.9 l -0.2,0.1 c -0.2,0.3 0,0.2 -0.1,0.4 -0.2,0.2 -0.8,0.7 -0.9,0.7 -0.1,0 0.1,-0.1 0.1,-0.2 -0.3,0.2 -0.3,0.3 -0.8,0.5 v 0 c -1.3,0.6 -3,-0.6 -3,-2.2 0,0.1 0,0.1 -0.1,0.1 -0.1,-0.8 0.4,-1.6 1.1,-2 0.7,-0.4 1.6,-0.2 2.1,0.3 -0.3,-0.4 -0.9,-0.8 -1.5,-0.7 -0.7,0 -1.3,0.4 -1.5,0.9 -0.3,0.2 -0.4,0.8 -0.5,0.9 -0.2,1.5 0.4,2.1 1.3,2.8 0.2,0.1 0,0.1 0.1,0.2 -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 0.1,0.2 0.3,0.4 0.4,0.5 -0.3,-0.1 -0.7,-0.7 -0.8,-0.8 0.5,0.9 2.1,1.6 3,1.3 -0.4,0 -0.9,0 -1.3,-0.2 -0.2,-0.1 -0.4,-0.3 -0.4,-0.3 1.1,0.4 2.3,0.3 3.3,-0.5 0.3,-0.2 0.5,-0.5 0.6,-0.5 -0.1,0.2 0,0.1 -0.1,0.2 0.3,-0.4 -0.1,-0.2 0.3,-0.7 l 0.1,0.2 c -0.1,-0.3 0.4,-0.7 0.4,-1.3 0.1,-0.2 0.1,0.2 0,0.6 0.2,-0.4 0,-0.5 0.1,-0.8 0,0.1 0.1,0.2 0.1,0.4 -0.1,-0.4 0.1,-0.7 0.2,-0.9 -0.1,0 -0.2,0.2 -0.2,-0.3 0,-0.2 0.1,-0.1 0.1,-0.2 0,0 -0.1,-0.2 -0.2,-0.5 0,-0.1 0.1,0.2 0.2,0.2 0,-0.2 -0.1,-0.4 -0.1,-0.6 -0.2,-0.4 -0.1,0.1 -0.2,-0.2 -0.2,-0.6 0.2,-0.1 0.2,-0.4 0.3,0.4 0.5,1.1 0.6,1.4 -0.1,-0.3 -0.2,-0.7 -0.3,-1 0.1,0 -0.1,-0.7 0.1,-0.2 -0.3,-1 -1.2,-2 -2.1,-2.5 0.1,0.1 0.2,0.2 0.2,0.2 -0.4,-0.3 -0.4,-0.3 -0.4,-0.4 -0.3,-0.1 -0.4,0 -0.6,0 -0.7,-0.3 -0.8,-0.3 -1.4,-0.5 v 0.1 c -0.4,-0.1 -0.5,0.1 -1,0 0,0 0.1,-0.1 0.3,-0.1 -0.4,0.1 -0.4,-0.1 -0.8,0 0.1,-0.1 0.2,-0.1 0.3,-0.2 -0.3,0 -0.8,0.2 -0.7,0 -0.6,0.2 -1.5,0.6 -2.1,1.1 V 457 c -0.3,0.3 -1.1,0.9 -1.2,1.3 H 14 c -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.2,0.3 -0.3,0.1 -0.2,0.2 -0.3,0.7 -0.5,1.3 -0.7,1.7 0.1,0.2 0,0.9 0,1.6 -0.2,3.1 2.2,6.1 4.7,6.8 0.4,0.1 0.9,0.1 1.4,0.1 -0.6,-0.2 -0.6,-0.1 -1.2,-0.3 -0.4,-0.2 -0.5,-0.4 -0.8,-0.6 l 0.1,0.2 c -0.5,-0.2 -0.3,-0.2 -0.8,-0.4 l 0.1,-0.2 c -0.2,0 -0.5,-0.3 -0.5,-0.5 h -0.2 c -0.2,-0.3 -0.4,-0.5 -0.3,-0.7 l -0.1,0.1 c -0.1,-0.1 -0.9,-1.1 -0.4,-0.9 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 l 0.1,-0.1 c -0.2,-0.3 -0.4,-0.6 -0.3,-0.7 0.1,0.1 0.2,0.2 0.2,0.2 C 14,464 14,465.1 13.6,464 h 0.1 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.4,-0.4 -0.1,-1.8 0,-2.5 0,-0.3 0.3,-0.6 0.5,-1.1 H 14 c 0.2,-0.4 1.3,-1.6 1.8,-1.6 0.2,-0.3 0,0 -0.1,-0.1 0.5,-0.6 0.7,-0.4 1.1,-0.5 0.4,-0.2 -0.3,0.1 -0.2,-0.1 0.7,-0.2 0.5,-0.4 1.4,-0.5 0.1,0.1 -0.2,0.1 -0.3,0.2 0.6,-0.3 1.8,-0.2 2.6,0.2 0.9,0.4 2,1.7 2,2.9 v 0 c 0,0.5 0.1,1 -0.1,1.5 l 0.3,0.2"
id="path250"
style="fill:#ffffff" />
<path
class="st26"
d="m 16.9,463.6 v 0.2 c 0.1,0.2 0.3,0.4 0.5,0.6 -0.2,-0.3 -0.3,-0.4 -0.5,-0.8"
id="path252"
style="fill:#ffffff" />
<path
class="st26"
d="m 17.3,463.6 c -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,0.2 0.2,0.3 0.2,0.5 v -0.2"
id="path254"
style="fill:#ffffff" />
<path
class="st26"
d="m 23.5,462.2 v 0 c -0.1,0.5 -0.2,0.9 -0.4,1.3 0.1,-0.3 0.3,-0.8 0.4,-1.3"
id="path256"
style="fill:#ffffff" />
<path
class="st26"
d="m 18.6,456.2 c 0.2,-0.1 0.4,0 0.5,-0.1 -0.2,0 -0.4,0.1 -0.5,0.1 v 0"
id="path258"
style="fill:#ffffff" />
<path
class="st26"
d="m 13.2,459 c 0,0.3 -0.2,0.4 0.1,0.2 0.2,-0.3 -0.1,0 -0.1,-0.2"
id="path260"
style="fill:#ffffff" />
<path
class="st26"
d="m 12.9,460.5 c 0.1,-0.2 0.1,-0.3 0.1,-0.5 -0.2,0.3 -0.1,0.4 -0.1,0.5"
id="path262"
style="fill:#ffffff" />
</g>
<g
class="st25"
id="g280"
style="opacity:0.71"
transform="matrix(0.26458333,0,0,0.26458333,-3.383575,-120.30604)"
clip-path="url(#clipPath1404)">
<path
class="st26"
d="m 35.1,461.3 c 0,0 0,2.7 0,3.4 0,0.6 -0.1,1.8 -1.3,1.8 -1.2,0 -1.5,-1.4 -1.6,-2 -0.1,-0.7 -0.1,-1.3 -0.1,-1.5 0,-0.8 0,-3 1.9,-3 0.6,0 0.9,0.2 1.1,0.3 z m -4.8,2 c 0,4.7 2.5,4.7 2.9,4.7 1,0 1.7,-0.6 2,-1.6 v 1.5 c 0.3,0 0.6,0 1.2,0 0.2,0 0.3,0 0.5,0 0.1,0 0.3,0 0.4,0 -0.3,-0.5 -0.5,-1.7 -0.5,-4.4 0,-2.5 0,-6.9 0.2,-8.2 -0.6,0.3 -1.1,0.5 -2.3,0.6 0.5,0.5 0.5,0.7 0.5,3 -0.3,-0.1 -0.7,-0.2 -1.4,-0.2 -3,0.1 -3.5,2.7 -3.5,4.6"
id="path266"
style="fill:#ffffff" />
<path
class="st26"
d="m 39.4,462.5 c 0,-1.4 0.3,-2.6 1.5,-2.6 1.3,0 1.4,1.4 1.4,2.6 z m 4.5,0.1 c 0,-2 -0.4,-3.9 -2.9,-3.9 -3.4,0 -3.4,3.8 -3.4,4.6 0,3.4 1.5,4.7 4.1,4.7 1.1,0 1.7,-0.2 2,-0.2 0,-0.6 0.1,-1 0.2,-1.5 -0.4,0.2 -0.8,0.5 -1.8,0.5 -2.6,0 -2.6,-2.4 -2.6,-3.2 H 44 l -0.1,-1"
id="path268"
style="fill:#ffffff" />
<path
class="st26"
d="m 49.3,463.3 c 0,1.6 -0.3,3.7 -2.2,3.7 -0.3,0 -0.6,0 -0.8,-0.1 0,-0.6 0,-1.6 0,-2.8 0,-1.4 0.2,-2.2 0.3,-2.6 0.4,-1.2 1.1,-1.2 1.3,-1.2 1.2,0 1.4,1.7 1.4,3 z m -4.8,1.9 c 0,1.2 0,1.9 -0.2,2.5 0.7,0.3 1.5,0.4 2.6,0.4 0.7,0 2.5,0 3.6,-2.1 0.5,-1 0.7,-2.3 0.7,-3.3 0,-0.6 -0.1,-1.9 -0.6,-2.8 -0.5,-0.8 -1.2,-1.2 -2,-1.2 -1.6,0 -2.1,1.3 -2.3,2 0,-0.9 0,-3.8 0.2,-5.4 -1.1,0.5 -1.8,0.6 -2.5,0.7 0.7,0.3 0.7,1.4 0.7,5 l -0.2,4.2"
id="path270"
style="fill:#ffffff" />
<path
class="st26"
d="m 54.3,468 c -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.5,0 -0.9,0 -1.3,0.1 0.2,-0.3 0.2,-0.5 0.3,-1.6 0.1,-1.5 0.1,-5.5 0,-6.3 -0.1,-0.6 -0.2,-0.7 -0.5,-0.9 1.4,-0.1 1.8,-0.2 2.4,-0.5 -0.1,0.7 -0.2,1.1 -0.2,2.2 0.1,5.8 0.1,6.4 0.4,7.1"
id="path272"
style="fill:#ffffff" />
<path
class="st26"
d="m 59.7,463.2 c 0,1.1 0,1.8 -0.3,2.4 -0.4,0.7 -0.9,1 -1.4,1 -1,0 -1.2,-0.8 -1.2,-1.7 0,-1.6 1.4,-1.7 2,-1.7 z m -4.6,2.1 c 0,1.1 0.3,2.1 1.3,2.6 0.4,0.2 0.8,0.2 1,0.2 1.5,0 2.1,-1.1 2.4,-1.9 0,0.7 0,1.2 0,1.8 0.3,0 0.6,0 1.1,0 0.3,0 0.6,0 0.8,0 -0.2,-0.3 -0.3,-0.5 -0.3,-1.1 0,-0.6 0,-1.3 0,-2.2 v -3.4 c 0,-1.3 -0.3,-2.5 -2.8,-2.5 -1.7,0 -2.6,0.5 -3.1,0.7 0.2,0.4 0.4,0.7 0.5,1.4 0.7,-0.6 1.5,-0.9 2.4,-0.9 1.4,0 1.4,0.9 1.4,2.2 -0.3,0 -0.6,0 -1,0 -2.3,0 -3.7,0.8 -3.7,3.1"
id="path274"
style="fill:#ffffff" />
<path
class="st26"
d="m 69.4,466.3 c 0,0.6 0,1.2 0.2,1.7 -0.4,0 -0.6,-0.1 -1.3,-0.1 -0.4,0 -0.6,0 -0.9,0.1 0.1,-0.2 0.1,-0.3 0.1,-0.6 0,-0.4 0.1,-1.7 0.1,-2.1 v -1.8 c 0,-0.8 0,-1.9 0,-2.3 0,-0.3 -0.1,-1.1 -1.1,-1.1 -0.9,0 -1.3,0.7 -1.4,1.3 -0.1,0.6 -0.1,1.2 -0.1,3.7 0,2.1 0,2.3 0.2,2.9 -0.3,0 -0.6,-0.1 -1.1,-0.1 -0.4,0 -0.7,0 -1,0.1 0.1,-0.3 0.2,-0.4 0.2,-1.3 0,-0.9 0.1,-5.4 0,-6.5 -0.1,-0.7 -0.2,-0.8 -0.4,-1 1.4,-0.1 1.8,-0.3 2.2,-0.5 v 1.8 c 0.2,-0.5 0.6,-1.7 2.3,-1.7 2.1,0 2.1,1.5 2.1,2.5 l -0.1,5"
id="path276"
style="fill:#ffffff" />
<path
class="st26"
d="m 54.5,456.3 -1.4,1.4 -1.4,-1.4 1.4,-1.4 1.4,1.4"
id="path278"
style="fill:#ffffff" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
ns2:viewOrigin="262 450"
ns2:rulerOrigin="0 0"
ns2:pageBounds="0 792 612 0"
width="128"
height="128"
viewBox="0 0 128 128"
overflow="visible"
enable-background="new 0 0 87.041 108.445"
xml:space="preserve"
id="svg2"
version="1.1"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="logo.svg"
style="overflow:visible"
inkscape:export-filename="/tmp/emblem-debian.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:ns2="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:ns3="http://ns.adobe.com/Variables/1.0/"
xmlns:ns4="http://ns.adobe.com/SaveForWeb/1.0/"><defs
id="defs35" /><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="1023"
id="namedview33"
showgrid="false"
inkscape:zoom="2.1762184"
inkscape:cx="-1.3785381"
inkscape:cy="27.111249"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:document-rotation="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" /><metadata
id="metadata4"><ns3:variableSets><ns3:variableSet
varSetName="binding1"
locked="none"><ns3:variables /><ns3:sampleDataSets /></ns3:variableSet></ns3:variableSets><ns4:sfw><ns4:slices /><ns4:sliceSourceBounds
y="341.555"
x="262"
width="87.041"
height="108.445"
bottomLeftOrigin="true" /></ns4:sfw><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><g
id="g3416"
style="opacity:0.71"><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path9"
d="m 72.505555,67.0725 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path11"
d="m 82.150555,64.6685 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path13"
d="m 85.710555,55.4045 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path15"
d="m 65.691555,11.1745 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path17"
d="m 67.607555,11.7075 -0.678,0.14 0.631,-0.056 0.047,-0.084"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path19"
d="m 97.511555,56.6315 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 l -0.119,-0.264 c -10.018,4.713 -23.934,-4.627 -23.751,-17.371 -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.347995,-5.97 2.966995,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 -2.26999,-8.352 -9.714995,-16.156 -16.563995,-19.818 0.838,0.767 1.896,1.73 1.516,1.881 -3.406,-2.028 -2.807,-2.186 -3.295,-3.043 -2.775,-1.129 -2.957,0.091 -4.795,0.002 -5.23,-2.774 -6.238,-2.479 -11.051,-4.217 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 c -1.415,-0.107 -3.748,-2.385 -4.386,-3.646 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 l 0.634,-0.051 c -0.486,-0.732 -0.781,-1.527 -1.172,-2.307 l 0.276,-2.75 c -2.849,-3.294 -0.797,-14.006 -0.386,-19.881 0.285,-2.389 2.378,-4.932 3.97,-8.92 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path21"
d="m 52.891555,69.5395 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path23"
d="m 55.683555,69.4295 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path25"
d="m 105.08755,58.6915 -0.26399,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.76999,-3.328 2.915,-6.968 3.39499,-10.656"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path27"
d="m 66.046555,10.3125 c 1.215,-0.445 2.987,-0.244 4.276,-0.537 -1.68,0.141 -3.352,0.225 -5.003,0.438 l 0.727,0.099"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path29"
d="m 23.391555,32.9945 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
ns2:knockout="Off" /><path
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0"
id="path31"
d="m 20.519555,44.9905 c 0.563,-1.728 0.665,-2.766 0.88,-3.766 -1.556,1.989 -0.716,2.413 -0.88,3.766"
ns2:knockout="Off" /></g></svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

View File

@ -0,0 +1,233 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/"
xmlns:ns="http://ns.adobe.com/Variables/1.0/"
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
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"
i:viewOrigin="251 467"
i:rulerOrigin="0 0"
i:pageBounds="0 792 612 0"
width="336"
height="112"
viewBox="0 0 336 112"
overflow="visible"
enable-background="new 0 0 108.758 144.133"
xml:space="preserve"
version="1.1"
id="svg45"
sodipodi:docname="salsa-debian-icon.svg"
style="overflow:visible"
inkscape:export-filename="/tmp/salsa-debian-icon.png"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
id="defs49">
</defs><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="1009"
id="namedview47"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="4.6312005"
inkscape:cx="210.01032"
inkscape:cy="50.012224"
inkscape:window-x="0"
inkscape:window-y="34"
inkscape:window-maximized="1"
inkscape:current-layer="svg45"
showguides="false"><inkscape:grid
type="xygrid"
id="grid977"
originx="167.99876"
originy="55.967413" /></sodipodi:namedview>
<metadata
id="metadata2">
<ns:variableSets>
<ns:variableSet
varSetName="binding1"
locked="none">
<ns:variables />
<ns:sampleDataSets />
</ns:variableSet>
</ns:variableSets>
<ns0:sfw>
<ns0:slices />
<ns0:sliceSourceBounds
y="322.867"
x="251"
width="108.758"
height="144.133"
bottomLeftOrigin="true" />
</ns0:sfw>
<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>
<g
id="g1172"><g
transform="scale(1.2484899,1.2420156)"
id="g952"><path
i:knockout="Off"
d="m 43.297976,47.645 c -1.494,0.02 0.281,0.768 2.232,1.069 0.541,-0.422 1.027,-0.846 1.463,-1.26 -1.213,0.297 -2.449,0.304 -3.695,0.191"
id="path4"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 51.314976,45.646 c 0.893,-1.229 1.541,-2.573 1.77,-3.963 -0.201,0.99 -0.736,1.845 -1.244,2.749 -2.793,1.759 -0.264,-1.044 -0.002,-2.111 -3.002,3.783 -0.414,2.268 -0.524,3.325"
id="path6"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 54.277976,37.942 c 0.182,-2.691 -0.529,-1.839 -0.768,-0.814 0.278,0.146 0.499,1.898 0.768,0.814"
id="path8"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 37.629976,1.163 c 0.798,0.142 1.724,0.252 1.591,0.443 0.876,-0.193 1.073,-0.367 -1.591,-0.443"
id="path10"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 39.221976,1.606 -0.561,0.117 0.523,-0.048 0.038,-0.069"
id="path12"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 64.090976,38.962 c 0.09,2.416 -0.705,3.59 -1.424,5.666 l -1.293,0.643 c -1.057,2.054 0.105,1.304 -0.652,2.937 -1.652,1.467 -5.006,4.589 -6.08,4.875 -0.785,-0.017 0.531,-0.926 0.703,-1.281 -2.209,1.516 -1.773,2.276 -5.152,3.199 l -0.098,-0.221 c -8.33,3.92 -19.902,-3.847 -19.75,-14.443 -0.088,0.672 -0.253,0.504 -0.437,0.774 -0.43,-5.451 2.518,-10.926 7.49,-13.165 4.863,-2.406 10.564,-1.42 14.045,1.829 -1.912,-2.506 -5.721,-5.163 -10.232,-4.917 -4.421,0.072 -8.558,2.881 -9.938,5.932 -2.264,1.425 -2.528,5.496 -3.514,6.242 -1.329,9.76 2.497,13.975 8.97,18.936 1.016,0.686 0.286,0.791 0.422,1.313 -2.15,-1.006 -4.118,-2.526 -5.738,-4.387 0.86,1.257 1.787,2.479 2.986,3.439 -2.029,-0.685 -4.738,-4.913 -5.527,-5.085 3.495,6.258 14.178,10.975 19.775,8.634 -2.59,0.096 -5.879,0.053 -8.787,-1.022 -1.225,-0.629 -2.884,-1.93 -2.587,-2.173 7.636,2.851 15.522,2.158 22.128,-3.137 1.682,-1.31 3.518,-3.537 4.049,-3.567 -0.799,1.202 0.137,0.578 -0.477,1.639 1.672,-2.701 -0.729,-1.1 1.73,-4.664 l 0.908,1.25 c -0.34,-2.244 2.785,-4.966 2.467,-8.512 0.717,-1.084 0.799,1.168 0.039,3.662 1.055,-2.767 0.279,-3.212 0.549,-5.496 0.291,0.768 0.678,1.583 0.875,2.394 -0.688,-2.675 0.703,-4.503 1.049,-6.058 -0.342,-0.15 -1.061,1.182 -1.227,-1.976 0.025,-1.372 0.383,-0.719 0.52,-1.057 -0.268,-0.155 -0.975,-1.207 -1.404,-3.224 0.309,-0.475 0.832,1.229 1.256,1.298 -0.273,-1.603 -0.742,-2.826 -0.762,-4.057 -1.24,-2.59 -0.439,0.346 -1.443,-1.112 -1.32,-4.114 1.094,-0.955 1.258,-2.823 1.998,2.895 3.137,7.385 3.662,9.244 -0.4,-2.267 -1.045,-4.464 -1.834,-6.589 0.609,0.257 -0.979,-4.663 0.791,-1.405 -1.889,-6.945 -8.078,-13.435 -13.773,-16.479 0.695,0.637 1.574,1.437 1.26,1.563 -2.834,-1.685 -2.336,-1.818 -2.742,-2.53 -2.305,-0.939 -2.459,0.077 -3.984,0.002 -4.35,-2.308 -5.188,-2.063 -9.191,-3.507 l 0.182,0.852 c -2.881,-0.96 -3.357,0.362 -6.47,0.002 -0.189,-0.147 0.998,-0.536 1.976,-0.677 -2.786,0.368 -2.656,-0.55 -5.382,0.101 0.671,-0.471 1.383,-0.784 2.099,-1.184 -2.271,0.138 -5.424,1.322 -4.451,0.244 -3.705,1.654 -10.286,3.975 -13.979,7.438 l -0.116,-0.776 c -1.692,2.031 -7.3790005,6.066 -7.8320005,8.699 l -0.453,0.105 c -0.879,1.491 -1.45,3.18 -2.148,4.713 -1.151,1.963 -1.688,0.756 -1.524,1.064 -2.265,4.592 -3.392,8.45 -4.36299998,11.616 0.69199998,1.035 0.017,6.232 0.278,10.391 -1.136,20.544 14.41800048,40.489 31.42000048,45.093 2.492,0.893 6.197,0.861 9.349,0.949 -3.718,-1.064 -4.198,-0.563 -7.822,-1.826 -2.613,-1.232 -3.185,-2.637 -5.037,-4.244 l 0.733,1.295 c -3.63,-1.285 -2.111,-1.59 -5.065,-2.525 l 0.783,-1.021 c -1.177,-0.09 -3.117,-1.982 -3.647,-3.033 l -1.288,0.051 c -1.546,-1.906 -2.371,-3.283 -2.31,-4.35 l -0.416,0.742 c -0.471,-0.809 -5.691,-7.158 -2.983,-5.68 -0.503,-0.458 -1.172,-0.747 -1.897,-2.066 l 0.551,-0.629 c -1.301,-1.677 -2.398,-3.826 -2.314,-4.542 0.695,0.938 1.177,1.114 1.655,1.275 -3.2910005,-8.164 -3.4760005,-0.449 -5.9670005,-8.31 l 0.526,-0.042 c -0.403,-0.611 -0.65,-1.27 -0.974,-1.919 l 0.23,-2.285 c -2.368,-2.736 -0.662,-11.645 -0.319,-16.53 0.235,-1.986 1.977,-4.101 3.3,-7.418 l -0.806,-0.138 C 10.037976,24.293 17.297976,16.182 20.661976,16.598 c 1.629,-2.046 -0.324,-0.008 -0.643,-0.522 3.579,-3.703 4.704,-2.616 7.119,-3.283 2.603,-1.545 -2.235,0.604 -1.001,-0.589 4.503,-1.149 3.19,-2.614 9.063,-3.197 0.62,0.352 -1.437,0.544 -1.953,1.001 3.75,-1.836 11.869,-1.417 17.145,1.018 6.117,2.861 12.994,11.314 13.266,19.267 l 0.309,0.083 c -0.156,3.162 0.484,6.819 -0.627,10.177 l 0.751,-1.591"
id="path14"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 26.986976,49.695 -0.211,1.047 c 0.983,1.335 1.763,2.781 3.016,3.821 -0.902,-1.759 -1.571,-2.486 -2.805,-4.868"
id="path16"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 29.307976,49.605 c -0.52,-0.576 -0.826,-1.268 -1.172,-1.956 0.33,1.211 1.006,2.252 1.633,3.312 l -0.461,-1.356"
id="path18"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 70.391976,40.675 -0.219,0.552 c -0.402,2.858 -1.273,5.686 -2.605,8.309 1.472,-2.767 2.421,-5.794 2.824,-8.861"
id="path20"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 37.926976,0.446 c 1.009,-0.369 2.482,-0.203 3.556,-0.446 -1.398,0.117 -2.789,0.187 -4.162,0.362 l 0.606,0.084"
id="path22"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 2.4559755,19.308 c 0.233,2.154 -1.61999998,2.991 0.41,1.569 1.09,-2.454 -0.424,-0.677 -0.41,-1.569"
id="path24"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /><path
i:knockout="Off"
d="m 0.06797552,29.282 c 0.469,-1.437 0.553,-2.299 0.732,-3.132 -1.293,1.654 -0.596,2.007 -0.732,3.132"
id="path26"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0"
inkscape:export-xdpi="104"
inkscape:export-ydpi="104" /></g><g
inkscape:export-ydpi="104"
inkscape:export-xdpi="104"
style="fill:#dfdfdf;fill-opacity:1"
transform="matrix(2.0228397,0,0,2.0123498,116,-203.91195)"
id="g944"><path
i:knockout="Off"
d="m 13.437,125.506 c -0.045,0.047 -0.045,7.506 -0.138,9.453 -0.092,1.574 -0.232,4.957 -3.568,4.957 -3.429,0 -4.263,-3.939 -4.541,-5.652 -0.324,-1.9 -0.324,-3.477 -0.324,-4.17 0,-2.225 0.139,-8.436 5.375,-8.436 1.576,0 2.456,0.465 3.151,0.834 z M 0,130.975 c 0,13.066 6.951,13.066 7.97,13.066 2.873,0 4.727,-1.576 5.514,-4.309 l 0.093,4.123 c 0.881,-0.047 1.761,-0.139 3.197,-0.139 0.51,0 0.926,0 1.298,0.047 0.371,0 0.741,0.045 1.158,0.092 -0.741,-1.482 -1.297,-4.818 -1.297,-12.049 0,-7.043 0,-18.951 0.602,-22.566 -1.667,0.789 -3.105,1.299 -6.256,1.576 1.251,1.344 1.251,2.039 1.251,8.154 -0.879,-0.277 -1.992,-0.602 -3.892,-0.602 C 1.344,118.369 0,125.598 0,130.975"
id="path28"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 25.13,128.609 c 0.047,-3.846 0.835,-7.275 4.124,-7.275 3.615,0 3.891,3.984 3.799,7.275 z m 12.51,0.465 c 0,-5.422 -1.065,-10.752 -7.923,-10.752 -9.452,0 -9.452,10.475 -9.452,12.697 0,9.406 4.216,13.113 11.306,13.113 3.149,0 4.68,-0.461 5.514,-0.695 -0.046,-1.668 0.185,-2.734 0.465,-4.17 -0.975,0.604 -2.226,1.391 -5.006,1.391 -7.229,0 -7.322,-6.582 -7.322,-8.852 H 37.55 l 0.09,-2.732"
id="path30"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 52.715,131.066 c 0,4.309 -0.787,10.102 -6.162,10.102 -0.742,0 -1.668,-0.141 -2.27,-0.279 -0.093,-1.668 -0.093,-4.541 -0.093,-7.877 0,-3.986 0.416,-6.068 0.742,-7.09 0.972,-3.289 3.15,-3.334 3.566,-3.334 3.522,0 4.217,4.865 4.217,8.478 z m -13.298,5.051 c 0,3.43 0,5.375 -0.556,6.857 1.9,0.742 4.262,1.158 7.09,1.158 1.807,0 7.043,0 9.869,-5.791 1.344,-2.688 1.807,-6.303 1.807,-9.037 0,-1.668 -0.186,-5.328 -1.529,-7.646 -1.296,-2.176 -3.382,-3.289 -5.605,-3.289 -4.449,0 -5.746,3.707 -6.44,5.607 0,-2.363 0.045,-10.611 0.415,-14.828 -3.011,1.391 -4.866,1.621 -6.857,1.807 1.807,0.74 1.807,3.801 1.807,13.764 v 11.398"
id="path32"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 66.535,143.855 c -0.928,-0.139 -1.578,-0.232 -2.922,-0.232 -1.48,0 -2.502,0.094 -3.566,0.232 0.463,-0.881 0.648,-1.299 0.787,-4.309 0.186,-4.125 0.232,-15.154 -0.092,-17.471 -0.232,-1.762 -0.648,-2.039 -1.297,-2.502 3.799,-0.371 4.865,-0.648 6.625,-1.482 -0.369,2.037 -0.418,3.059 -0.418,6.162 -0.091,15.989 -0.138,17.702 0.883,19.602"
id="path34"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 81.373,130.74 c -0.092,2.92 -0.139,4.959 -0.928,6.58 -0.973,2.086 -2.594,2.688 -3.799,2.688 -2.783,0 -3.383,-2.316 -3.383,-4.586 0,-4.355 3.893,-4.682 5.652,-4.682 z m -12.744,5.701 c 0,2.92 0.881,5.838 3.477,7.09 1.158,0.51 2.316,0.51 2.688,0.51 4.264,0 5.699,-3.152 6.58,-5.098 -0.047,2.039 0,3.289 0.139,4.912 0.834,-0.047 1.668,-0.139 3.059,-0.139 0.787,0 1.529,0.092 2.316,0.139 -0.51,-0.787 -0.787,-1.252 -0.928,-3.059 -0.092,-1.76 -0.092,-3.521 -0.092,-5.977 l 0.047,-9.453 c 0,-3.523 -0.928,-6.998 -7.879,-6.998 -4.586,0 -7.273,1.391 -8.617,2.086 0.557,1.02 1.02,1.898 1.436,3.893 1.809,-1.576 4.172,-2.41 6.58,-2.41 3.848,0 3.848,2.549 3.848,6.162 -0.881,-0.045 -1.623,-0.137 -2.875,-0.137 -5.887,10e-4 -9.779,2.268 -9.779,8.479"
id="path36"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 108.063,139.268 c 0.047,1.576 0.047,3.244 0.695,4.588 -1.021,-0.092 -1.623,-0.232 -3.521,-0.232 -1.113,0 -1.715,0.094 -2.596,0.232 0.184,-0.602 0.279,-0.834 0.371,-1.623 0.139,-1.064 0.232,-4.633 0.232,-5.885 v -5.004 c 0,-2.178 0,-5.33 -0.141,-6.441 -0.092,-0.787 -0.322,-2.918 -3.012,-2.918 -2.641,0 -3.521,1.945 -3.846,3.521 -0.369,1.621 -0.369,3.383 -0.369,10.24 0.045,5.932 0.045,6.486 0.508,8.109 -0.787,-0.092 -1.76,-0.184 -3.15,-0.184 -1.113,0 -1.854,0.045 -2.779,0.184 0.324,-0.742 0.51,-1.113 0.602,-3.707 0.094,-2.549 0.279,-15.061 -0.141,-18.025 -0.23,-1.809 -0.695,-2.225 -1.203,-2.688 3.754,-0.186 4.957,-0.789 6.117,-1.389 v 4.91 c 0.555,-1.438 1.713,-4.635 6.348,-4.635 5.793,0 5.838,4.217 5.885,6.996 v 13.951"
id="path38"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /><path
i:knockout="Off"
d="m 66.926,111.533 -3.838,3.836 -3.836,-3.836 3.836,-3.836 3.838,3.836"
id="path40"
style="fill:#dfdfdf;fill-opacity:1"
inkscape:connector-curvature="0" /></g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB