Initial commit
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
out/
|
||||
work/
|
674
LICENSE
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
13
README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Solarity Liveboot
|
||||
A livebootable ISO based on Archiso designed for system testing and recovery.
|
||||
|
||||
# Building
|
||||
### Requirements:
|
||||
- Arch Linux Root
|
||||
- `archiso` package
|
||||
|
||||
### Building:
|
||||
Execute `build.sh` as root.
|
||||
|
||||
# License
|
||||
This project is licensed under GPLv3.
|
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
|||
1.0
|
2
airootfs/etc/NetworkManager/conf.d/wifi_backend.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
[device]
|
||||
wifi.backend=iwd
|
8
airootfs/etc/group
Normal file
|
@ -0,0 +1,8 @@
|
|||
root:x:0:root
|
||||
adm:x:4:solarity
|
||||
wheel:x:10:solarity
|
||||
uucp:x:14:solarity
|
||||
video:x:986:solarity
|
||||
render:x:989:solarity
|
||||
input:x:993:solarity
|
||||
solarity:x:1000:solarity
|
2
airootfs/etc/gshadow
Normal file
|
@ -0,0 +1,2 @@
|
|||
root:!*::root
|
||||
solarity:!*::
|
1
airootfs/etc/hostname
Normal file
|
@ -0,0 +1 @@
|
|||
solliveboot
|
1
airootfs/etc/locale.conf
Normal file
|
@ -0,0 +1 @@
|
|||
LANG=en_US.UTF-8
|
1
airootfs/etc/localtime
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/share/zoneinfo/UTC
|
150
airootfs/etc/makepkg.conf
Normal file
|
@ -0,0 +1,150 @@
|
|||
#!/hint/bash
|
||||
#
|
||||
# /etc/makepkg.conf
|
||||
#
|
||||
|
||||
#########################################################################
|
||||
# SOURCE ACQUISITION
|
||||
#########################################################################
|
||||
#
|
||||
#-- The download utilities that makepkg should use to acquire sources
|
||||
# Format: 'protocol::agent'
|
||||
DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
|
||||
'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
|
||||
'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||
'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
||||
'rsync::/usr/bin/rsync --no-motd -z %u %o'
|
||||
'scp::/usr/bin/scp -C %u %o')
|
||||
|
||||
# Other common tools:
|
||||
# /usr/bin/snarf
|
||||
# /usr/bin/lftpget -c
|
||||
# /usr/bin/wget
|
||||
|
||||
#-- The package required by makepkg to download VCS sources
|
||||
# Format: 'protocol::package'
|
||||
VCSCLIENTS=('bzr::bzr'
|
||||
'git::git'
|
||||
'hg::mercurial'
|
||||
'svn::subversion')
|
||||
|
||||
#########################################################################
|
||||
# ARCHITECTURE, COMPILE FLAGS
|
||||
#########################################################################
|
||||
#
|
||||
CARCH="x86_64"
|
||||
CHOST="x86_64-pc-linux-gnu"
|
||||
|
||||
#-- Compiler and Linker Flags
|
||||
#CPPFLAGS=""
|
||||
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \
|
||||
-Wp,-D_FORTIFY_SOURCE=2,-D_GLIBCXX_ASSERTIONS \
|
||||
-Wformat -Werror=format-security \
|
||||
-fstack-clash-protection -fcf-protection"
|
||||
CXXFLAGS="$CFLAGS"
|
||||
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
|
||||
#RUSTFLAGS="-C opt-level=2"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
MAKEFLAGS="-j$(nproc)"
|
||||
#-- Debugging flags
|
||||
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
|
||||
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
|
||||
#DEBUG_RUSTFLAGS="-C debuginfo=2"
|
||||
|
||||
#########################################################################
|
||||
# BUILD ENVIRONMENT
|
||||
#########################################################################
|
||||
#
|
||||
# Defaults: BUILDENV=(!distcc !color !ccache check !sign)
|
||||
# A negated environment option will do the opposite of the comments below.
|
||||
#
|
||||
#-- distcc: Use the Distributed C/C++/ObjC compiler
|
||||
#-- color: Colorize output messages
|
||||
#-- ccache: Use ccache to cache compilation
|
||||
#-- check: Run the check() function if present in the PKGBUILD
|
||||
#-- sign: Generate PGP signature file
|
||||
#
|
||||
BUILDENV=(!distcc color !ccache check !sign)
|
||||
#
|
||||
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
||||
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
||||
#DISTCC_HOSTS=""
|
||||
#
|
||||
#-- Specify a directory for package building.
|
||||
#BUILDDIR=/tmp/makepkg
|
||||
|
||||
#########################################################################
|
||||
# GLOBAL PACKAGE OPTIONS
|
||||
# These are default values for the options=() settings
|
||||
#########################################################################
|
||||
#
|
||||
# Default: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug)
|
||||
# A negated option will do the opposite of the comments below.
|
||||
#
|
||||
#-- strip: Strip symbols from binaries/libraries
|
||||
#-- docs: Save doc directories specified by DOC_DIRS
|
||||
#-- libtool: Leave libtool (.la) files in packages
|
||||
#-- staticlibs: Leave static library (.a) files in packages
|
||||
#-- emptydirs: Leave empty directories in packages
|
||||
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
||||
#-- purge: Remove files specified by PURGE_TARGETS
|
||||
#-- debug: Add debugging flags as specified in DEBUG_* variables
|
||||
#
|
||||
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)
|
||||
|
||||
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
|
||||
INTEGRITY_CHECK=(md5)
|
||||
#-- Options to be used when stripping binaries. See `man strip' for details.
|
||||
STRIP_BINARIES="--strip-all"
|
||||
#-- Options to be used when stripping shared libraries. See `man strip' for details.
|
||||
STRIP_SHARED="--strip-unneeded"
|
||||
#-- Options to be used when stripping static libraries. See `man strip' for details.
|
||||
STRIP_STATIC="--strip-debug"
|
||||
#-- Manual (man and info) directories to compress (if zipman is specified)
|
||||
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
|
||||
#-- Doc directories to remove (if !docs is specified)
|
||||
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
|
||||
#-- Files to be removed from all packages (if purge is specified)
|
||||
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
|
||||
#-- Directory to store source code in for debug packages
|
||||
DBGSRCDIR="/usr/src/debug"
|
||||
|
||||
#########################################################################
|
||||
# PACKAGE OUTPUT
|
||||
#########################################################################
|
||||
#
|
||||
# Default: put built package and cached source in build directory
|
||||
#
|
||||
#-- Destination: specify a fixed directory where all packages will be placed
|
||||
#PKGDEST=/home/packages
|
||||
#-- Source cache: specify a fixed directory where source files will be cached
|
||||
#SRCDEST=/home/sources
|
||||
#-- Source packages: specify a fixed directory where all src packages will be placed
|
||||
#SRCPKGDEST=/home/srcpackages
|
||||
#-- Log files: specify a fixed directory where all log files will be placed
|
||||
#LOGDEST=/home/makepkglogs
|
||||
#-- Packager: name/email of the person or organization building packages
|
||||
#PACKAGER="John Doe <john@doe.com>"
|
||||
#-- Specify a key to use for package signing
|
||||
#GPGKEY=""
|
||||
|
||||
#########################################################################
|
||||
# COMPRESSION DEFAULTS
|
||||
#########################################################################
|
||||
#
|
||||
COMPRESSGZ=(gzip -c -f -n)
|
||||
COMPRESSBZ2=(bzip2 -c -f)
|
||||
COMPRESSXZ=(xz -c -z -T0 -)
|
||||
COMPRESSZST=(zstd -c -z -q -T0 -)
|
||||
COMPRESSLRZ=(lrzip -q)
|
||||
COMPRESSLZO=(lzop -q)
|
||||
COMPRESSZ=(compress -c -f)
|
||||
COMPRESSLZ4=(lz4 -q)
|
||||
COMPRESSLZ=(lzip -c -f)
|
||||
|
||||
#########################################################################
|
||||
# EXTENSION DEFAULTS
|
||||
#########################################################################
|
||||
#
|
||||
PKGEXT='.pkg.tar.zst'
|
||||
SRCEXT='.src.tar.gz'
|
67
airootfs/etc/mkinitcpio.conf
Normal file
|
@ -0,0 +1,67 @@
|
|||
# vim:set ft=sh
|
||||
# MODULES
|
||||
# The following modules are loaded before any boot hooks are
|
||||
# run. Advanced users may wish to specify all system modules
|
||||
# in this array. For instance:
|
||||
# MODULES=(piix ide_disk reiserfs)
|
||||
MODULES=()
|
||||
|
||||
# BINARIES
|
||||
# This setting includes any additional binaries a given user may
|
||||
# wish into the CPIO image. This is run last, so it may be used to
|
||||
# override the actual binaries included by a given hook
|
||||
# BINARIES are dependency parsed, so you may safely ignore libraries
|
||||
BINARIES=()
|
||||
|
||||
# FILES
|
||||
# This setting is similar to BINARIES above, however, files are added
|
||||
# as-is and are not parsed in any way. This is useful for config files.
|
||||
FILES=()
|
||||
|
||||
# HOOKS
|
||||
# This is the most important setting in this file. The HOOKS control the
|
||||
# modules and scripts added to the image, and what happens at boot time.
|
||||
# Order is important, and it is recommended that you do not change the
|
||||
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
||||
# help on a given hook.
|
||||
# 'base' is _required_ unless you know precisely what you are doing.
|
||||
# 'udev' is _required_ in order to automatically load modules
|
||||
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
||||
# Examples:
|
||||
## This setup specifies all modules in the MODULES setting above.
|
||||
## No raid, lvm2, or encrypted root is needed.
|
||||
# HOOKS=(base)
|
||||
#
|
||||
## This setup will autodetect all modules for your system and should
|
||||
## work as a sane default
|
||||
# HOOKS=(base udev autodetect block filesystems)
|
||||
#
|
||||
## This setup will generate a 'full' image which supports most systems.
|
||||
## No autodetection is done.
|
||||
# HOOKS=(base udev block filesystems)
|
||||
#
|
||||
## This setup assembles a pata mdadm array with an encrypted root FS.
|
||||
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
|
||||
# HOOKS=(base udev block mdadm encrypt filesystems)
|
||||
#
|
||||
## This setup loads an lvm2 volume group on a usb device.
|
||||
# HOOKS=(base udev block lvm2 filesystems)
|
||||
#
|
||||
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||
# usr, fsck and shutdown hooks.
|
||||
HOOKS=(base udev modconf memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
|
||||
|
||||
# COMPRESSION
|
||||
# Use this to compress the initramfs image. By default, gzip compression
|
||||
# is used. Use 'cat' to create an uncompressed image.
|
||||
#COMPRESSION="gzip"
|
||||
#COMPRESSION="bzip2"
|
||||
#COMPRESSION="lzma"
|
||||
COMPRESSION="xz"
|
||||
#COMPRESSION="lzop"
|
||||
#COMPRESSION="lz4"
|
||||
#COMPRESSION="zstd"
|
||||
|
||||
# COMPRESSION_OPTIONS
|
||||
# Additional options for the compressor
|
||||
#COMPRESSION_OPTIONS=()
|
8
airootfs/etc/mkinitcpio.d/linux-lts.preset
Normal file
|
@ -0,0 +1,8 @@
|
|||
# mkinitcpio preset file for the 'linux' package on archiso
|
||||
|
||||
PRESETS=('archiso')
|
||||
|
||||
ALL_kver='/boot/vmlinuz-linux-lts'
|
||||
ALL_config='/etc/mkinitcpio.conf'
|
||||
|
||||
archiso_image="/boot/initramfs-linux-lts.img"
|
7
airootfs/etc/modprobe.d/broadcom-wl.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
# The broadcom-wl package requires some modules to be disabled in order to use
|
||||
# wl. Since the ISO image needs to cover many hardware cases, this file
|
||||
# overrides the default blacklist in /usr/lib/modprobe.d/
|
||||
#
|
||||
# If you need to use wl, you may need to delete this file, then `rmmod` any
|
||||
# already-loaded modules that are now blacklisted before proceeding to modprobe
|
||||
# wl itself.
|
1
airootfs/etc/motd
Normal file
|
@ -0,0 +1 @@
|
|||
Welcome to Solarity Liveboot!
|
104
airootfs/etc/pacman.conf
Normal file
|
@ -0,0 +1,104 @@
|
|||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
Color
|
||||
#NoProgressBar
|
||||
# We cannot check disk space from within a chroot environment
|
||||
#CheckSpace
|
||||
#VerbosePkgLists
|
||||
ParallelDownloads = 5
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
#[community-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[community]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[chaotic-aur]
|
||||
Include = /etc/pacman.d/chaotic-mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
13
airootfs/etc/pacman.d/hooks/40-locale-gen.hook
Normal file
|
@ -0,0 +1,13 @@
|
|||
# remove from airootfs!
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Type = Package
|
||||
Target = glibc
|
||||
|
||||
[Action]
|
||||
Description = Uncommenting en_US.UTF-8 locale and running locale-gen...
|
||||
When = PostTransaction
|
||||
Depends = glibc
|
||||
Depends = sed
|
||||
Depends = sh
|
||||
Exec = /bin/sh -c "sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen && locale-gen"
|
13
airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook
Normal file
|
@ -0,0 +1,13 @@
|
|||
# remove from airootfs!
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Type = Package
|
||||
Target = pacman-mirrorlist
|
||||
|
||||
[Action]
|
||||
Description = Uncommenting all mirrors in /etc/pacman.d/mirrorlist...
|
||||
When = PostTransaction
|
||||
Depends = pacman-mirrorlist
|
||||
Depends = sed
|
||||
Exec = /usr/bin/sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
|
@ -0,0 +1,18 @@
|
|||
# remove from airootfs!
|
||||
# As a workaround for https://bugs.archlinux.org/task/49347 , remove pacman hooks specific to the ISO build process.
|
||||
# If not, they would be used when pacstrap is run in the live environment.
|
||||
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Operation = Remove
|
||||
Type = Package
|
||||
Target = *
|
||||
|
||||
[Action]
|
||||
Description = Work around FS#49347 by removing custom pacman hooks that are only required during ISO build...
|
||||
When = PostTransaction
|
||||
Depends = sh
|
||||
Depends = coreutils
|
||||
Depends = grep
|
||||
Exec = /bin/sh -c "rm -- $(grep -Frl 'remove from airootfs' /etc/pacman.d/hooks/)"
|
2
airootfs/etc/passwd
Normal file
|
@ -0,0 +1,2 @@
|
|||
root:x:0:0:root:/root:/usr/bin/bash
|
||||
solarity:x:1000:1000::/home/solarity:/usr/bin/bash
|
1
airootfs/etc/resolv.conf
Symbolic link
|
@ -0,0 +1 @@
|
|||
/run/systemd/resolve/stub-resolv.conf
|
2
airootfs/etc/shadow
Normal file
|
@ -0,0 +1,2 @@
|
|||
root::14871::::::
|
||||
solarity:$6$wA19F4HMfNo5Xsj2$JASiMpuC7WaGnA8MNkYp7kDnw8FvdjrhK/eo/SLcTPHpnUy7AOqd6wvIJAJ8REXthbTu0vRJeEoOHuNHL7lJQ/:14871::::::
|
6
airootfs/etc/skel/.config/gtk-3.0/settings.ini
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Settings]
|
||||
gtk-theme-name=Adwaita-dark
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-icon-theme-name=Qogir-dark
|
||||
gtk-cursor-theme-name=Qogir
|
||||
gtk-cursor-theme-size=0
|
6
airootfs/etc/skel/.config/gtk-4.0/settings.ini
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Settings]
|
||||
gtk-theme-name=Adwaita-dark
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-icon-theme-name=Qogir-dark
|
||||
gtk-cursor-theme-name=Qogir
|
||||
gtk-cursor-theme-size=0
|
40
airootfs/etc/skel/.config/nwg-dock/style.css
Normal file
|
@ -0,0 +1,40 @@
|
|||
window {
|
||||
background-color: rgba (0, 0, 0, 0.5);
|
||||
/*background: #36364f;*/
|
||||
/*opacity: 0.9;*/
|
||||
border-radius: 15px;
|
||||
border-style: none;
|
||||
border-width: 1px;
|
||||
border-color: rgba (156, 142, 122, 0.7)
|
||||
}
|
||||
|
||||
#box {
|
||||
/* Define attributes of the box surrounding icons here */
|
||||
padding: 10px
|
||||
}
|
||||
|
||||
button, image {
|
||||
background: none;
|
||||
border-style: none;
|
||||
box-shadow: none;
|
||||
color: #999
|
||||
}
|
||||
|
||||
button {
|
||||
/*padding-left: 4px;
|
||||
padding-right: 4px;*/
|
||||
padding: 4px;
|
||||
margin-left: 4px;
|
||||
margin-right: 4px;
|
||||
color: #eee;
|
||||
font-size: 12px
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: rgba (255, 255, 255, 0.15);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
box-shadow: 0 0 2px;
|
||||
}
|
156
airootfs/etc/skel/.config/nwg-panel/config
Normal file
|
@ -0,0 +1,156 @@
|
|||
[
|
||||
{
|
||||
"name": "panel-top",
|
||||
"output": "",
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"controls": "right",
|
||||
"width": "auto",
|
||||
"height": 30,
|
||||
"margin-top": 0,
|
||||
"margin-bottom": 0,
|
||||
"padding-horizontal": 0,
|
||||
"padding-vertical": 0,
|
||||
"spacing": 0,
|
||||
"items-padding": 0,
|
||||
"icons": "dark",
|
||||
"css-name": "panel-top",
|
||||
"modules-left": [
|
||||
"button-drawer",
|
||||
"sway-taskbar"
|
||||
],
|
||||
"modules-center": [],
|
||||
"modules-right": [
|
||||
"clock"
|
||||
],
|
||||
"controls-settings": {
|
||||
"components": [
|
||||
"brightness",
|
||||
"volume",
|
||||
"battery"
|
||||
],
|
||||
"commands": {
|
||||
"net": "",
|
||||
"bluetooth": "",
|
||||
"battery": ""
|
||||
},
|
||||
"show-values": false,
|
||||
"interval": 1,
|
||||
"icon-size": 16,
|
||||
"hover-opens": true,
|
||||
"leave-closes": true,
|
||||
"css-name": "controls-window",
|
||||
"net-interface": "",
|
||||
"custom-items": [
|
||||
{
|
||||
"name": "Panel settings",
|
||||
"icon": "nwg-panel",
|
||||
"cmd": "nwg-panel-config"
|
||||
}
|
||||
],
|
||||
"menu": {
|
||||
"name": "Exit",
|
||||
"icon": "system-shutdown-symbolic",
|
||||
"items": [
|
||||
{
|
||||
"name": "Lock",
|
||||
"cmd": "swaylock -f -c 000000"
|
||||
},
|
||||
{
|
||||
"name": "Logout",
|
||||
"cmd": "swaymsg exit"
|
||||
},
|
||||
{
|
||||
"name": "Reboot",
|
||||
"cmd": "systemctl reboot"
|
||||
},
|
||||
{
|
||||
"name": "Shutdown",
|
||||
"cmd": "systemctl -i poweroff"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"sway-taskbar": {
|
||||
"workspace-menu": [
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9"
|
||||
],
|
||||
"name-max-len": 20,
|
||||
"image-size": 16,
|
||||
"workspaces-spacing": 0,
|
||||
"task-padding": 0,
|
||||
"show-app-icon": true,
|
||||
"show-app-name": false,
|
||||
"show-layout": true,
|
||||
"workspace-buttons": false,
|
||||
"all-workspaces": true,
|
||||
"all-outputs": true
|
||||
},
|
||||
"sway-workspaces": {
|
||||
"numbers": [
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9"
|
||||
],
|
||||
"show-icon": true,
|
||||
"image-size": 16,
|
||||
"show-name": true,
|
||||
"name-length": 40,
|
||||
"mark-autotiling": true,
|
||||
"mark-content": true,
|
||||
"show-layout": true
|
||||
},
|
||||
"clock": {
|
||||
"format": "%a, %d. %b %H:%M:%S",
|
||||
"tooltip-text": "",
|
||||
"on-left-click": "",
|
||||
"on-middle-click": "",
|
||||
"on-right-click": "",
|
||||
"on-scroll-up": "",
|
||||
"on-scroll-down": "",
|
||||
"css-name": "clock",
|
||||
"interval": 1
|
||||
},
|
||||
"playerctl": {
|
||||
"buttons-position": "left",
|
||||
"icon-size": 16,
|
||||
"chars": 30,
|
||||
"button-css-name": "",
|
||||
"label-css-name": "",
|
||||
"interval": 1
|
||||
},
|
||||
"button-sample": {
|
||||
"command": "notify-send 'sample button'",
|
||||
"icon": "view-grid",
|
||||
"label": "",
|
||||
"label-position": "right",
|
||||
"css-name": "button-custom",
|
||||
"icon-size": 16
|
||||
},
|
||||
"menu-start": "",
|
||||
"scratchpad": {},
|
||||
"menu-start-settings": {},
|
||||
"button-drawer": {
|
||||
"command": "nwg-drawer",
|
||||
"icon": "start-here",
|
||||
"label": "",
|
||||
"label-position": "bottom",
|
||||
"css-name": "",
|
||||
"icon-size": 16
|
||||
}
|
||||
}
|
||||
]
|
81
airootfs/etc/skel/.config/nwg-panel/executors/arch_updates.py
Executable file
|
@ -0,0 +1,81 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
import time
|
||||
import subprocess
|
||||
|
||||
|
||||
# You may either use the full icon(s) path here, like e.g.:
|
||||
# "/home/piotr/.config/nwg-panel/icons_light/arch-linux.svg"
|
||||
# or just give the icon name, like below.
|
||||
|
||||
# The icon name must either exist in your icon theme, or you may place `icon_name.svg`
|
||||
# custom files in '~/.config/nwg-panel/icons_light/' and '~/.config/nwg-panel/icons_dark/'.
|
||||
|
||||
# This script needs the `au.sh` helper on path or in the same directory. See comments in `au.sh`.
|
||||
|
||||
def main():
|
||||
# Avoid checking on each panel restart: check if 15 minutes passed.
|
||||
# Adjust the time (in seconds) to your liking.
|
||||
# Make sure if the path below matches your temp directory.
|
||||
file = "/tmp/arch-updates"
|
||||
|
||||
if os.path.isfile(file):
|
||||
if int(time.time() - os.stat(file).st_mtime) > 900:
|
||||
arch, aur = check_updates()
|
||||
save_string("{},{}".format(arch, aur), file)
|
||||
else:
|
||||
try:
|
||||
vals = load_string(file).split(",")
|
||||
arch, aur = int(vals[0]), int(vals[1])
|
||||
except:
|
||||
arch, aur = 0, 0
|
||||
else:
|
||||
arch, aur = check_updates()
|
||||
save_string("{},{}".format(arch, aur), file)
|
||||
|
||||
if arch > 0 and aur > 0:
|
||||
print("software-update-urgent")
|
||||
print("{}/{}".format(arch, aur))
|
||||
elif arch > 0:
|
||||
print("software-update-available")
|
||||
print("{}".format(arch))
|
||||
elif aur > 0:
|
||||
print("software-update-available")
|
||||
print("{}".format(aur))
|
||||
|
||||
|
||||
def save_string(string, file):
|
||||
try:
|
||||
file = open(file, "wt")
|
||||
file.write(string)
|
||||
file.close()
|
||||
except:
|
||||
print("Error writing file '{}'".format(file))
|
||||
|
||||
|
||||
def load_string(path):
|
||||
try:
|
||||
with open(path, 'r') as file:
|
||||
data = file.read()
|
||||
return data
|
||||
except:
|
||||
return ""
|
||||
|
||||
|
||||
def check_updates():
|
||||
arch, aur = 0, 0
|
||||
try:
|
||||
arch = len(subprocess.check_output(["checkupdates"]).decode("utf-8").splitlines())
|
||||
except:
|
||||
pass
|
||||
try:
|
||||
aur = len(subprocess.check_output(["trizen", "-Qqu", "-a"]).decode("utf-8").splitlines())
|
||||
except:
|
||||
pass
|
||||
|
||||
return arch, aur
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
18
airootfs/etc/skel/.config/nwg-panel/executors/au.sh
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This is a helper to the arch-updates.py executor
|
||||
# Add `<your-terminal-here> -e "au.sh; swaymsg reload"` as the On left click action
|
||||
|
||||
# Just in case - warn if battery level < threshold
|
||||
l=$(acpi | awk -F ',' '{print $2}')
|
||||
if [[ ! -z "$l" ]]; then
|
||||
level=${l:1:-1}
|
||||
threshold=30
|
||||
if [[ "$level" -lt "$threshold" ]]; then
|
||||
echo -e "\n*** BATTERY LEVEL$l, CONNECT AC! ***\n"
|
||||
fi
|
||||
fi
|
||||
|
||||
trizen -Syu &&
|
||||
rm /tmp/arch-updates
|
||||
echo Press enter to exit!; read;
|
14
airootfs/etc/skel/.config/nwg-panel/executors/github.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Based on the 'Github notifications' example from Waybar's Wiki
|
||||
# Depends on jq Command-line JSON processor
|
||||
# Obtain a notifications token at https://github.com/settings/tokens
|
||||
# save it to a file as below.
|
||||
|
||||
token=`cat ${HOME}/.config/github/notifications.token`
|
||||
count=`curl -u nwg-piotr:${token} https://api.github.com/notifications -s | jq '. | length'`
|
||||
|
||||
if [[ "$count" != "0" ]]; then
|
||||
echo /home/piotr/.config/nwg-panel/icons_light/github.svg
|
||||
echo $count
|
||||
fi
|
175
airootfs/etc/skel/.config/nwg-panel/icons_dark/arch-linux.svg
Normal file
|
@ -0,0 +1,175 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
version="1.0"
|
||||
sodipodi:docname="arch-linux.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="24.111144"
|
||||
inkscape:cx="8.6210011"
|
||||
inkscape:cy="8.4869326"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g28"
|
||||
transform="matrix(0.29166667,0,0,0.29166667,477.3751,297.68101)"
|
||||
style="opacity:1;fill:#444444;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2518"
|
||||
d="m 741.00015,483.12318 c -6.34282,15.5509 -10.19396,25.73748 -17.25586,40.82611 4.32983,4.58962 9.65118,9.91474 18.28217,15.95123 -9.27916,-3.81832 -15.60463,-7.64184 -20.33478,-11.61987 -9.03787,18.85892 -23.20682,45.7121 -51.94153,97.34253 22.57885,-13.03517 40.08235,-21.07534 56.39465,-24.14429 -0.69789,-3.00828 -1.0707,-6.27752 -1.0437,-9.67163 l 0.0174,-0.71319 c 0.35836,-14.46931 7.88723,-25.59559 16.80359,-24.84009 8.91635,0.75549 15.85732,13.1018 15.49896,27.5711 -0.0675,2.72544 -0.38436,5.34421 -0.92194,7.77558 16.13675,3.15791 33.47519,11.16227 55.75104,24.02252 -4.39297,-8.08778 -8.32763,-15.37432 -12.07214,-22.31781 -5.89822,-4.57152 -12.04738,-10.51908 -24.59656,-16.96014 8.62559,2.24128 14.80767,4.83303 19.62158,7.72338 -38.07152,-70.88252 -41.14731,-80.30772 -54.20288,-110.94543 z"
|
||||
style="fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.556641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,180 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
version="1.0"
|
||||
sodipodi:docname="arch-notification.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="19.264932"
|
||||
inkscape:cx="8.4073787"
|
||||
inkscape:cy="8.7043899"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g28"
|
||||
transform="matrix(0.29166667,0,0,0.29166667,477.3751,297.68101)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2518"
|
||||
d="m 741.00015,483.12318 c -6.34282,15.5509 -10.19396,25.73748 -17.25586,40.82611 4.32983,4.58962 9.65118,9.91474 18.28217,15.95123 -9.27916,-3.81832 -15.60463,-7.64184 -20.33478,-11.61987 -9.03787,18.85892 -23.20682,45.7121 -51.94153,97.34253 22.57885,-13.03517 40.08235,-21.07534 56.39465,-24.14429 -0.69789,-3.00828 -1.0707,-6.27752 -1.0437,-9.67163 l 0.0174,-0.71319 c 0.35836,-14.46931 7.88723,-25.59559 16.80359,-24.84009 8.91635,0.75549 15.85732,13.1018 15.49896,27.5711 -0.0675,2.72544 -0.38436,5.34421 -0.92194,7.77558 16.13675,3.15791 33.47519,11.16227 55.75104,24.02252 -4.39297,-8.08778 -8.32763,-15.37432 -12.07214,-22.31781 -5.89822,-4.57152 -12.04738,-10.51908 -24.59656,-16.96014 8.62559,2.24128 14.80767,4.83303 19.62158,7.72338 -38.07152,-70.88252 -41.14731,-80.30772 -54.20288,-110.94543 z"
|
||||
style="fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.556641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
r="15.029297"
|
||||
cy="509.56363"
|
||||
cx="787.47961"
|
||||
id="path3731"
|
||||
style="fill:#ff6400;fill-opacity:1;stroke-width:1.87866" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 8 1 L 4 5 L 1 5 L 1 11 L 4 11 L 8 15 L 8 1 z M 10 1 L 10 2.5 C 12.32 3.24 14 5.43 14 8 C 14 10.57 12.32 12.76 10 13.5 L 10 15 C 13.15 14.22 15.5 11.4 15.5 8 C 15.5 4.6 13.15 1.78 10 1 z M 10 5 L 10 11 C 11.06 10.42 11.789 9.3 11.789 8 C 11.789 6.7 11.07 5.58 10 5 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 387 B |
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z"/>
|
||||
<path style="opacity:0.3;fill:#444444" d="M 10 1 L 10 2.5 C 12.32 3.24 14 5.43 14 8 C 14 10.57 12.32 12.76 10 13.5 L 10 15 C 13.15 14.22 15.5 11.4 15.5 8 C 15.5 4.6 13.15 1.78 10 1 z M 10 5 L 10 11 C 11.06 10.42 11.789 9.3 11.789 8 C 11.789 6.7 11.07 5.58 10 5 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 418 B |
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z M 10,5 V 11 C 11.06,10.42 11.79,9.3 11.79,8 11.79,6.7 11.07,5.58 10,5 Z"/>
|
||||
<path style="opacity:0.3;fill:#444444" d="M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 400 B |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="audio-volume-muted-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<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="1020"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="46.125"
|
||||
inkscape:cx="2.7642276"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
id="path854"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:0.567103;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.3"
|
||||
d="M 10.687042,4.8541011 9.4606576,6.1810452 11.141871,8.0000002 9.4606576,9.8189564 10.687042,11.145899 12.36887,9.326294 14.050085,11.145899 15.27647,9.8189564 13.595256,8.0000003 15.27647,6.1810453 14.050085,4.8541012 12.36887,6.6737052 Z M 8,1 4,5 H 1 v 6 h 3 l 4,4 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,211 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-empty-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:1;fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07879,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68786 v -35.62518 h -7.4226 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42133 v 27.08894 h -21.0159 v -27.08894 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-37"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ff6400;stroke-width:2.26366;fill-opacity:1"
|
||||
d="m 693.50011,453.43569 v 6.79098 h 6.79099 l -6.79099,11.3184 v -6.79108 h -6.79098 z"
|
||||
id="path837" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-empty-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:1;fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07879,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68786 v -35.62518 h -7.4226 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42133 v 27.08894 h -21.0159 v -27.08894 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-37"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-full-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-3-7-0-3"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 8 4.6269531 L 8 7.6269531 L 11 7.6269531 L 8 12.626953 L 8 9.6269531 L 5 9.6269531 L 8 4.6269531 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-full-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07825,438.59195 v 5.9375 h -7.42188 v 35.625 h 29.6875 v -35.625 h -7.42186 v -5.9375 z"
|
||||
id="path878-5-1-2-7-6-6-5-3-7-0-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-good-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-3-2-6"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 6.9375 2.4375 L 9.0625 2.4375 L 9.0625 4.4375 L 11.5625 4.4375 L 11.5625 5.21875 L 4.4824219 5.21875 L 4.4824219 4.4375 L 6.9375 4.4375 L 6.9375 2.4375 z M 8 5.4453125 L 8 8.4453125 L 11 8.4453125 L 8 13.445312 L 8 10.445312 L 5 10.445312 L 8 5.4453125 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-good-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07814,438.59195 v 5.93732 h -7.42131 v 35.62518 h 29.68659 v -35.62518 h -7.42134 v -5.93732 z m 4.26814,4.26812 h 6.30768 v 5.93732 h 7.42261 v 2.31861 h -21.01718 v -2.31861 h 7.28689 z"
|
||||
id="path878-5-1-2-7-6-6-5-3-2-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,211 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-low-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-6-8"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 6.9375 2.4375 L 9.0625 2.4375 L 9.0625 4.4375 L 11.5625 4.4375 L 11.5625 10.78125 L 9.2226562 10.78125 L 8 12.820312 L 8 10.78125 L 4.4824219 10.78125 L 4.4824219 4.4375 L 6.9375 4.4375 L 6.9375 2.4375 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
<path
|
||||
id="path2431-5"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.7479"
|
||||
d="m 693.50015,449.93349 -8.90625,14.84375 h 8.90625 v 2.85279 h 3.62976 l 5.27649,-8.79029 h -8.90625 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-low-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.0788,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68785 v -35.62518 h -7.42131 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42134 v 18.83301 h -21.01591 v -18.83301 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="bluetooth-active-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:2.59765"
|
||||
d="m 693.50011,438.59195 c -7.92285,0 -14.2871,6.96171 -14.2871,15.58594 v 10.39062 c 0,8.62423 6.36425,15.58594 14.2871,15.58594 7.92286,0 14.28712,-6.96171 14.28712,-15.58594 v -10.39062 c 0,-8.62423 -6.36426,-15.58594 -14.28712,-15.58594 z m -1.29881,3.35097 11.01406,11.01408 -7.63712,6.4162 7.63712,6.41621 -11.01406,11.01406 v -14.59882 l -6.31232,5.29921 -1.6625,-1.97421 7.32539,-6.15645 -7.32539,-6.15645 1.6625,-1.97421 6.31232,5.29921 z m 2.59765,6.28633 v 8.41641 l 4.57188,-3.84453 z m 0,13.87149 v 8.41641 l 4.57188,-4.57188 z"
|
||||
id="path964-7" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="bluetooth-disabled-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:0.5;fill:#444444;fill-opacity:1;stroke-width:2.59765"
|
||||
d="m 693.50013,438.59195 c -2.91452,0 -5.61917,0.9452 -7.87416,2.56722 l 6.57533,6.57532 v -3.94723 h 1.29883 c 0.53965,0 1.02099,0.34528 1.21765,0.81177 l 7.46825,7.38709 1.0553,0.97412 -1.13648,0.89294 -2.07001,1.71486 7.7524,7.75238 v -9.14253 c 0,-8.63462 -6.37206,-15.58594 -14.28711,-15.58594 z m -14.28712,1.29883 -3.89649,3.89648 4.84524,4.84524 c -0.60345,1.72158 -0.94875,3.58506 -0.94875,5.54539 v 10.39062 c 0,8.63461 6.37205,15.58594 14.28712,15.58594 4.81871,0 9.02636,-2.60984 11.60827,-6.57532 l 2.67884,2.67883 3.89648,-3.89648 -4.27193,-4.27192 -10.18769,-10.18769 -1.80112,-1.80111 -0.62403,-0.62405 -2.59765,-2.59765 -9.22879,-9.22879 z m 15.58594,8.28002 v 2.16134 l 3.44494,3.44494 1.18213,-0.9792 z m -3.60222,11.49666 3.60222,3.60222 v 7.30591 l 3.65295,-3.65295 1.77575,1.77574 -5.50987,5.44899 c -0.0655,0.1556 -0.20729,0.28849 -0.32472,0.40588 -0.23483,0.23483 -0.53318,0.40589 -0.89293,0.40589 h -1.29883 v -12.82593 l -5.60121,4.62707 c -0.23509,0.23509 -0.53427,0.40589 -0.89294,0.40589 h -1.29883 v -1.29883 c 0,-0.39801 0.20522,-0.73586 0.48706,-0.97412 z"
|
||||
id="path993-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
|
@ -0,0 +1,227 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-high-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g941-3"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,437.61557,441.46252)"
|
||||
style="fill:#444444;fill-opacity:1">
|
||||
<path
|
||||
id="rect3018-7-6"
|
||||
d="m 1546.6784,-17.428459 c -4.9104,0 -8.8656,3.95524 -8.8656,8.8656597 V 21.339241 c 0,4.91042 3.9552,8.85986 8.8656,8.85986 h 13.8117 c 4.9104,0 8.8656,-3.94944 8.8656,-8.85986 V -8.5627993 c 0,-4.9104197 -3.9552,-8.8656597 -8.8656,-8.8656597 z m -71.1514,29.47876 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -9.7702,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.1465,21.14654 c 3.4722,3.47221 9.0639,3.47221 12.536,0 l 9.7703,-9.7702 c 3.4721,-3.47221 3.4721,-9.0638 0,-12.53601 l -21.1466,-21.14655 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 156.1087,0.0406 c -2.2657,0 -4.5319,0.87315 -6.268,2.60925 l -21.1466,21.14075 c -3.4721,3.47221 -3.4721,9.0638 0,12.53601 l 9.7703,9.7702 c 3.4722,3.47221 9.0638,3.47221 12.536,0 l 21.1465,-21.14654 c 3.4722,-3.47221 3.4722,-9.06381 0,-12.53601 l -9.7702,-9.76441 c -1.7361,-1.7361 -4.0023,-2.60925 -6.268,-2.60925 z m -195.3577,80.88105 c -4.9104,0 -8.8656,3.95524 -8.8656,8.865659 v 13.81165 c 0,4.91042 3.9552,8.86565 8.8656,8.86565 h 29.1425 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m 204.7104,0 c -4.9104,0 -8.8598,3.95524 -8.8598,8.865659 v 13.81165 c 0,4.91042 3.9494,8.86565 8.8598,8.86565 h 29.9021 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m -20.1724,64.367359 c -2.2657,0 -4.5319,0.86735 -6.268,2.60347 l -9.7644,9.77019 c -3.4722,3.47222 -3.4722,9.0638 0,12.53602 l 20.6073,20.60731 c 3.4722,3.47219 9.0638,3.47219 12.536,0 l 9.7702,-9.76442 c 3.4722,-3.47219 3.4722,-9.06381 0,-12.536 l -20.6131,-20.6131 c -1.7361,-1.73612 -4.0023,-2.60347 -6.268,-2.60347 z m -134.4693,0.0463 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -20.6073,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.7644,9.77019 c 3.4722,3.47222 9.0638,3.47222 12.536,0 l 20.6131,-20.60732 c 3.4722,-3.47219 3.4722,-9.0638 0,-12.53599 l -9.7702,-9.77021 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 60.3317,30.65582 c -4.9104,0 -8.8656,3.95523 -8.8656,8.86567 v 29.14246 c 0,4.91041 3.9552,8.86564 8.8656,8.86564 h 13.8117 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86564 V 196.9071 c 0,-4.91044 -3.9552,-8.86567 -8.8656,-8.86567 z"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1559.3362,108.7434 V 14.114521 c -51.9828,0 -94.6289,42.64609 -94.6289,94.628879 0,51.98282 42.6461,94.62891 94.6289,94.62891 z"
|
||||
id="path3042-0-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 1553.5842,203.37231 c -52.2509,0 -94.6289,-42.37799 -94.6289,-94.62892 0,-52.250919 42.378,-94.628869 94.6289,-94.628869 52.251,0 94.629,42.37795 94.629,94.628869 0,52.25093 -42.378,94.62892 -94.629,94.62892 z m 0,-165.600599 c -39.1921,0 -70.9716,31.7007 -70.9716,70.971679 0,39.19214 31.7007,70.97169 70.9716,70.97169 39.1922,0 70.9717,-31.70067 70.9717,-70.97169 0,-39.192129 -31.7007,-70.971679 -70.9717,-70.971679"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-9-5" />
|
||||
<path
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 1553.3987,108.74343 v 94.62888 c 51.9828,0 94.6289,-42.64609 94.6289,-94.62888 0,-51.982809 -42.6461,-94.628909 -94.6289,-94.628909 z"
|
||||
id="path3042-0-3-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.5 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-low-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g925-3"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,843.31522,441.46252)"
|
||||
style="fill:#444444;fill-opacity:1">
|
||||
<path
|
||||
id="rect3018-5-6"
|
||||
d="m -916.49717,-17.428459 c -4.91044,0 -8.86567,3.95524 -8.86567,8.8656597 V 21.339241 c 0,4.91042 3.95523,8.85986 8.86567,8.85986 h 13.81163 c 4.91043,0 8.86567,-3.94944 8.86567,-8.85986 V -8.5627993 c 0,-4.9104197 -3.95524,-8.8656597 -8.86567,-8.8656597 z m -71.15144,29.47876 c -2.26572,0 -4.53192,0.86735 -6.26801,2.60345 l -9.77018,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.14652,21.14654 c 3.47222,3.47221 9.06383,3.47221 12.53602,0 l 9.77021,-9.7702 c 3.47219,-3.47221 3.47219,-9.0638 0,-12.53601 l -21.14655,-21.14655 c -1.73613,-1.7361 -4.00232,-2.60345 -6.26801,-2.60345 z m 156.10872,0.0406 c -2.26572,0 -4.53192,0.87315 -6.26801,2.60925 l -21.14656,21.14075 c -3.47219,3.47221 -3.47219,9.0638 0,12.53601 l 9.77022,9.7702 c 3.47219,3.47221 9.0638,3.47221 12.53599,0 l 21.14656,-21.14654 c 3.47219,-3.47221 3.47219,-9.06381 0,-12.53601 l -9.77022,-9.76441 c -1.73609,-1.7361 -4.00229,-2.60925 -6.26798,-2.60925 z m -195.35771,80.88105 c -4.9104,0 -8.8656,3.95524 -8.8656,8.865659 v 13.81165 c 0,4.91043 3.9552,8.86565 8.8656,8.86565 h 29.14247 c 4.91043,0 8.86567,-3.95522 8.86567,-8.86565 v -13.81165 c 0,-4.910419 -3.95524,-8.865659 -8.86567,-8.865659 z m 204.71043,0 c -4.91043,0 -8.85988,3.95524 -8.85988,8.865659 v 13.81165 c 0,4.91043 3.94945,8.86565 8.85988,8.86565 h 29.90202 c 4.91043,0 8.86567,-3.95522 8.86567,-8.86565 v -13.81165 c 0,-4.910419 -3.95524,-8.865659 -8.86567,-8.865659 z m -20.17245,64.367359 c -2.26569,0 -4.53188,0.86735 -6.26798,2.60347 l -9.76443,9.77019 c -3.47219,3.47222 -3.47219,9.0638 0,12.53602 l 20.60732,20.60731 c 3.47222,3.47219 9.0638,3.47219 12.53602,0 l 9.77018,-9.76442 c 3.47222,-3.47219 3.47222,-9.06381 0,-12.536 l -20.6131,-20.6131 c -1.73609,-1.73612 -4.00229,-2.60347 -6.26801,-2.60347 z m -134.46929,0.0463 c -2.26569,0 -4.53192,0.86735 -6.26801,2.60345 l -20.60728,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.76439,9.77019 c 3.47219,3.47222 9.0638,3.47222 12.53599,0 l 20.61313,-20.60732 c 3.47219,-3.47219 3.47219,-9.0638 0,-12.53599 l -9.77021,-9.77021 c -1.7361,-1.7361 -4.00229,-2.60345 -6.26801,-2.60345 z m 60.33174,30.65582 c -4.91044,0 -8.86567,3.95523 -8.86567,8.86567 v 29.14246 c 0,4.91041 3.95523,8.86564 8.86567,8.86564 h 13.81163 c 4.91043,0 8.86567,-3.95523 8.86567,-8.86564 V 196.9071 c 0,-4.91044 -3.95524,-8.86567 -8.86567,-8.86567 z"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3042-3-7"
|
||||
d="m -942.31829,22.394541 c -32.98198,14.83917 -56.15112,48.04618 -56.15112,86.348869 0,38.30275 23.16914,71.5097 56.15112,86.34888 z"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -909.59136,203.37231 c -52.25092,0 -94.62894,-42.37799 -94.62894,-94.62892 0,-52.250919 42.37802,-94.628869 94.62894,-94.628869 52.25092,0 94.62891,42.37795 94.62891,94.628869 0,52.25093 -42.37799,94.62892 -94.62891,94.62892 z m 0,-165.600599 c -39.19213,0 -70.97168,31.7007 -70.97168,70.971679 0,39.19214 31.7007,70.97169 70.97168,70.97169 39.19214,0 70.97168,-31.70067 70.97168,-70.97169 0,-39.192129 -31.70069,-70.971679 -70.97168,-70.971679"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-5-5" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-medium-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g930-3"
|
||||
style="fill:#444444;fill-opacity:1"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,708.9831,441.46252)">
|
||||
<path
|
||||
id="rect3018-6"
|
||||
d="m -100.90958,-17.428459 c -4.9104,0 -8.8657,3.95524 -8.8657,8.8656597 V 21.339241 c 0,4.91042 3.9553,8.85986 8.8657,8.85986 h 13.811599 c 4.9105,0 8.8657,-3.94944 8.8657,-8.85986 V -8.5627993 c 0,-4.9104197 -3.9552,-8.8656597 -8.8657,-8.8656597 z m -71.1514,29.47876 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -9.7702,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.1465,21.14654 c 3.4722,3.47221 9.0638,3.47221 12.536,0 l 9.7702,-9.7702 c 3.4722,-3.47221 3.4722,-9.0638 0,-12.53601 l -21.1465,-21.14655 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 156.108699,0.0406 c -2.2657,0 -4.5319,0.87315 -6.268,2.60925 l -21.1466,21.14075 c -3.4722,3.47221 -3.4722,9.0638 0,12.53601 l 9.7702,9.7702 c 3.4722,3.47221 9.0638,3.47221 12.536,0 L 0.08591892,37.000571 c 3.47219998,-3.47221 3.47219998,-9.06381 0,-12.53601 l -9.77020002,-9.76441 c -1.7360999,-1.7361 -4.0022999,-2.60925 -6.2679999,-2.60925 z m -195.357699,80.88105 c -4.9104,0 -8.8657,3.95524 -8.8657,8.865659 v 13.81165 c 0,4.91041 3.9553,8.86565 8.8657,8.86565 h 29.1425 c 4.9104,0 8.8656,-3.95524 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m 204.7103989,0 c -4.9103999,0 -8.8598999,3.95524 -8.8598999,8.865659 v 13.81165 c 0,4.91041 3.9495,8.86565 8.8598999,8.86565 H 23.302419 c 4.9105,0 8.8657,-3.95524 8.8657,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8657,-8.865659 z M -26.771981,157.33931 c -2.2657,0 -4.5319,0.86735 -6.268,2.60347 l -9.7644,9.77019 c -3.4722,3.47222 -3.4722,9.0638 0,12.53602 l 20.6073,20.60731 c 3.4722,3.47219 9.0638,3.47219 12.5359999,0 l 9.77020002,-9.76442 c 3.47219998,-3.47219 3.47219998,-9.06381 0,-12.536 L -20.503981,159.94278 c -1.7361,-1.73612 -4.0023,-2.60347 -6.268,-2.60347 z m -134.469299,0.0463 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -20.6073,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.7644,9.77019 c 3.4722,3.47222 9.0638,3.47222 12.536,0 l 20.6131,-20.60732 c 3.4722,-3.47219 3.4722,-9.0638 0,-12.53599 l -9.7702,-9.77021 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 60.3317,30.65582 c -4.9104,0 -8.8657,3.95523 -8.8657,8.86567 v 29.14246 c 0,4.91041 3.9553,8.86564 8.8657,8.86564 h 13.811599 c 4.9105,0 8.8657,-3.95523 8.8657,-8.86564 V 196.9071 c 0,-4.91044 -3.9552,-8.86567 -8.8657,-8.86567 z"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -88.251781,108.7434 V 14.114521 c -51.982799,0 -94.628899,42.64609 -94.628899,94.628879 0,51.98282 42.6461,94.62891 94.628899,94.62891 z"
|
||||
id="path3042-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -94.003781,203.37231 c -52.250899,0 -94.628899,-42.37799 -94.628899,-94.62892 0,-52.250919 42.378,-94.628869 94.628899,-94.628869 52.2509,0 94.62889992,42.37795 94.62889992,94.628869 0,52.25093 -42.37799992,94.62892 -94.62889992,94.62892 z m 0,-165.600599 c -39.192099,0 -70.971699,31.7007 -70.971699,70.971679 0,39.19214 31.7007,70.97169 70.971699,70.97169 39.1922,0 70.9717,-31.70067 70.9717,-70.97169 0,-39.192129 -31.7007,-70.971679 -70.9717,-70.971679"
|
||||
style="color:#353535;fill:#444444;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-5" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 8 1 L 3.5 7 L 6 7 L 6 13 L 10 13 L 10 7 L 12.5 7 L 8 1 z M 1 14 L 1 16 L 15 16 L 15 14 L 1 14 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 217 B |
|
@ -0,0 +1,212 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="edit-delete-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:2.96875"
|
||||
class="ColorScheme-Text"
|
||||
d="m 689.047,438.59195 c -2.96875,0 -2.96875,2.96875 -2.96875,2.96875 H 677.172 c 0,0 -2.96875,0 -2.96875,2.96875 v 2.96875 H 712.797 v -2.96875 c 0,-2.96875 -2.96875,-2.96875 -2.96875,-2.96875 H 700.922 c 0,0 0,-2.96875 -2.96875,-2.96875 z m -11.875,11.875 v 26.71875 c 0,1.54375 1.425,2.96875 2.96875,2.96875 h 26.71875 c 1.54375,0 2.96875,-1.425 2.96875,-2.96875 v -26.71875 z m 5.9375,5.9375 h 2.69043 c 0.84123,0 1.5902,0.2804 2.02362,0.66101 l 5.67657,4.95178 5.67658,-4.95178 c 0.43342,-0.38061 1.18238,-0.66101 2.02362,-0.66101 h 2.69043 v 2.18597 c 0,0.59743 -0.24278,1.1422 -0.67841,1.52497 l -5.9433,5.19531 5.9433,5.19531 c 0.37738,0.3314 0.56984,0.87783 0.67841,1.66992 v 2.04102 h -2.69043 c -0.84124,0 -1.5902,-0.2804 -2.02362,-0.66101 l -5.67658,-4.98078 -5.67657,4.98078 c -0.43342,0.38061 -1.18239,0.66101 -2.02362,0.66101 h -2.69043 v -2.18598 c 0,-0.59742 0.24319,-1.14278 0.6784,-1.52496 l 5.9433,-5.19531 -5.9433,-5.19531 c -0.43649,-0.38395 -0.6784,-0.92754 -0.6784,-1.52497 z"
|
||||
id="path998" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -0,0 +1,228 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="emblem-system-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="4.1288247"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
aria-label="⚙"
|
||||
id="text865"
|
||||
style="font-style:normal;font-weight:normal;font-size:118.75px;line-height:1.25;font-family:sans-serif;fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.96875"
|
||||
transform="matrix(0.43703216,0,0,0.43703216,398.73583,279.33429)">
|
||||
<path
|
||||
d="m 669.42371,368.09363 q 2.49328,-0.28992 5.04455,-0.28992 2.55127,0 5.04456,0.28992 l 1.50757,10.84289 q 3.88488,0.75379 7.59582,2.49329 l 7.30591,-7.65381 q 4.40674,2.60925 8.11767,6.32019 l -4.8706,9.04541 q 2.72522,2.89917 4.63867,6.37818 l 9.56726,-1.79749 q 2.14539,4.87061 3.07312,10.20508 l -8.58154,4.00085 q 0.23193,2.02942 0.23193,4.00086 0,1.97143 -0.23193,4.00085 l 8.58154,4.05884 q -0.92773,5.27649 -3.07312,10.14709 l -9.56726,-1.79748 q -1.91345,3.479 -4.63867,6.43616 l 4.8706,8.98742 q -3.71093,3.71094 -8.11767,6.37818 l -7.30591,-7.65381 q -3.71094,1.68152 -7.59582,2.49328 l -1.50757,10.78492 q -2.49329,0.3479 -5.04456,0.3479 -2.55127,0 -5.04455,-0.3479 l -1.50757,-10.78492 q -3.88489,-0.81176 -7.59583,-2.49328 l -7.30591,7.65381 q -4.40673,-2.66724 -8.11767,-6.37818 l 4.8706,-8.98742 q -2.72522,-2.89917 -4.63867,-6.43616 l -9.56726,1.79748 q -2.14538,-4.8706 -3.07312,-10.14709 l 8.58154,-4.05884 q -0.23193,-2.02942 -0.23193,-4.00085 0,-1.97144 0.23193,-4.00086 l -8.58154,-4.00085 q 0.92774,-5.33447 3.07312,-10.20508 l 9.56726,1.79749 q 1.91345,-3.47901 4.63867,-6.43616 l -4.8706,-8.98743 q 3.71094,-3.71094 8.11767,-6.32019 l 7.30591,7.59583 q 3.71094,-1.68152 7.59583,-2.43531 z m 23.07739,25.86059 q -7.47986,-7.53784 -18.03284,-7.53784 -10.55298,0 -18.03284,7.53784 -7.47985,7.47986 -7.47985,18.03284 0,10.495 7.47985,17.97485 7.47986,7.47986 18.03284,7.47986 10.55298,0 18.03284,-7.47986 7.47986,-7.47985 7.47986,-17.97485 0,-10.55298 -7.47986,-18.03284 z m -11.71265,11.65467 q 2.66724,2.60925 2.66724,6.32019 0,3.71093 -2.66724,6.37817 -2.60925,2.60925 -6.32019,2.60925 -3.71094,0 -6.37817,-2.60925 -2.60926,-2.66724 -2.60926,-6.37817 0,-3.71094 2.60926,-6.32019 2.66723,-2.66724 6.37817,-2.66724 3.71094,0 6.32019,2.66724 z"
|
||||
style="stroke-width:2.96875;fill:#444444;fill-opacity:1"
|
||||
id="path867" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:118.75px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.96875"
|
||||
x="616.66028"
|
||||
y="450.21933"
|
||||
id="text872"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan870"
|
||||
x="616.66028"
|
||||
y="450.21933"
|
||||
style="stroke-width:2.96875"></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
62
airootfs/etc/skel/.config/nwg-panel/icons_dark/github.svg
Normal file
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 4.2333333 4.2333335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
sodipodi:docname="github.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="36.065789"
|
||||
inkscape:cx="8.0294604"
|
||||
inkscape:cy="9.3369724"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-global="false" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-280.06665)">
|
||||
<path
|
||||
d="m 2.116667,280.39516 c -1.0226589,0 -1.85208367,0.82927 -1.85208367,1.85208 0,0.81831 0.53062192,1.51254 1.26667087,1.75748 0.09245,0.0172 0.1223919,-0.0403 0.1223919,-0.0891 v -0.3448 c -0.515188,0.11205 -0.6224545,-0.21854 -0.6224545,-0.21854 -0.0842696,-0.21407 -0.20573567,-0.27103 -0.20573567,-0.27103 -0.16807644,-0.11497 0.0128104,-0.1125 0.0128104,-0.1125 0.18598017,0.0129 0.28383187,0.19092 0.28383187,0.19092 0.1651441,0.28305 0.4332332,0.20125 0.5389563,0.15387 0.016514,-0.11962 0.064514,-0.20141 0.1176074,-0.24756 -0.411317,-0.0471 -0.84377856,-0.20589 -0.84377856,-0.91539 0,-0.20235 0.072385,-0.36748 0.19076466,-0.49714 -0.019138,-0.0468 -0.082572,-0.23521 0.018057,-0.49018 0,0 0.155575,-0.0497 0.5094773,0.18985 0.1477037,-0.041 0.306057,-0.0616 0.463484,-0.0624 0.1574272,5.8e-4 0.3159346,0.0213 0.463947,0.0624 0.3535936,-0.23955 0.50886,-0.18985 0.50886,-0.18985 0.1007842,0.25513 0.037351,0.44358 0.018212,0.49018 0.1188419,0.12966 0.1906101,0.29495 0.1906101,0.49714 0,0.71136 -0.4332332,0.868 -0.8456305,0.91385 0.066366,0.0574 0.127022,0.17008 0.127022,0.34294 v 0.50824 c 0,0.0493 0.029634,0.10712 0.1236266,0.0889 0.7354317,-0.24524 1.2654364,-0.93931 1.2654364,-1.75732 0,-1.02281 -0.8292705,-1.85208 -1.852083,-1.85208 z"
|
||||
id="path839"
|
||||
style="stroke-width:0.15434;fill:#444444;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="go-down-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="2.1232227"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:0.833333;fill-opacity:1"
|
||||
d="M 7.1666666,3.0000002 V 9.6666671 L 4.2499998,6.7500003 2.9999998,8.0000004 8,13 13,8.0000004 11.75,6.7500003 8.8333333,9.6666671 V 3.0000002 Z"
|
||||
id="path2-3" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="go-next-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="2.1232227"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
inkscape:document-rotation="0" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:0.833333;fill-opacity:1"
|
||||
d="M 2.9999999,8.8333337 H 9.6666668 L 6.75,11.75 8.0000001,13 13,8.0000004 8.0000001,3.0000002 6.75,4.2500002 9.6666668,7.166667 H 2.9999999 Z"
|
||||
id="path2-3" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="list-add-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-4"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-3"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="11.809464"
|
||||
inkscape:cy="7.560791"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:2.96875"
|
||||
class="ColorScheme-Text"
|
||||
d="m 690.5314,438.59196 v 17.8125 h -17.8125 v 5.9375 h 17.8125 v 17.8125 h 5.9375 v -17.8125 h 17.8125 v -5.9375 h -17.8125 v -17.8125 z"
|
||||
id="path1176" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 2,2 V 14 H 6 V 2 Z"/>
|
||||
<path style="fill:#444444" d="M 10,2 V 14 H 14 V 2 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 197 B |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 3,2 V 14 L 14,8 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 139 B |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 0,4 V 12 H 2 V 8 4 Z M 2,8 9,12 V 8 4 Z M 9,8 16,12 V 4 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 179 B |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#444444" d="M 16,4 V 12 H 14 V 8 4 Z M 14,8 7,12 V 8 4 Z M 7,8 0,12 V 4 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 181 B |
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 4.2333333 4.2333335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
sodipodi:docname="network-wired-disconnected-symbolic.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="36.065789"
|
||||
inkscape:cx="8.0294604"
|
||||
inkscape:cy="9.3369724"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-global="false" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-280.06665)">
|
||||
<path
|
||||
id="path2101"
|
||||
style="font-style:normal;font-weight:normal;font-size:4.34112px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;fill:#444444;fill-opacity:0.50149226;stroke:none;stroke-width:0.296344"
|
||||
d="M 2.0039062 1 C 1.7949146 1 1.6177709 1.0724823 1.4707031 1.21875 C 1.3313731 1.3570807 1.2617188 1.5307096 1.2617188 1.7382812 L 1.2617188 9.8632812 C 1.2617188 10.071155 1.3313724 10.248301 1.4707031 10.394531 C 1.6177698 10.53324 1.7948926 10.603516 2.0039062 10.603516 L 7.2773438 10.603516 L 7.2773438 11.875 L 8.015625 12.613281 L 8.7636719 11.865234 L 8.7636719 10.603516 L 14.025391 10.603516 C 14.23438 10.603516 14.407549 10.53324 14.546875 10.394531 C 14.693944 10.248264 14.767578 10.070664 14.767578 9.8632812 L 14.767578 1.7382812 C 14.767578 1.5304072 14.69394 1.3570051 14.546875 1.21875 C 14.40755 1.0724823 14.234385 1 14.025391 1 L 2.0039062 1 z M 2.7480469 2.4765625 L 13.28125 2.4765625 L 13.28125 9.125 L 2.7480469 9.125 L 2.7480469 2.4765625 z M 1.2617188 13.017578 L 1.2617188 14.507812 L 4.3066406 14.507812 L 6.1191406 14.507812 L 6.921875 13.705078 L 6.234375 13.017578 L 1.2617188 13.017578 z M 9.7949219 13.017578 L 9.1074219 13.705078 L 9.9101562 14.507812 L 12.539062 14.507812 L 14.767578 14.507812 L 14.767578 13.017578 L 9.7949219 13.017578 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,280.06665)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 4.2333333 4.2333335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
sodipodi:docname="network-wired-symbolic.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="36.065789"
|
||||
inkscape:cx="8.0294604"
|
||||
inkscape:cy="9.3369724"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-global="false" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-280.06665)">
|
||||
<path
|
||||
id="path2101"
|
||||
style="font-style:normal;font-weight:normal;font-size:4.34112px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;fill:#444444;fill-opacity:1;stroke:none;stroke-width:0.296344"
|
||||
d="M 2.0039062 1 C 1.7949146 1 1.6177709 1.0724823 1.4707031 1.21875 C 1.3313731 1.3570807 1.2617188 1.5307096 1.2617188 1.7382812 L 1.2617188 9.8632812 C 1.2617188 10.071155 1.3313724 10.248301 1.4707031 10.394531 C 1.6177698 10.53324 1.7948926 10.603516 2.0039062 10.603516 L 7.2773438 10.603516 L 7.2773438 12.642578 A 1.2947949 1.2947949 0 0 0 6.9179688 13.017578 L 1.2617188 13.017578 L 1.2617188 14.507812 L 4.3066406 14.507812 L 7 14.507812 A 1.2947949 1.2947949 0 0 0 8.0136719 15 A 1.2947949 1.2947949 0 0 0 9.0292969 14.507812 L 12.539062 14.507812 L 14.767578 14.507812 L 14.767578 13.017578 L 9.1113281 13.017578 A 1.2947949 1.2947949 0 0 0 8.7636719 12.650391 L 8.7636719 10.603516 L 14.025391 10.603516 C 14.23438 10.603516 14.407549 10.53324 14.546875 10.394531 C 14.693944 10.248264 14.767578 10.070664 14.767578 9.8632812 L 14.767578 1.7382812 C 14.767578 1.5304072 14.69394 1.3570051 14.546875 1.21875 C 14.40755 1.0724823 14.234385 1 14.025391 1 L 2.0039062 1 z M 2.7480469 2.4765625 L 13.28125 2.4765625 L 13.28125 9.125 L 2.7480469 9.125 L 2.7480469 2.4765625 z "
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0,280.06665)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
|
@ -0,0 +1,221 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="network-wireless-connected-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-4"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-3"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="11.809464"
|
||||
inkscape:cy="7.560791"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:2.59766"
|
||||
d="m 693.50016,441.18961 c -7.92442,0 -15.3766,2.78781 -20.78126,7.793 l 20.78126,28.5742 20.78124,-28.5742 c -5.40574,-5.00542 -12.85582,-7.793 -20.78124,-7.793 z m 0,5.19532 c 5.00933,0 9.44369,1.66573 13.3282,4.01825 l -13.3282,18.32564 -13.32822,-18.32564 c 3.88451,-2.35232 8.31982,-4.01825 13.32822,-4.01825 z"
|
||||
id="path2125" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
|
@ -0,0 +1,221 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="network-wireless-disconnected-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-4"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-3"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="11.809464"
|
||||
inkscape:cy="10.452904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path871"
|
||||
style="opacity:0.5;fill:#444444;fill-opacity:1;stroke-width:2.59823"
|
||||
d="m 693.50015,441.18961 c -7.92441,0 -15.37657,2.78904 -20.78125,7.79642 l 20.78125,28.58685 5.24605,-7.21777 c -0.0199,-0.19294 -0.0507,-0.38489 -0.0507,-0.57864 v -2.59881 -2.5988 h 4.25164 l 11.3343,-15.59283 c -5.40572,-5.00764 -12.8558,-7.79642 -20.78125,-7.79642 z m 7.79297,25.98805 v 2.59881 c 0,0.72767 0.25976,1.40335 0.72734,1.87114 l 2.02617,2.02707 -2.02617,2.02707 c -0.46758,0.49377 -0.72734,1.16946 -0.72734,1.87113 v 2.59881 h 2.59766 c 0.72734,0 1.40273,-0.25988 1.87031,-0.72767 l 2.02617,-2.02706 2.02617,2.02706 c 0.46758,0.46779 1.16895,0.72767 1.87031,0.72767 h 2.59766 v -2.59881 c 0,-0.70167 -0.25976,-1.37736 -0.72734,-1.87113 l -2.02617,-2.02707 2.02617,-2.02707 c 0.46758,-0.46779 0.72734,-1.14347 0.72734,-1.87114 v -2.59881 h -2.59766 c -0.70136,0 -1.40273,0.25989 -1.87031,0.72767 l -2.02617,2.05306 -2.02617,-2.05306 c -0.46758,-0.46778 -1.14297,-0.72767 -1.87031,-0.72767 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.2 KiB |
92
airootfs/etc/skel/.config/nwg-panel/icons_dark/nwg-panel.svg
Normal file
|
@ -0,0 +1,92 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 4.2333332 4.2333335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="nwg-panel.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="32.840717"
|
||||
inkscape:cx="8.7371413"
|
||||
inkscape:cy="8.2795853"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="0.26458333,3.3528398"
|
||||
orientation="-1,0"
|
||||
id="guide839"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="3.96875,2.1136265"
|
||||
orientation="-1,0"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-0.51355625,0.26458333"
|
||||
orientation="0,1"
|
||||
id="guide843"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-0.57070625,3.96875"
|
||||
orientation="0,1"
|
||||
id="guide845"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
inkscape:label="Warstwa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect1314"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;stroke-width:0.914287;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 8 0 C 3.5680002 0 4.9515944e-17 3.5680002 0 8 C 0 10.458571 1.1015852 12.648052 2.8359375 14.113281 L 2.8359375 5.5683594 L 6.1660156 5.5683594 L 6.1660156 7.09375 C 6.6683761 6.4859561 7.2012448 6.0391976 7.765625 5.7539062 C 8.3300052 5.4624132 8.9545009 5.3183594 9.6367188 5.3183594 C 10.839903 5.3183594 11.750896 5.6857925 12.371094 6.4238281 C 12.997494 7.161864 13.310547 8.2347286 13.310547 9.6425781 L 13.310547 13.980469 C 14.958298 12.517143 16 10.387198 16 8 C 16 3.5680002 12.432 4.9515944e-17 8 0 z M 8.3984375 7.8300781 C 7.7038155 7.8300781 7.1586455 8.0990995 6.7617188 8.6386719 C 6.3647923 9.1720416 6.1660156 9.9124251 6.1660156 10.861328 L 6.1660156 15.78125 C 6.7553067 15.91865 7.367683 16 8 16 C 8.6780115 16 9.3330476 15.907324 9.9609375 15.75 L 9.9609375 14.955078 L 9.9609375 11.130859 C 9.9609375 10.231572 9.9398985 9.6125933 9.8964844 9.2714844 C 9.8592737 8.9303755 9.790639 8.6788297 9.6914062 8.5175781 C 9.5611637 8.3005098 9.3853797 8.1334636 9.1621094 8.015625 C 8.9388376 7.8915859 8.6837281 7.8300781 8.3984375 7.8300781 z "
|
||||
transform="scale(0.26458333)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
50
airootfs/etc/skel/.config/nwg-panel/icons_dark/nwg-shell.svg
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 48 48"
|
||||
version="1.1"
|
||||
xml:space="preserve"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||
id="svg16"
|
||||
sodipodi:docname="nwg-shell.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
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"><defs
|
||||
id="defs20">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</defs><sodipodi:namedview
|
||||
id="namedview18"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
inkscape:zoom="5.5573362"
|
||||
inkscape:cx="-43.096187"
|
||||
inkscape:cy="27.801089"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="732"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg16"
|
||||
inkscape:snap-global="false" />
|
||||
<path
|
||||
id="rect2"
|
||||
style="fill:#444444;stroke-width:0.13171;fill-opacity:1"
|
||||
d="M 24 2 L 10.800781 15.199219 L 28.400391 32.800781 L 24 37.199219 L 17.021484 30.222656 L 17.021484 39.021484 L 24 46 L 37.199219 32.800781 L 19.599609 15.199219 L 24 10.798828 L 30.976562 17.777344 L 30.976562 8.9765625 L 24 2 z M 37.199219 32.800781 L 46 24 L 37.199219 15.199219 L 37.199219 32.800781 z M 10.800781 15.199219 L 2 24 L 10.800781 32.800781 L 10.800781 15.199219 z " />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1"
|
||||
id="svg24"
|
||||
sodipodi:docname="nwgocc-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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="defs28" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1043"
|
||||
id="namedview26"
|
||||
showgrid="false"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="26.056955"
|
||||
inkscape:cx="8.8151659"
|
||||
inkscape:cy="10.210456"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg24"
|
||||
inkscape:document-rotation="0">
|
||||
<sodipodi:guide
|
||||
position="4,50.350711"
|
||||
orientation="-1,0"
|
||||
id="guide855"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="44,22.293839"
|
||||
orientation="-1,0"
|
||||
id="guide857"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.36019,44"
|
||||
orientation="0,1"
|
||||
id="guide859"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.36019,4"
|
||||
orientation="0,1"
|
||||
id="guide861"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g950"
|
||||
transform="matrix(0.40601126,0,0,0.40575587,-1.9040629,-1.7381404)"
|
||||
style="stroke:none">
|
||||
<path
|
||||
id="path2-3-6"
|
||||
style="opacity:1;fill:#444444;fill-opacity:0.1996284;stroke:none;stroke-width:0.565577;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 28.740834,41.240899 0.372092,-4.53247 a 13.663538,13.546422 0 0 0 4.000428,-2.289807 l 4.173848,1.946336 4.347266,-7.489018 -3.776498,-2.586134 a 13.663538,13.546422 0 0 0 0.198675,-2.289808 13.663538,13.546422 0 0 0 -0.198675,-2.289807 l 3.776498,-2.586136 -4.347266,-7.489016 -4.148592,1.946336 A 13.663538,13.546422 0 0 0 29.112926,11.315139 L 28.740834,6.7590967 H 20.0463 L 19.674208,11.291569 A 13.663538,13.546422 0 0 0 15.9398,13.367548 v 3.86405 c 1.989513,-2.478227 5.038387,-4.072826 8.452083,-4.072826 5.972373,0 10.84291,4.868854 10.842911,10.841226 0,5.972371 -4.870538,10.841228 -10.842911,10.841228 -3.413697,0 -6.46257,-1.594601 -8.452083,-4.072827 v 3.880887 a 13.663538,13.546422 0 0 0 3.734408,2.035572 l 0.372092,4.556041 z m -4.348951,-9.002645 c 4.56587,0 8.239939,-3.672386 8.239939,-8.238256 -10e-7,-4.565868 -3.674069,-8.238255 -8.239939,-8.238255 -1.156785,0 -2.255983,0.237112 -3.252874,0.663371 v 3.853947 a 4.9685596,4.9259717 0 0 1 3.254558,-1.205516 4.9685596,4.9259717 0 0 1 4.968545,4.926453 4.9685596,4.9259717 0 0 1 -4.968545,4.926454 4.9685596,4.9259717 0 0 1 -3.254558,-1.205516 v 3.853947 c 0.996891,0.426258 2.096089,0.663371 3.252874,0.663371 z" />
|
||||
<path
|
||||
id="path2-3"
|
||||
style="opacity:1;fill:#444444;fill-opacity:1;stroke:none;stroke-width:2.4736"
|
||||
d="m 20.0463,6.7590986 -0.372092,4.5324704 a 13.663538,13.546422 0 0 0 -4.000428,2.289807 l -4.173848,-1.946336 -4.347266,7.489018 3.776498,2.586134 A 13.663538,13.546422 0 0 0 10.730489,24 a 13.663538,13.546422 0 0 0 0.198675,2.289807 l -3.776498,2.586136 4.347266,7.489016 4.148592,-1.946336 a 13.663538,13.546422 0 0 0 4.025684,2.266236 l 0.372092,4.556042 h 8.694534 l 0.372092,-4.532472 A 13.663538,13.546422 0 0 0 32.847334,34.63245 V 30.7684 c -1.989513,2.478227 -5.038387,4.072826 -8.452083,4.072826 -5.972373,0 -10.84291,-4.868854 -10.842911,-10.841226 0,-5.972371 4.870538,-10.841228 10.842911,-10.841228 3.413697,0 6.46257,1.594601 8.452083,4.072827 V 13.350712 A 13.663538,13.546422 0 0 0 29.112926,11.31514 L 28.740834,6.7590986 Z m 4.348951,9.0026454 c -4.56587,0 -8.239939,3.672386 -8.239939,8.238256 1e-6,4.565868 3.674069,8.238255 8.239939,8.238255 1.156785,0 2.255983,-0.237112 3.252874,-0.663371 V 27.720937 A 4.9685596,4.9259717 0 0 1 24.393567,28.926453 4.9685596,4.9259717 0 0 1 19.425022,24 a 4.9685596,4.9259717 0 0 1 4.968545,-4.926454 4.9685596,4.9259717 0 0 1 3.254558,1.205516 v -3.853947 c -0.996891,-0.426258 -2.096089,-0.663371 -3.252874,-0.663371 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5 KiB |
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="pan-down-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="8.2274882"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
inkscape:document-rotation="0" />
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1"
|
||||
d="M 13,6 8,11 3,6 Z"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="pan-end-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="8.2274882"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1"
|
||||
d="M 6,13 11,8 6,3 Z"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="system-lock-screen.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-4"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-3"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="11.809464"
|
||||
inkscape:cy="10.452904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path858"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:0.928569"
|
||||
d="M 8 1.5 C 5.9422821 1.5 4.2851562 3.1571394 4.2851562 5.2148438 L 4.2851562 7.0722656 L 3.3574219 7.0722656 C 2.8429933 7.0722656 2.4277344 7.4855747 2.4277344 8 L 2.4277344 13.572266 C 2.4277344 14.086691 2.8429933 14.5 3.3574219 14.5 L 12.642578 14.5 C 13.157013 14.5 13.572266 14.086688 13.572266 13.572266 L 13.572266 8 C 13.572266 7.4855747 13.157013 7.0722656 12.642578 7.0722656 L 11.714844 7.0722656 L 11.714844 5.2148438 C 11.714844 3.1571394 10.057708 1.5 8 1.5 z M 8 3.3574219 C 9.0288572 3.3574219 9.8574219 4.1859932 9.8574219 5.2148438 L 9.8574219 7.0722656 L 6.1425781 7.0722656 L 6.1425781 5.2148438 C 6.1425781 4.1859932 6.9711394 3.3574219 8 3.3574219 z M 8 10.363281 A 1.3255516 1.3255516 0 0 1 9.3261719 11.689453 A 1.3255516 1.3255516 0 0 1 8 13.013672 A 1.3255516 1.3255516 0 0 1 6.6738281 11.689453 A 1.3255516 1.3255516 0 0 1 8 10.363281 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.2 KiB |
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="system-shutdown-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<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="defs10" />
|
||||
<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="1020"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="49"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:document-rotation="0" />
|
||||
<path
|
||||
id="path4"
|
||||
style="fill:#444444;fill-opacity:1"
|
||||
d="m 11,3 c -0.552,0 -1,0.4477 -1,1 0,0.2839 0.102,0.5767 0.329,0.748 C 11.358,5.525 11.998,6.7108 12,8 12,10.209 10.209,12 8,12 5.7909,12 4,10.209 4,8 4.0024,6.7105 4.644,5.5253 5.6719,4.7471 5.8981,4.5759 5.9994,4.2833 6,4 6,3.4477 5.5523,3 5,3 4.7151,3 4.4724,3.1511 4.2539,3.334 2.8611,4.4998 2.0063,6.1837 2,8 c 0,3.314 2.6863,6 6,6 3.314,0 6,-2.686 6,-6 C 13.996,6.1678 13.137,4.4602 11.714,3.2998 11.504,3.1282 11.267,3 11,3 Z M 8,1 C 8.554,1 9,1.446 9,2 V 7 C 9,7.554 8.554,8 8,8 7.446,8 7,7.554 7,7 V 2 C 7,1.446 7.446,1 8,1 Z" />
|
||||
</svg>
|
After Width: | Height: | Size: 2 KiB |
|
@ -0,0 +1,221 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="user-available-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-4"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
<style
|
||||
id="current-color-scheme-3"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="11.809464"
|
||||
inkscape:cy="10.452904"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:3.1971"
|
||||
d="m 693.50016,438.59194 c 5.30721,0 9.59134,4.28412 9.59134,9.59134 0,5.27524 -4.28413,9.59137 -9.59134,9.59137 -5.3072,0 -9.59137,-4.31613 -9.59137,-9.59137 0,-5.30721 4.28417,-9.59134 9.59137,-9.59134 z m 0,25.57691 c 19.18269,-0.03 19.18269,12.78848 19.18269,12.78848 v 3.19711 h -38.3654 v -3.19711 c 0,0 0,-12.78848 19.18271,-12.78848 z"
|
||||
id="path2136" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="view-dual-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="2.1232227"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:0.714286;fill-opacity:1"
|
||||
d="M 2.2857142,3.0278438 V 13.027844 H 13.714286 V 3.0278438 Z m 1.428571,1.4285714 H 7.2857144 V 11.599272 H 3.7142852 Z m 5.0000007,0 H 12.285714 V 11.599272 H 8.7142859 Z"
|
||||
id="path2-6" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="view-paged-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<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="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="2.1232227"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:0.714286;fill-opacity:1"
|
||||
d="M 3,2.2857141 V 11.571429 H 4.428571 V 3.7142856 h 6.428572 V 2.2857141 Z"
|
||||
id="path2-3" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:0.714286;fill-opacity:1"
|
||||
d="M 5.142857,4.4285713 V 13.714286 H 13 V 4.4285713 Z M 6.5714284,5.8571427 H 11.571429 V 12.285714 H 6.5714284 Z"
|
||||
id="path4-6" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,181 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
version="1.0"
|
||||
sodipodi:docname="view-refresh-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="36.33875"
|
||||
inkscape:cx="7.9777445"
|
||||
inkscape:cy="8.4424273"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g846"
|
||||
transform="matrix(0.30582574,0,0,0.30582574,458.81286,297.67378)"
|
||||
style="fill:#444444;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path830"
|
||||
d="m 828.64313,460.77925 -19.69117,19.69117 c -24.6674,-21.58571 -62.35812,-20.74368 -85.86181,2.76 -9.85791,9.85792 -15.70368,22.22452 -17.60956,35.07996 h 25.43732 c 1.63389,-6.34114 4.9001,-12.36257 9.89776,-17.36023 13.9019,-13.9019 35.49038,-14.45346 50.41077,-2.35992 l -18.11401,18.11401 62.22778,5.90851 z"
|
||||
style="line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-transform:none;overflow:visible;opacity:1;fill:#444444;fill-opacity:1;stroke-width:12.6032" />
|
||||
<path
|
||||
id="path884"
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)"
|
||||
d="m 10,33.039062 2.255859,20.828126 6.632813,-6.632813 c 8.309022,7.270976 21.004843,6.987344 28.921875,-0.929687 3.28922,-3.289225 5.256158,-7.408821 5.921875,-11.695313 h -8.59961 c -0.55822,2.091516 -1.640961,4.074557 -3.292968,5.726563 -4.682745,4.682744 -11.954653,4.868535 -16.980469,0.794921 l 6.101563,-6.101562 z"
|
||||
style="line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-transform:none;overflow:visible;opacity:1;fill:#444444;fill-opacity:1;stroke-width:4.24529"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="window-close-symbolic.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1906"
|
||||
inkscape:window-height="1002"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
style="fill:#444444;stroke-width:1.24999;fill-opacity:1"
|
||||
d="M 4.2500156,3.0000209 A 1.2499947,1.2499947 0 0 0 3.0000209,4.2500156 1.2499947,1.2499947 0 0 0 3.3625193,5.1375119 L 6.2375072,7.9999998 3.3625193,10.862487 a 1.2499947,1.2499947 0 0 0 -0.3624984,0.887496 1.2499947,1.2499947 0 0 0 1.2499947,1.249995 1.2499947,1.2499947 0 0 0 0.8874963,-0.362499 L 7.9999998,9.7624927 10.849987,12.62498 a 1.2499947,1.2499947 0 0 0 0.899996,0.374998 1.2499947,1.2499947 0 0 0 1.249995,-1.249995 1.2499947,1.2499947 0 0 0 -0.362499,-0.887496 L 9.7624924,7.9999998 12.62498,5.1500118 A 1.2499947,1.2499947 0 0 0 12.999978,4.2500156 1.2499947,1.2499947 0 0 0 11.749983,3.0000209 1.2499947,1.2499947 0 0 0 10.862487,3.3625193 L 7.9999998,6.2375072 5.1500118,3.3750193 a 1.2499947,1.2499947 0 0 0 -0.0125,-0.0125 1.2499947,1.2499947 0 0 0 -0.8874962,-0.3624984 z"
|
||||
id="path2" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="window-pop-out-symbolic.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15, custom)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<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="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1906"
|
||||
inkscape:window-height="1036"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="8.2274882"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<path
|
||||
d="m4 4c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h7c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2h-7zm0 2h7c0.554 0 1 0.446 1 1v5c0 0.554-0.446 1-1 1h-7c-0.554 0-1-0.446-1-1v-5c0-0.554 0.446-1 1-1z"
|
||||
fill="#363636"
|
||||
id="path2"
|
||||
style="fill:#444444;fill-opacity:1" />
|
||||
<path
|
||||
d="m6 2c-0.74107 0-1.379 0.4042-1.7246 1h7.7246c1.108 0 2 0.892 2 2v5 1.7246c0.5958-0.34556 1-0.98354 1-1.7246v-5c0-1.662-1.338-3-3-3h-6z"
|
||||
fill="#363636"
|
||||
id="path4"
|
||||
style="fill:#444444;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
175
airootfs/etc/skel/.config/nwg-panel/icons_light/arch-linux.svg
Normal file
|
@ -0,0 +1,175 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
version="1.0"
|
||||
sodipodi:docname="arch-linux.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="24.111144"
|
||||
inkscape:cx="8.6210011"
|
||||
inkscape:cy="8.4869326"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g28"
|
||||
transform="matrix(0.29166667,0,0,0.29166667,477.3751,297.68101)"
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2518"
|
||||
d="m 741.00015,483.12318 c -6.34282,15.5509 -10.19396,25.73748 -17.25586,40.82611 4.32983,4.58962 9.65118,9.91474 18.28217,15.95123 -9.27916,-3.81832 -15.60463,-7.64184 -20.33478,-11.61987 -9.03787,18.85892 -23.20682,45.7121 -51.94153,97.34253 22.57885,-13.03517 40.08235,-21.07534 56.39465,-24.14429 -0.69789,-3.00828 -1.0707,-6.27752 -1.0437,-9.67163 l 0.0174,-0.71319 c 0.35836,-14.46931 7.88723,-25.59559 16.80359,-24.84009 8.91635,0.75549 15.85732,13.1018 15.49896,27.5711 -0.0675,2.72544 -0.38436,5.34421 -0.92194,7.77558 16.13675,3.15791 33.47519,11.16227 55.75104,24.02252 -4.39297,-8.08778 -8.32763,-15.37432 -12.07214,-22.31781 -5.89822,-4.57152 -12.04738,-10.51908 -24.59656,-16.96014 8.62559,2.24128 14.80767,4.83303 19.62158,7.72338 -38.07152,-70.88252 -41.14731,-80.30772 -54.20288,-110.94543 z"
|
||||
style="fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.556641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,180 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
version="1.0"
|
||||
sodipodi:docname="arch-notification.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="19.264932"
|
||||
inkscape:cx="8.4073787"
|
||||
inkscape:cy="8.7043899"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g28"
|
||||
transform="matrix(0.29166667,0,0,0.29166667,477.3751,297.68101)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2518"
|
||||
d="m 741.00015,483.12318 c -6.34282,15.5509 -10.19396,25.73748 -17.25586,40.82611 4.32983,4.58962 9.65118,9.91474 18.28217,15.95123 -9.27916,-3.81832 -15.60463,-7.64184 -20.33478,-11.61987 -9.03787,18.85892 -23.20682,45.7121 -51.94153,97.34253 22.57885,-13.03517 40.08235,-21.07534 56.39465,-24.14429 -0.69789,-3.00828 -1.0707,-6.27752 -1.0437,-9.67163 l 0.0174,-0.71319 c 0.35836,-14.46931 7.88723,-25.59559 16.80359,-24.84009 8.91635,0.75549 15.85732,13.1018 15.49896,27.5711 -0.0675,2.72544 -0.38436,5.34421 -0.92194,7.77558 16.13675,3.15791 33.47519,11.16227 55.75104,24.02252 -4.39297,-8.08778 -8.32763,-15.37432 -12.07214,-22.31781 -5.89822,-4.57152 -12.04738,-10.51908 -24.59656,-16.96014 8.62559,2.24128 14.80767,4.83303 19.62158,7.72338 -38.07152,-70.88252 -41.14731,-80.30772 -54.20288,-110.94543 z"
|
||||
style="fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.556641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
r="15.029297"
|
||||
cy="509.56363"
|
||||
cx="787.47961"
|
||||
id="path3731"
|
||||
style="fill:#ff6400;fill-opacity:1;stroke-width:1.87866" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#dfdfdf" d="M 8 1 L 4 5 L 1 5 L 1 11 L 4 11 L 8 15 L 8 1 z M 10 1 L 10 2.5 C 12.32 3.24 14 5.43 14 8 C 14 10.57 12.32 12.76 10 13.5 L 10 15 C 13.15 14.22 15.5 11.4 15.5 8 C 15.5 4.6 13.15 1.78 10 1 z M 10 5 L 10 11 C 11.06 10.42 11.789 9.3 11.789 8 C 11.789 6.7 11.07 5.58 10 5 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 387 B |
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#dfdfdf" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z"/>
|
||||
<path style="opacity:0.3;fill:#dfdfdf" d="M 10 1 L 10 2.5 C 12.32 3.24 14 5.43 14 8 C 14 10.57 12.32 12.76 10 13.5 L 10 15 C 13.15 14.22 15.5 11.4 15.5 8 C 15.5 4.6 13.15 1.78 10 1 z M 10 5 L 10 11 C 11.06 10.42 11.789 9.3 11.789 8 C 11.789 6.7 11.07 5.58 10 5 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 418 B |
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#dfdfdf" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z M 10,5 V 11 C 11.06,10.42 11.79,9.3 11.79,8 11.79,6.7 11.07,5.58 10,5 Z"/>
|
||||
<path style="opacity:0.3;fill:#dfdfdf" d="M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 400 B |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="audio-volume-muted-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<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="1020"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="46.125"
|
||||
inkscape:cx="2.7642276"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
id="path854"
|
||||
style="fill:#dfdfdf;fill-opacity:1;stroke:none;stroke-width:0.567103;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.3"
|
||||
d="M 10.687042,4.8541011 9.4606576,6.1810452 11.141871,8.0000002 9.4606576,9.8189564 10.687042,11.145899 12.36887,9.326294 14.050085,11.145899 15.27647,9.8189564 13.595256,8.0000003 15.27647,6.1810453 14.050085,4.8541012 12.36887,6.6737052 Z M 8,1 4,5 H 1 v 6 h 3 l 4,4 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,211 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-empty-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07879,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68786 v -35.62518 h -7.4226 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42133 v 27.08894 h -21.0159 v -27.08894 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-37"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ff6400;stroke-width:2.26366;fill-opacity:1"
|
||||
d="m 693.50011,453.43569 v 6.79098 h 6.79099 l -6.79099,11.3184 v -6.79108 h -6.79098 z"
|
||||
id="path837" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-empty-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07879,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68786 v -35.62518 h -7.4226 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42133 v 27.08894 h -21.0159 v -27.08894 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-37"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-full-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-3-7-0-3"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 8 4.6269531 L 8 7.6269531 L 11 7.6269531 L 8 12.626953 L 8 9.6269531 L 5 9.6269531 L 8 4.6269531 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-full-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07825,438.59195 v 5.9375 h -7.42188 v 35.625 h 29.6875 v -35.625 h -7.42186 v -5.9375 z"
|
||||
id="path878-5-1-2-7-6-6-5-3-7-0-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-good-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-3-2-6"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 6.9375 2.4375 L 9.0625 2.4375 L 9.0625 4.4375 L 11.5625 4.4375 L 11.5625 5.21875 L 4.4824219 5.21875 L 4.4824219 4.4375 L 6.9375 4.4375 L 6.9375 2.4375 z M 8 5.4453125 L 8 8.4453125 L 11 8.4453125 L 8 13.445312 L 8 10.445312 L 5 10.445312 L 8 5.4453125 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-good-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.07814,438.59195 v 5.93732 h -7.42131 v 35.62518 h 29.68659 v -35.62518 h -7.42134 v -5.93732 z m 4.26814,4.26812 h 6.30768 v 5.93732 h 7.42261 v 2.31861 h -21.01718 v -2.31861 h 7.28689 z"
|
||||
id="path878-5-1-2-7-6-6-5-3-2-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,211 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-low-charging-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1360"
|
||||
inkscape:window-height="710"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
id="path878-5-1-2-7-6-6-5-6-8"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:0.809906"
|
||||
d="M 5.5 1 L 5.5 3 L 3 3 L 3 15 L 13 15 L 13 3 L 10.5 3 L 10.5 1 L 5.5 1 z M 6.9375 2.4375 L 9.0625 2.4375 L 9.0625 4.4375 L 11.5625 4.4375 L 11.5625 10.78125 L 9.2226562 10.78125 L 8 12.820312 L 8 10.78125 L 4.4824219 10.78125 L 4.4824219 4.4375 L 6.9375 4.4375 L 6.9375 2.4375 z "
|
||||
transform="matrix(2.96875,0,0,2.96875,669.75015,435.62319)" />
|
||||
<path
|
||||
id="path2431-5"
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.7479"
|
||||
d="m 693.50015,449.93349 -8.90625,14.84375 h 8.90625 v 2.85279 h 3.62976 l 5.27649,-8.79029 h -8.90625 z" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
|
@ -0,0 +1,207 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="battery-low-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.40441"
|
||||
d="m 686.0788,438.59195 v 5.93732 h -7.4226 v 35.62518 h 29.68785 v -35.62518 h -7.42131 v -5.93732 z m 4.26685,4.26812 h 6.30896 v 5.93732 h 7.42134 v 18.83301 h -21.01591 v -18.83301 h 7.28561 z"
|
||||
id="path878-5-1-2-7-6-6-5-6-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="bluetooth-active-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke-width:2.59765"
|
||||
d="m 693.50011,438.59195 c -7.92285,0 -14.2871,6.96171 -14.2871,15.58594 v 10.39062 c 0,8.62423 6.36425,15.58594 14.2871,15.58594 7.92286,0 14.28712,-6.96171 14.28712,-15.58594 v -10.39062 c 0,-8.62423 -6.36426,-15.58594 -14.28712,-15.58594 z m -1.29881,3.35097 11.01406,11.01408 -7.63712,6.4162 7.63712,6.41621 -11.01406,11.01406 v -14.59882 l -6.31232,5.29921 -1.6625,-1.97421 7.32539,-6.15645 -7.32539,-6.15645 1.6625,-1.97421 6.31232,5.29921 z m 2.59765,6.28633 v 8.41641 l 4.57188,-3.84453 z m 0,13.87149 v 8.41641 l 4.57188,-4.57188 z"
|
||||
id="path964-7" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="bluetooth-disabled-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.9476973"
|
||||
inkscape:cy="7.2719109"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="false"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="opacity:0.5;fill:#eeeeee;fill-opacity:1;stroke-width:2.59765"
|
||||
d="m 693.50013,438.59195 c -2.91452,0 -5.61917,0.9452 -7.87416,2.56722 l 6.57533,6.57532 v -3.94723 h 1.29883 c 0.53965,0 1.02099,0.34528 1.21765,0.81177 l 7.46825,7.38709 1.0553,0.97412 -1.13648,0.89294 -2.07001,1.71486 7.7524,7.75238 v -9.14253 c 0,-8.63462 -6.37206,-15.58594 -14.28711,-15.58594 z m -14.28712,1.29883 -3.89649,3.89648 4.84524,4.84524 c -0.60345,1.72158 -0.94875,3.58506 -0.94875,5.54539 v 10.39062 c 0,8.63461 6.37205,15.58594 14.28712,15.58594 4.81871,0 9.02636,-2.60984 11.60827,-6.57532 l 2.67884,2.67883 3.89648,-3.89648 -4.27193,-4.27192 -10.18769,-10.18769 -1.80112,-1.80111 -0.62403,-0.62405 -2.59765,-2.59765 -9.22879,-9.22879 z m 15.58594,8.28002 v 2.16134 l 3.44494,3.44494 1.18213,-0.9792 z m -3.60222,11.49666 3.60222,3.60222 v 7.30591 l 3.65295,-3.65295 1.77575,1.77574 -5.50987,5.44899 c -0.0655,0.1556 -0.20729,0.28849 -0.32472,0.40588 -0.23483,0.23483 -0.53318,0.40589 -0.89293,0.40589 h -1.29883 v -12.82593 l -5.60121,4.62707 c -0.23509,0.23509 -0.53427,0.40589 -0.89294,0.40589 h -1.29883 v -1.29883 c 0,-0.39801 0.20522,-0.73586 0.48706,-0.97412 z"
|
||||
id="path993-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
|
@ -0,0 +1,227 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-high-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g941-3"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,437.61557,441.46252)"
|
||||
style="fill:#eeeeee;fill-opacity:1">
|
||||
<path
|
||||
id="rect3018-7-6"
|
||||
d="m 1546.6784,-17.428459 c -4.9104,0 -8.8656,3.95524 -8.8656,8.8656597 V 21.339241 c 0,4.91042 3.9552,8.85986 8.8656,8.85986 h 13.8117 c 4.9104,0 8.8656,-3.94944 8.8656,-8.85986 V -8.5627993 c 0,-4.9104197 -3.9552,-8.8656597 -8.8656,-8.8656597 z m -71.1514,29.47876 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -9.7702,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.1465,21.14654 c 3.4722,3.47221 9.0639,3.47221 12.536,0 l 9.7703,-9.7702 c 3.4721,-3.47221 3.4721,-9.0638 0,-12.53601 l -21.1466,-21.14655 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 156.1087,0.0406 c -2.2657,0 -4.5319,0.87315 -6.268,2.60925 l -21.1466,21.14075 c -3.4721,3.47221 -3.4721,9.0638 0,12.53601 l 9.7703,9.7702 c 3.4722,3.47221 9.0638,3.47221 12.536,0 l 21.1465,-21.14654 c 3.4722,-3.47221 3.4722,-9.06381 0,-12.53601 l -9.7702,-9.76441 c -1.7361,-1.7361 -4.0023,-2.60925 -6.268,-2.60925 z m -195.3577,80.88105 c -4.9104,0 -8.8656,3.95524 -8.8656,8.865659 v 13.81165 c 0,4.91042 3.9552,8.86565 8.8656,8.86565 h 29.1425 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m 204.7104,0 c -4.9104,0 -8.8598,3.95524 -8.8598,8.865659 v 13.81165 c 0,4.91042 3.9494,8.86565 8.8598,8.86565 h 29.9021 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m -20.1724,64.367359 c -2.2657,0 -4.5319,0.86735 -6.268,2.60347 l -9.7644,9.77019 c -3.4722,3.47222 -3.4722,9.0638 0,12.53602 l 20.6073,20.60731 c 3.4722,3.47219 9.0638,3.47219 12.536,0 l 9.7702,-9.76442 c 3.4722,-3.47219 3.4722,-9.06381 0,-12.536 l -20.6131,-20.6131 c -1.7361,-1.73612 -4.0023,-2.60347 -6.268,-2.60347 z m -134.4693,0.0463 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -20.6073,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.7644,9.77019 c 3.4722,3.47222 9.0638,3.47222 12.536,0 l 20.6131,-20.60732 c 3.4722,-3.47219 3.4722,-9.0638 0,-12.53599 l -9.7702,-9.77021 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 60.3317,30.65582 c -4.9104,0 -8.8656,3.95523 -8.8656,8.86567 v 29.14246 c 0,4.91041 3.9552,8.86564 8.8656,8.86564 h 13.8117 c 4.9104,0 8.8656,-3.95523 8.8656,-8.86564 V 196.9071 c 0,-4.91044 -3.9552,-8.86567 -8.8656,-8.86567 z"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1559.3362,108.7434 V 14.114521 c -51.9828,0 -94.6289,42.64609 -94.6289,94.628879 0,51.98282 42.6461,94.62891 94.6289,94.62891 z"
|
||||
id="path3042-0-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 1553.5842,203.37231 c -52.2509,0 -94.6289,-42.37799 -94.6289,-94.62892 0,-52.250919 42.378,-94.628869 94.6289,-94.628869 52.251,0 94.629,42.37795 94.629,94.628869 0,52.25093 -42.378,94.62892 -94.629,94.62892 z m 0,-165.600599 c -39.1921,0 -70.9716,31.7007 -70.9716,70.971679 0,39.19214 31.7007,70.97169 70.9716,70.97169 39.1922,0 70.9717,-31.70067 70.9717,-70.97169 0,-39.192129 -31.7007,-70.971679 -70.9717,-70.971679"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-9-5" />
|
||||
<path
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 1553.3987,108.74343 v 94.62888 c 51.9828,0 94.6289,-42.64609 94.6289,-94.62888 0,-51.982809 -42.6461,-94.628909 -94.6289,-94.628909 z"
|
||||
id="path3042-0-3-3" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.5 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-low-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g925-3"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,843.31522,441.46252)"
|
||||
style="fill:#eeeeee;fill-opacity:1">
|
||||
<path
|
||||
id="rect3018-5-6"
|
||||
d="m -916.49717,-17.428459 c -4.91044,0 -8.86567,3.95524 -8.86567,8.8656597 V 21.339241 c 0,4.91042 3.95523,8.85986 8.86567,8.85986 h 13.81163 c 4.91043,0 8.86567,-3.94944 8.86567,-8.85986 V -8.5627993 c 0,-4.9104197 -3.95524,-8.8656597 -8.86567,-8.8656597 z m -71.15144,29.47876 c -2.26572,0 -4.53192,0.86735 -6.26801,2.60345 l -9.77018,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.14652,21.14654 c 3.47222,3.47221 9.06383,3.47221 12.53602,0 l 9.77021,-9.7702 c 3.47219,-3.47221 3.47219,-9.0638 0,-12.53601 l -21.14655,-21.14655 c -1.73613,-1.7361 -4.00232,-2.60345 -6.26801,-2.60345 z m 156.10872,0.0406 c -2.26572,0 -4.53192,0.87315 -6.26801,2.60925 l -21.14656,21.14075 c -3.47219,3.47221 -3.47219,9.0638 0,12.53601 l 9.77022,9.7702 c 3.47219,3.47221 9.0638,3.47221 12.53599,0 l 21.14656,-21.14654 c 3.47219,-3.47221 3.47219,-9.06381 0,-12.53601 l -9.77022,-9.76441 c -1.73609,-1.7361 -4.00229,-2.60925 -6.26798,-2.60925 z m -195.35771,80.88105 c -4.9104,0 -8.8656,3.95524 -8.8656,8.865659 v 13.81165 c 0,4.91043 3.9552,8.86565 8.8656,8.86565 h 29.14247 c 4.91043,0 8.86567,-3.95522 8.86567,-8.86565 v -13.81165 c 0,-4.910419 -3.95524,-8.865659 -8.86567,-8.865659 z m 204.71043,0 c -4.91043,0 -8.85988,3.95524 -8.85988,8.865659 v 13.81165 c 0,4.91043 3.94945,8.86565 8.85988,8.86565 h 29.90202 c 4.91043,0 8.86567,-3.95522 8.86567,-8.86565 v -13.81165 c 0,-4.910419 -3.95524,-8.865659 -8.86567,-8.865659 z m -20.17245,64.367359 c -2.26569,0 -4.53188,0.86735 -6.26798,2.60347 l -9.76443,9.77019 c -3.47219,3.47222 -3.47219,9.0638 0,12.53602 l 20.60732,20.60731 c 3.47222,3.47219 9.0638,3.47219 12.53602,0 l 9.77018,-9.76442 c 3.47222,-3.47219 3.47222,-9.06381 0,-12.536 l -20.6131,-20.6131 c -1.73609,-1.73612 -4.00229,-2.60347 -6.26801,-2.60347 z m -134.46929,0.0463 c -2.26569,0 -4.53192,0.86735 -6.26801,2.60345 l -20.60728,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.76439,9.77019 c 3.47219,3.47222 9.0638,3.47222 12.53599,0 l 20.61313,-20.60732 c 3.47219,-3.47219 3.47219,-9.0638 0,-12.53599 l -9.77021,-9.77021 c -1.7361,-1.7361 -4.00229,-2.60345 -6.26801,-2.60345 z m 60.33174,30.65582 c -4.91044,0 -8.86567,3.95523 -8.86567,8.86567 v 29.14246 c 0,4.91041 3.95523,8.86564 8.86567,8.86564 h 13.81163 c 4.91043,0 8.86567,-3.95523 8.86567,-8.86564 V 196.9071 c 0,-4.91044 -3.95524,-8.86567 -8.86567,-8.86567 z"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3042-3-7"
|
||||
d="m -942.31829,22.394541 c -32.98198,14.83917 -56.15112,48.04618 -56.15112,86.348869 0,38.30275 23.16914,71.5097 56.15112,86.34888 z"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -909.59136,203.37231 c -52.25092,0 -94.62894,-42.37799 -94.62894,-94.62892 0,-52.250919 42.37802,-94.628869 94.62894,-94.628869 52.25092,0 94.62891,42.37795 94.62891,94.628869 0,52.25093 -42.37799,94.62892 -94.62891,94.62892 z m 0,-165.600599 c -39.19213,0 -70.97168,31.7007 -70.97168,70.971679 0,39.19214 31.7007,70.97169 70.97168,70.97169 39.19214,0 70.97168,-31.70067 70.97168,-70.97169 0,-39.192129 -31.70069,-70.971679 -70.97168,-70.971679"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-5-5" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
|
@ -0,0 +1,222 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="display-brightness-medium-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
id="g930-3"
|
||||
style="fill:#eeeeee;fill-opacity:1"
|
||||
transform="matrix(0.16470594,0,0,0.16470594,708.9831,441.46252)">
|
||||
<path
|
||||
id="rect3018-6"
|
||||
d="m -100.90958,-17.428459 c -4.9104,0 -8.8657,3.95524 -8.8657,8.8656597 V 21.339241 c 0,4.91042 3.9553,8.85986 8.8657,8.85986 h 13.811599 c 4.9105,0 8.8657,-3.94944 8.8657,-8.85986 V -8.5627993 c 0,-4.9104197 -3.9552,-8.8656597 -8.8657,-8.8656597 z m -71.1514,29.47876 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -9.7702,9.7702 c -3.4722,3.47221 -3.4722,9.06381 0,12.53602 l 21.1465,21.14654 c 3.4722,3.47221 9.0638,3.47221 12.536,0 l 9.7702,-9.7702 c 3.4722,-3.47221 3.4722,-9.0638 0,-12.53601 l -21.1465,-21.14655 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 156.108699,0.0406 c -2.2657,0 -4.5319,0.87315 -6.268,2.60925 l -21.1466,21.14075 c -3.4722,3.47221 -3.4722,9.0638 0,12.53601 l 9.7702,9.7702 c 3.4722,3.47221 9.0638,3.47221 12.536,0 L 0.08591892,37.000571 c 3.47219998,-3.47221 3.47219998,-9.06381 0,-12.53601 l -9.77020002,-9.76441 c -1.7360999,-1.7361 -4.0022999,-2.60925 -6.2679999,-2.60925 z m -195.357699,80.88105 c -4.9104,0 -8.8657,3.95524 -8.8657,8.865659 v 13.81165 c 0,4.91041 3.9553,8.86565 8.8657,8.86565 h 29.1425 c 4.9104,0 8.8656,-3.95524 8.8656,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8656,-8.865659 z m 204.7103989,0 c -4.9103999,0 -8.8598999,3.95524 -8.8598999,8.865659 v 13.81165 c 0,4.91041 3.9495,8.86565 8.8598999,8.86565 H 23.302419 c 4.9105,0 8.8657,-3.95524 8.8657,-8.86565 v -13.81165 c 0,-4.910419 -3.9552,-8.865659 -8.8657,-8.865659 z M -26.771981,157.33931 c -2.2657,0 -4.5319,0.86735 -6.268,2.60347 l -9.7644,9.77019 c -3.4722,3.47222 -3.4722,9.0638 0,12.53602 l 20.6073,20.60731 c 3.4722,3.47219 9.0638,3.47219 12.5359999,0 l 9.77020002,-9.76442 c 3.47219998,-3.47219 3.47219998,-9.06381 0,-12.536 L -20.503981,159.94278 c -1.7361,-1.73612 -4.0023,-2.60347 -6.268,-2.60347 z m -134.469299,0.0463 c -2.2657,0 -4.5319,0.86735 -6.268,2.60345 l -20.6073,20.60731 c -3.4722,3.47219 -3.4722,9.0638 0,12.53602 l 9.7644,9.77019 c 3.4722,3.47222 9.0638,3.47222 12.536,0 l 20.6131,-20.60732 c 3.4722,-3.47219 3.4722,-9.0638 0,-12.53599 l -9.7702,-9.77021 c -1.7361,-1.7361 -4.0023,-2.60345 -6.268,-2.60345 z m 60.3317,30.65582 c -4.9104,0 -8.8657,3.95523 -8.8657,8.86567 v 29.14246 c 0,4.91041 3.9553,8.86564 8.8657,8.86564 h 13.811599 c 4.9105,0 8.8657,-3.95523 8.8657,-8.86564 V 196.9071 c 0,-4.91044 -3.9552,-8.86567 -8.8657,-8.86567 z"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;stroke-width:15.7715"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -88.251781,108.7434 V 14.114521 c -51.982799,0 -94.628899,42.64609 -94.628899,94.628879 0,51.98282 42.6461,94.62891 94.628899,94.62891 z"
|
||||
id="path3042-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -94.003781,203.37231 c -52.250899,0 -94.628899,-42.37799 -94.628899,-94.62892 0,-52.250919 42.378,-94.628869 94.628899,-94.628869 52.2509,0 94.62889992,42.37795 94.62889992,94.628869 0,52.25093 -42.37799992,94.62892 -94.62889992,94.62892 z m 0,-165.600599 c -39.192099,0 -70.971699,31.7007 -70.971699,70.971679 0,39.19214 31.7007,70.97169 70.971699,70.97169 39.1922,0 70.9717,-31.70067 70.9717,-70.97169 0,-39.192129 -31.7007,-70.971679 -70.9717,-70.971679"
|
||||
style="color:#353535;fill:#eeeeee;fill-opacity:1;fill-rule:evenodd;stroke-width:15.7715"
|
||||
id="path3044-5" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<path style="fill:#dfdfdf" d="M 8 1 L 3.5 7 L 6 7 L 6 13 L 10 13 L 10 7 L 12.5 7 L 8 1 z M 1 14 L 1 16 L 15 16 L 15 14 L 1 14 z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 217 B |
|
@ -0,0 +1,212 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="edit-delete-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="10.429659"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<path
|
||||
style="fill:#eeeeee;fill-opacity:1;stroke-width:2.96875"
|
||||
class="ColorScheme-Text"
|
||||
d="m 689.04699,438.59195 c -2.96875,0 -2.96875,2.96875 -2.96875,2.96875 h -8.90625 c 0,0 -2.96875,0 -2.96875,2.96875 v 2.96875 h 38.59375 v -2.96875 c 0,-2.96875 -2.96875,-2.96875 -2.96875,-2.96875 h -8.90625 c 0,0 0,-2.96875 -2.96875,-2.96875 z m -11.875,11.875 v 26.71875 c 0,1.54375 1.425,2.96875 2.96875,2.96875 h 26.71875 c 1.54375,0 2.96875,-1.425 2.96875,-2.96875 v -26.71875 z m 5.9375,5.9375 h 2.69043 c 0.84123,0 1.5902,0.2804 2.02362,0.66101 l 5.67657,4.95178 5.67658,-4.95178 c 0.43342,-0.38061 1.18238,-0.66101 2.02362,-0.66101 h 2.69043 v 2.18597 c 0,0.59743 -0.24278,1.1422 -0.67841,1.52497 l -5.9433,5.19531 5.9433,5.19531 c 0.37738,0.3314 0.56984,0.87783 0.67841,1.66992 v 2.04102 h -2.69043 c -0.84124,0 -1.5902,-0.2804 -2.02362,-0.66101 l -5.67658,-4.98078 -5.67657,4.98078 c -0.43342,0.38061 -1.18239,0.66101 -2.02362,0.66101 h -2.69043 v -2.18598 c 0,-0.59742 0.24319,-1.14278 0.6784,-1.52496 l 5.9433,-5.19531 -5.9433,-5.19531 c -0.43649,-0.38395 -0.6784,-0.92754 -0.6784,-1.52497 z"
|
||||
id="path998" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -0,0 +1,228 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
id="svg2424"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
version="1.0"
|
||||
sodipodi:docname="emblem-system-symbolic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
inkscape:export-filename="/home/thayer/archlinux-logo-contest/archer-full-detail.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs2426">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="path1082_2_"
|
||||
y2="129.3468"
|
||||
x2="112.49853"
|
||||
y1="6.1372099"
|
||||
x1="112.49854"
|
||||
gradientTransform="translate(287,-83)">
|
||||
<stop
|
||||
id="stop193"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop195"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27450982;" />
|
||||
<midPointStop
|
||||
id="midPointStop197"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<midPointStop
|
||||
id="midPointStop199"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0.5" />
|
||||
<midPointStop
|
||||
id="midPointStop201"
|
||||
style="stop-color:#000000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3388">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3390" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.37113401;"
|
||||
offset="1"
|
||||
id="stop3392" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4346">
|
||||
<stop
|
||||
style="stop-color:#00bdec;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4348" />
|
||||
<stop
|
||||
style="stop-color:#40bfde;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4350" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4346"
|
||||
id="linearGradient4352"
|
||||
x1="400.6142"
|
||||
y1="634.15063"
|
||||
x2="616.48553"
|
||||
y2="666.97791"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5323">
|
||||
<stop
|
||||
style="stop-color:#6e6e6e;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5325" />
|
||||
<stop
|
||||
style="stop-color:#4d4d4d;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5327" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5323"
|
||||
id="linearGradient5329"
|
||||
x1="291.83591"
|
||||
y1="238.08237"
|
||||
x2="650.81366"
|
||||
y2="348.96875"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#path1082_2_"
|
||||
id="linearGradient2216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,978.34967,416.9815)"
|
||||
x1="541.33502"
|
||||
y1="104.50665"
|
||||
x2="606.91248"
|
||||
y2="303.14029" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10"
|
||||
objecttolerance="10"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.746079"
|
||||
inkscape:cx="9.3071379"
|
||||
inkscape:cy="4.1288247"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2210"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1020"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
showgrid="false"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:lockguides="true">
|
||||
<sodipodi:guide
|
||||
position="-9.1314141,0"
|
||||
orientation="0,1"
|
||||
id="guide1583"
|
||||
inkscape:locked="true" />
|
||||
<sodipodi:guide
|
||||
position="-4.326,16"
|
||||
orientation="0,1"
|
||||
id="guide1585"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="0,54.808341"
|
||||
orientation="1,0"
|
||||
id="guide1005"
|
||||
inkscape:locked="true"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="16,7.9020841"
|
||||
orientation="-1,0"
|
||||
id="guide851"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="-12.339681,0"
|
||||
orientation="0,1"
|
||||
id="guide853"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2429">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-269.51781,-265.60124)">
|
||||
<g
|
||||
id="g2424"
|
||||
transform="matrix(1.3473684,0,0,1.3473684,-632.88236,-513.34366)">
|
||||
<g
|
||||
id="g2210"
|
||||
transform="matrix(0.25,0,0,0.25,502.3126,469.21738)">
|
||||
<g
|
||||
aria-label="⚙"
|
||||
id="text865"
|
||||
style="font-style:normal;font-weight:normal;font-size:118.75px;line-height:1.25;font-family:sans-serif;fill:#eeeeee;fill-opacity:1;stroke:none;stroke-width:2.96875"
|
||||
transform="matrix(0.43703216,0,0,0.43703216,398.73583,279.33429)">
|
||||
<path
|
||||
d="m 669.42371,368.09363 q 2.49328,-0.28992 5.04455,-0.28992 2.55127,0 5.04456,0.28992 l 1.50757,10.84289 q 3.88488,0.75379 7.59582,2.49329 l 7.30591,-7.65381 q 4.40674,2.60925 8.11767,6.32019 l -4.8706,9.04541 q 2.72522,2.89917 4.63867,6.37818 l 9.56726,-1.79749 q 2.14539,4.87061 3.07312,10.20508 l -8.58154,4.00085 q 0.23193,2.02942 0.23193,4.00086 0,1.97143 -0.23193,4.00085 l 8.58154,4.05884 q -0.92773,5.27649 -3.07312,10.14709 l -9.56726,-1.79748 q -1.91345,3.479 -4.63867,6.43616 l 4.8706,8.98742 q -3.71093,3.71094 -8.11767,6.37818 l -7.30591,-7.65381 q -3.71094,1.68152 -7.59582,2.49328 l -1.50757,10.78492 q -2.49329,0.3479 -5.04456,0.3479 -2.55127,0 -5.04455,-0.3479 l -1.50757,-10.78492 q -3.88489,-0.81176 -7.59583,-2.49328 l -7.30591,7.65381 q -4.40673,-2.66724 -8.11767,-6.37818 l 4.8706,-8.98742 q -2.72522,-2.89917 -4.63867,-6.43616 l -9.56726,1.79748 q -2.14538,-4.8706 -3.07312,-10.14709 l 8.58154,-4.05884 q -0.23193,-2.02942 -0.23193,-4.00085 0,-1.97144 0.23193,-4.00086 l -8.58154,-4.00085 q 0.92774,-5.33447 3.07312,-10.20508 l 9.56726,1.79749 q 1.91345,-3.47901 4.63867,-6.43616 l -4.8706,-8.98743 q 3.71094,-3.71094 8.11767,-6.32019 l 7.30591,7.59583 q 3.71094,-1.68152 7.59583,-2.43531 z m 23.07739,25.86059 q -7.47986,-7.53784 -18.03284,-7.53784 -10.55298,0 -18.03284,7.53784 -7.47985,7.47986 -7.47985,18.03284 0,10.495 7.47985,17.97485 7.47986,7.47986 18.03284,7.47986 10.55298,0 18.03284,-7.47986 7.47986,-7.47985 7.47986,-17.97485 0,-10.55298 -7.47986,-18.03284 z m -11.71265,11.65467 q 2.66724,2.60925 2.66724,6.32019 0,3.71093 -2.66724,6.37817 -2.60925,2.60925 -6.32019,2.60925 -3.71094,0 -6.37817,-2.60925 -2.60926,-2.66724 -2.60926,-6.37817 0,-3.71094 2.60926,-6.32019 2.66723,-2.66724 6.37817,-2.66724 3.71094,0 6.32019,2.66724 z"
|
||||
style="stroke-width:2.96875;fill:#eeeeee;fill-opacity:1"
|
||||
id="path867" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:118.75px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.96875"
|
||||
x="616.66028"
|
||||
y="450.21933"
|
||||
id="text872"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan870"
|
||||
x="616.66028"
|
||||
y="450.21933"
|
||||
style="stroke-width:2.96875"></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
62
airootfs/etc/skel/.config/nwg-panel/icons_light/github.svg
Normal file
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 4.2333333 4.2333335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
|
||||
sodipodi:docname="github.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="36.065789"
|
||||
inkscape:cx="8.0294604"
|
||||
inkscape:cy="9.3369724"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1008"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-global="false" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-280.06665)">
|
||||
<path
|
||||
d="m 2.116667,280.39516 c -1.0226589,0 -1.85208367,0.82927 -1.85208367,1.85208 0,0.81831 0.53062192,1.51254 1.26667087,1.75748 0.09245,0.0172 0.1223919,-0.0403 0.1223919,-0.0891 v -0.3448 c -0.515188,0.11205 -0.6224545,-0.21854 -0.6224545,-0.21854 -0.0842696,-0.21407 -0.20573567,-0.27103 -0.20573567,-0.27103 -0.16807644,-0.11497 0.0128104,-0.1125 0.0128104,-0.1125 0.18598017,0.0129 0.28383187,0.19092 0.28383187,0.19092 0.1651441,0.28305 0.4332332,0.20125 0.5389563,0.15387 0.016514,-0.11962 0.064514,-0.20141 0.1176074,-0.24756 -0.411317,-0.0471 -0.84377856,-0.20589 -0.84377856,-0.91539 0,-0.20235 0.072385,-0.36748 0.19076466,-0.49714 -0.019138,-0.0468 -0.082572,-0.23521 0.018057,-0.49018 0,0 0.155575,-0.0497 0.5094773,0.18985 0.1477037,-0.041 0.306057,-0.0616 0.463484,-0.0624 0.1574272,5.8e-4 0.3159346,0.0213 0.463947,0.0624 0.3535936,-0.23955 0.50886,-0.18985 0.50886,-0.18985 0.1007842,0.25513 0.037351,0.44358 0.018212,0.49018 0.1188419,0.12966 0.1906101,0.29495 0.1906101,0.49714 0,0.71136 -0.4332332,0.868 -0.8456305,0.91385 0.066366,0.0574 0.127022,0.17008 0.127022,0.34294 v 0.50824 c 0,0.0493 0.029634,0.10712 0.1236266,0.0889 0.7354317,-0.24524 1.2654364,-0.93931 1.2654364,-1.75732 0,-1.02281 -0.8292705,-1.85208 -1.852083,-1.85208 z"
|
||||
id="path839"
|
||||
style="stroke-width:0.15434;fill:#eeeeee;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="go-down-symbolic.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1908"
|
||||
inkscape:window-height="1038"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="39.5625"
|
||||
inkscape:cx="2.1232227"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
style="fill:#eeeeee;stroke-width:0.833333;fill-opacity:1"
|
||||
d="M 7.1666666,3.0000002 V 9.6666671 L 4.2499998,6.7500003 2.9999998,8.0000004 8,13 13,8.0000004 11.75,6.7500003 8.8333333,9.6666671 V 3.0000002 Z"
|
||||
id="path2-3" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |