diff --git a/Jamfile b/Jamfile index b76caa4..113f06e 100644 --- a/Jamfile +++ b/Jamfile @@ -4,8 +4,8 @@ # Part of Equinox Desktop Environment (EDE). # Copyright (c) 2000-2007 EDE Authors. # -# This program is licensed under terms of the -# GNU General Public License version 2 or newer. +# This program is licenced under terms of the +# GNU General Public Licence version 2 or newer. # See COPYING for details. SubDir TOP ; @@ -20,8 +20,8 @@ SubInclude TOP edewm ; SubInclude TOP eiconman ; SubInclude TOP evoke ; SubInclude TOP eimage ; -SubInclude TOP datas ; -SubInclude TOP docs ; SubInclude TOP efiler ; SubInclude TOP etimedate ; SubInclude TOP edesktopconf ; +SubInclude TOP docs ; +SubInclude TOP datas ; diff --git a/Jamrules b/Jamrules index 041e0ba..9cf3fdb 100644 --- a/Jamrules +++ b/Jamrules @@ -35,7 +35,7 @@ EDELIBLIB ?= -L/opt/ede/lib -ledelib ; # fltk libraries path FLTKINCLUDE ?= -I/usr/local/include ; -FLTKLIB ?= -L/usr/local/lib -lfltk_images -lpng -lz -ljpeg -lfltk -ldl -lm -lXext -lX11 ; +FLTKLIB ?= -L/usr/local/lib -lfltk_images -lpng -lz -ljpeg -lfltk -ldl -lm -lXext -lX11 -lXpm ; FLTKLIB_NOIMAGES ?= -L/usr/local/lib -lfltk -ldl -lm -lXext -lX11 ; # backward; efltk libraries path @@ -59,6 +59,9 @@ include $(TOP)/build/Program.jam ; include $(TOP)/build/Translation.jam ; include $(TOP)/build/Install.jam ; include $(TOP)/build/Doc.jam ; +include $(TOP)/build/Svg.jam ; + +BUILD_ICON_THEMES ?= ; actions quietly Help { @@ -73,7 +76,10 @@ actions quietly Help echo " jam doc build documentation" echo " jam help this help" echo "" + echo " jam -sBUILD_ICON_THEMES=1 build icon themes (not built by default)" + echo "" } + Help help ; NotFile help ; Always help ; diff --git a/build/Svg.jam b/build/Svg.jam new file mode 100644 index 0000000..d9a4805 --- /dev/null +++ b/build/Svg.jam @@ -0,0 +1,73 @@ +# +# $Id$ +# +# Part of Equinox Desktop Environment (EDE). +# Copyright (c) 2000-2007 EDE Authors. +# +# This program is licensed under terms of the +# GNU General Public License version 2 or newer. +# See COPYING for details. + +SVG_CONVERTOR = "rsvg" ; + +# SvgToPng [target-png] : [source-svg] : [width] : [height] ; +rule SvgToPng +{ + if ! $(SVG_CONVERTOR) { + Echo "SVG_CONVERTOR not defined; $(1) will not be built" ; + return ; + } + + LocalDepends $(1) : $(2) ; + LocalDepends icons : $(1) ; + LocalDepends all : $(1) ; + + PNG_WIDTH on $(1) = $(3) ; + PNG_HEIGHT on $(1) = $(4) ; + + SvgToPng1 $(1) : $(2) ; + + LocalClean clean : $(1) ; +} + +# SvgToPngDirectory [directory-where-to-place] : [directory-where-is-source] : [icon-sizes] ; +rule SvgToPngDirectory +{ + local icons source target png_ext ; + + if ! $(SVG_CONVERTOR) { + Echo "SVG_CONVERTOR not defined; directory $(1) will not be built" ; + return ; + } + + png_ext = ".png" ; + icons = [ Wildcard $(2) : *.svg ] ; + + for i in $(icons) { + # before source and target are further used + # grist must be calculated uniquely or jam will be confused + # e.g. if we want foo.svg to be placed in 32/foo.png and 16/foo.png + # with different sizes, without unique grist, jam will construct only + # 32/foo.png since it is bound to source; to skip this, source and + # target are gristed to directory name plus jam's SOURCE_GRIST + target = $(i:S=$(png_ext):G=$(SOURCE_GRIST)-$(1)) ; + source = $(i:G=$(SOURCE_GRIST)-$(2)) ; + + # where to look for source + SEARCH on $(source) = [ FDirName $(SUBDIR) $(2) ] ; + + # where to place target; directory will be created if + # does not exists + MakeLocate $(target) : [ FDirName $(SUBDIR) $(1) ] ; + + SvgToPng $(target) : $(source) : $(3) : $(3) ; + } +} + +actions SvgToPng1 +{ + $(SVG_CONVERTOR) -w $(PNG_WIDTH) -h $(PNG_HEIGHT) -f png "$(>)" "$(<)" +} + +NotFile icons ; +Always icons ; diff --git a/datas/Jamfile b/datas/Jamfile index d86d4a5..3301cca 100644 --- a/datas/Jamfile +++ b/datas/Jamfile @@ -20,3 +20,8 @@ InstallEdeIcons icons-48 : $(ICONS48) ; InstallEdeConfigFiles $(CONFS) ; InstallEdeDesktopFiles $(PLINKS) ; + +# For building icon themes +if $(BUILD_ICON_THEMES) = 1 { + SubInclude TOP datas icon-themes ; +} diff --git a/datas/icon-themes/Jamfile b/datas/icon-themes/Jamfile new file mode 100644 index 0000000..0bff6ff --- /dev/null +++ b/datas/icon-themes/Jamfile @@ -0,0 +1,26 @@ +# +# $Id$ +# +# Part of Equinox Desktop Environment (EDE). +# Copyright (c) 2000-2007 EDE Authors. +# +# This program is licensed under terms of the +# GNU General Public License version 2 or newer. +# See COPYING for details. + +SubDir TOP datas icon-themes ; + +# Icon theme conversion code +# jam don't like nested loops so every subdirectory is specified +ICON_SIZES = 16 22 32 48 64 128 ; + +for size in $(ICON_SIZES) { + SvgToPngDirectory [ FDirName edeneu $(size) actions ] : [ FDirName edeneu scalable actions ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) apps ] : [ FDirName edeneu scalable apps ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) categories ] : [ FDirName edeneu scalable categories ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) devices ] : [ FDirName edeneu scalable devices ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) emblems ] : [ FDirName edeneu scalable emblems ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) mimetypes ] : [ FDirName edeneu scalable mimetypes ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) places ] : [ FDirName edeneu scalable places ] : $(size) ; + SvgToPngDirectory [ FDirName edeneu $(size) status ] : [ FDirName edeneu scalable status ] : $(size) ; +} diff --git a/datas/icon-themes/edeneu/AUTHORS b/datas/icon-themes/edeneu/AUTHORS new file mode 100644 index 0000000..5db584c --- /dev/null +++ b/datas/icon-themes/edeneu/AUTHORS @@ -0,0 +1,7 @@ +Name: Silvestre Herrera +Nickname: ertz +Location: La Plata, Buenos Aires. ARGENTINA. +E-mail: silvestre.herrera(at)gmail.com +Website(s): http://www.silvestre.com.ar/ + +_______________________________________________ diff --git a/datas/icon-themes/edeneu/COPYING b/datas/icon-themes/edeneu/COPYING new file mode 100644 index 0000000..c48d90f --- /dev/null +++ b/datas/icon-themes/edeneu/COPYING @@ -0,0 +1,342 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 2 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, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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 Library General +Public License instead of this License. + + diff --git a/datas/icon-themes/edeneu/index.theme b/datas/icon-themes/edeneu/index.theme new file mode 100644 index 0000000..b70593c --- /dev/null +++ b/datas/icon-themes/edeneu/index.theme @@ -0,0 +1,201 @@ +# +# Generated with mkindextheme. Edit what needs to be edited. +# + +[Icon Theme] + Name = EdeNeu + Comment = Icon theme based on Dropline Neu! + + Directories = 128x128/apps,128x128/devices,128x128/mimetypes,128x128/emblems,128x128/actions,128x128/places,128x128/status,128x128/categories,16x16/apps,16x16/devices,16x16/mimetypes,16x16/emblems,16x16/actions,16x16/places,16x16/status,16x16/categories,22x22/apps,22x22/devices,22x22/mimetypes,22x22/emblems,22x22/actions,22x22/places,22x22/status,22x22/categories,32x32/apps,32x32/devices,32x32/mimetypes,32x32/emblems,32x32/actions,32x32/places,32x32/status,32x32/categories,48x48/apps,48x48/devices,48x48/mimetypes,48x48/emblems,48x48/actions,48x48/places,48x48/status,48x48/categories,64x64/apps,64x64/devices,64x64/mimetypes,64x64/emblems,64x64/actions,64x64/places,64x64/status,64x64/categories + +[128x128/apps] + Size = 128 + Context = Applications + +[128x128/devices] + Size = 128 + Context = Devices + +[128x128/mimetypes] + Size = 128 + Context = MimeTypes + +[128x128/emblems] + Size = 128 + Context = Emblems + +[128x128/actions] + Size = 128 + Context = Actions + +[128x128/places] + Size = 128 + Context = Places + +[128x128/status] + Size = 128 + Context = Status + +[128x128/categories] + Size = 128 + Context = Categories + +[16x16/apps] + Size = 16 + Context = Applications + +[16x16/devices] + Size = 16 + Context = Devices + +[16x16/mimetypes] + Size = 16 + Context = MimeTypes + +[16x16/emblems] + Size = 16 + Context = Emblems + +[16x16/actions] + Size = 16 + Context = Actions + +[16x16/places] + Size = 16 + Context = Places + +[16x16/status] + Size = 16 + Context = Status + +[16x16/categories] + Size = 16 + Context = Categories + +[22x22/apps] + Size = 22 + Context = Applications + +[22x22/devices] + Size = 22 + Context = Devices + +[22x22/mimetypes] + Size = 22 + Context = MimeTypes + +[22x22/emblems] + Size = 22 + Context = Emblems + +[22x22/actions] + Size = 22 + Context = Actions + +[22x22/places] + Size = 22 + Context = Places + +[22x22/status] + Size = 22 + Context = Status + +[22x22/categories] + Size = 22 + Context = Categories + +[32x32/apps] + Size = 32 + Context = Applications + +[32x32/devices] + Size = 32 + Context = Devices + +[32x32/mimetypes] + Size = 32 + Context = MimeTypes + +[32x32/emblems] + Size = 32 + Context = Emblems + +[32x32/actions] + Size = 32 + Context = Actions + +[32x32/places] + Size = 32 + Context = Places + +[32x32/status] + Size = 32 + Context = Status + +[32x32/categories] + Size = 32 + Context = Categories + +[48x48/apps] + Size = 48 + Context = Applications + +[48x48/devices] + Size = 48 + Context = Devices + +[48x48/mimetypes] + Size = 48 + Context = MimeTypes + +[48x48/emblems] + Size = 48 + Context = Emblems + +[48x48/actions] + Size = 48 + Context = Actions + +[48x48/places] + Size = 48 + Context = Places + +[48x48/status] + Size = 48 + Context = Status + +[48x48/categories] + Size = 48 + Context = Categories + +[64x64/apps] + Size = 64 + Context = Applications + +[64x64/devices] + Size = 64 + Context = Devices + +[64x64/mimetypes] + Size = 64 + Context = MimeTypes + +[64x64/emblems] + Size = 64 + Context = Emblems + +[64x64/actions] + Size = 64 + Context = Actions + +[64x64/places] + Size = 64 + Context = Places + +[64x64/status] + Size = 64 + Context = Status + +[64x64/categories] + Size = 64 + Context = Categories diff --git a/datas/icon-themes/edeneu/scalable/actions/address-book-new.svg b/datas/icon-themes/edeneu/scalable/actions/address-book-new.svg new file mode 100644 index 0000000..0f84a8d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/address-book-new.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/appointment-new.svg b/datas/icon-themes/edeneu/scalable/actions/appointment-new.svg new file mode 100644 index 0000000..0fba090 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/appointment-new.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/bookmark-new.svg b/datas/icon-themes/edeneu/scalable/actions/bookmark-new.svg new file mode 100644 index 0000000..f8a1458 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/bookmark-new.svg @@ -0,0 +1,384 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/contact-new.svg b/datas/icon-themes/edeneu/scalable/actions/contact-new.svg new file mode 100644 index 0000000..65682d5 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/contact-new.svg @@ -0,0 +1,575 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/dialog-cancel.svg b/datas/icon-themes/edeneu/scalable/actions/dialog-cancel.svg new file mode 100644 index 0000000..7b9467c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/dialog-cancel.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/dialog-close.svg b/datas/icon-themes/edeneu/scalable/actions/dialog-close.svg new file mode 100644 index 0000000..8e3ce23 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/dialog-close.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/dialog-ok.svg b/datas/icon-themes/edeneu/scalable/actions/dialog-ok.svg new file mode 100644 index 0000000..a503f57 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/dialog-ok.svg @@ -0,0 +1,219 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-new.svg b/datas/icon-themes/edeneu/scalable/actions/document-new.svg new file mode 100644 index 0000000..12d3331 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-new.svg @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-open.svg b/datas/icon-themes/edeneu/scalable/actions/document-open.svg new file mode 100644 index 0000000..c060c29 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-open.svg @@ -0,0 +1,497 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-print-preview.svg b/datas/icon-themes/edeneu/scalable/actions/document-print-preview.svg new file mode 100644 index 0000000..796cbe0 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-print-preview.svg @@ -0,0 +1,550 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-print.svg b/datas/icon-themes/edeneu/scalable/actions/document-print.svg new file mode 100644 index 0000000..6c11b88 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-print.svg @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-properties.svg b/datas/icon-themes/edeneu/scalable/actions/document-properties.svg new file mode 100644 index 0000000..feb93b8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-properties.svg @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-save-as.svg b/datas/icon-themes/edeneu/scalable/actions/document-save-as.svg new file mode 100644 index 0000000..7bc29d4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-save-as.svg @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/document-save.svg b/datas/icon-themes/edeneu/scalable/actions/document-save.svg new file mode 100644 index 0000000..3bf1570 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/document-save.svg @@ -0,0 +1,411 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-clear.svg b/datas/icon-themes/edeneu/scalable/actions/edit-clear.svg new file mode 100644 index 0000000..ad479e8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-clear.svg @@ -0,0 +1,349 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-copy.svg b/datas/icon-themes/edeneu/scalable/actions/edit-copy.svg new file mode 100644 index 0000000..a4e9991 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-copy.svg @@ -0,0 +1,368 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-cut.svg b/datas/icon-themes/edeneu/scalable/actions/edit-cut.svg new file mode 100644 index 0000000..ca91554 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-cut.svg @@ -0,0 +1,196 @@ + + + + + + + image/svg+xml + + + + Andrew Fitzsimon + + + 2004-12-25 + Etiquette Icon + + + + Andrew Fitzsimon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-delete.svg b/datas/icon-themes/edeneu/scalable/actions/edit-delete.svg new file mode 100644 index 0000000..00ffd8b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-delete.svg @@ -0,0 +1,349 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-find-replace.svg b/datas/icon-themes/edeneu/scalable/actions/edit-find-replace.svg new file mode 100644 index 0000000..79def42 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-find-replace.svg @@ -0,0 +1,598 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-find.svg b/datas/icon-themes/edeneu/scalable/actions/edit-find.svg new file mode 100644 index 0000000..7a5275a --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-find.svg @@ -0,0 +1,423 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-paste.svg b/datas/icon-themes/edeneu/scalable/actions/edit-paste.svg new file mode 100644 index 0000000..0ac0f74 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-paste.svg @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-redo.svg b/datas/icon-themes/edeneu/scalable/actions/edit-redo.svg new file mode 100644 index 0000000..a812a16 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-redo.svg @@ -0,0 +1,193 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-select-all.svg b/datas/icon-themes/edeneu/scalable/actions/edit-select-all.svg new file mode 100644 index 0000000..95e5229 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-select-all.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/edit-undo.svg b/datas/icon-themes/edeneu/scalable/actions/edit-undo.svg new file mode 100644 index 0000000..40b274f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/edit-undo.svg @@ -0,0 +1,194 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/folder-new.svg b/datas/icon-themes/edeneu/scalable/actions/folder-new.svg new file mode 100644 index 0000000..67900c4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/folder-new.svg @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-indent-less.svg b/datas/icon-themes/edeneu/scalable/actions/format-indent-less.svg new file mode 100644 index 0000000..b43f466 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-indent-less.svg @@ -0,0 +1,275 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-indent-more.svg b/datas/icon-themes/edeneu/scalable/actions/format-indent-more.svg new file mode 100644 index 0000000..772f70b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-indent-more.svg @@ -0,0 +1,275 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-justify-center.svg b/datas/icon-themes/edeneu/scalable/actions/format-justify-center.svg new file mode 100644 index 0000000..da87108 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-justify-center.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-justify-fill.svg b/datas/icon-themes/edeneu/scalable/actions/format-justify-fill.svg new file mode 100644 index 0000000..3de070d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-justify-fill.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-justify-left.svg b/datas/icon-themes/edeneu/scalable/actions/format-justify-left.svg new file mode 100644 index 0000000..3d3482d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-justify-left.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-justify-right.svg b/datas/icon-themes/edeneu/scalable/actions/format-justify-right.svg new file mode 100644 index 0000000..debe28e --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-justify-right.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-text-bold.svg b/datas/icon-themes/edeneu/scalable/actions/format-text-bold.svg new file mode 100644 index 0000000..50768bd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-text-bold.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-text-italic.svg b/datas/icon-themes/edeneu/scalable/actions/format-text-italic.svg new file mode 100644 index 0000000..f068e7c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-text-italic.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/format-text-underline.svg b/datas/icon-themes/edeneu/scalable/actions/format-text-underline.svg new file mode 100644 index 0000000..0eb4a80 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/format-text-underline.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-bottom.svg b/datas/icon-themes/edeneu/scalable/actions/go-bottom.svg new file mode 100644 index 0000000..fcf5fc5 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-bottom.svg @@ -0,0 +1,265 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-down.svg b/datas/icon-themes/edeneu/scalable/actions/go-down.svg new file mode 100644 index 0000000..f2fd21d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-down.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-first.svg b/datas/icon-themes/edeneu/scalable/actions/go-first.svg new file mode 100644 index 0000000..1137683 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-first.svg @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-home.svg b/datas/icon-themes/edeneu/scalable/actions/go-home.svg new file mode 100644 index 0000000..1360f0e --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-home.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-jump.svg b/datas/icon-themes/edeneu/scalable/actions/go-jump.svg new file mode 100644 index 0000000..e6f1cac --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-jump.svg @@ -0,0 +1,219 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-last.svg b/datas/icon-themes/edeneu/scalable/actions/go-last.svg new file mode 100644 index 0000000..7573da6 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-last.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-next.svg b/datas/icon-themes/edeneu/scalable/actions/go-next.svg new file mode 100644 index 0000000..5fe39b8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-next.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-previous.svg b/datas/icon-themes/edeneu/scalable/actions/go-previous.svg new file mode 100644 index 0000000..72a4a91 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-previous.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-top.svg b/datas/icon-themes/edeneu/scalable/actions/go-top.svg new file mode 100644 index 0000000..69cc42d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-top.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/go-up.svg b/datas/icon-themes/edeneu/scalable/actions/go-up.svg new file mode 100644 index 0000000..9bb03f5 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/go-up.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/help-about.svg b/datas/icon-themes/edeneu/scalable/actions/help-about.svg new file mode 100644 index 0000000..e2220f9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/help-about.svg @@ -0,0 +1,247 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/datas/icon-themes/edeneu/scalable/actions/list-add.svg b/datas/icon-themes/edeneu/scalable/actions/list-add.svg new file mode 100644 index 0000000..b7d5f46 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/list-add.svg @@ -0,0 +1,164 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/datas/icon-themes/edeneu/scalable/actions/list-remove.svg b/datas/icon-themes/edeneu/scalable/actions/list-remove.svg new file mode 100644 index 0000000..0757d81 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/list-remove.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/mail-forward.svg b/datas/icon-themes/edeneu/scalable/actions/mail-forward.svg new file mode 100644 index 0000000..4d33d77 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/mail-forward.svg @@ -0,0 +1,370 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/mail-message-new.svg b/datas/icon-themes/edeneu/scalable/actions/mail-message-new.svg new file mode 100644 index 0000000..e9921e2 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/mail-message-new.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/mail-reply-all.svg b/datas/icon-themes/edeneu/scalable/actions/mail-reply-all.svg new file mode 100644 index 0000000..24c7fd5 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/mail-reply-all.svg @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/mail-reply-sender.svg b/datas/icon-themes/edeneu/scalable/actions/mail-reply-sender.svg new file mode 100644 index 0000000..8731933 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/mail-reply-sender.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/mail-send-receive.svg b/datas/icon-themes/edeneu/scalable/actions/mail-send-receive.svg new file mode 100644 index 0000000..825b5a1 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/mail-send-receive.svg @@ -0,0 +1,670 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/process-stop.svg b/datas/icon-themes/edeneu/scalable/actions/process-stop.svg new file mode 100644 index 0000000..b3daed9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/process-stop.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/system-lock-screen.svg b/datas/icon-themes/edeneu/scalable/actions/system-lock-screen.svg new file mode 100644 index 0000000..55a63a1 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/system-lock-screen.svg @@ -0,0 +1,593 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/system-log-out.svg b/datas/icon-themes/edeneu/scalable/actions/system-log-out.svg new file mode 100644 index 0000000..9d5d3a2 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/system-log-out.svg @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/system-search.svg b/datas/icon-themes/edeneu/scalable/actions/system-search.svg new file mode 100644 index 0000000..bc0a7ca --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/system-search.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/system-shutdown.svg b/datas/icon-themes/edeneu/scalable/actions/system-shutdown.svg new file mode 100644 index 0000000..037b27c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/system-shutdown.svg @@ -0,0 +1,381 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/view-refresh.svg b/datas/icon-themes/edeneu/scalable/actions/view-refresh.svg new file mode 100644 index 0000000..2ff626d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/view-refresh.svg @@ -0,0 +1,197 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/actions/window-new.svg b/datas/icon-themes/edeneu/scalable/actions/window-new.svg new file mode 100644 index 0000000..e7ded38 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/actions/window-new.svg @@ -0,0 +1,238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/accessories-archiver.svg b/datas/icon-themes/edeneu/scalable/apps/accessories-archiver.svg new file mode 100644 index 0000000..eff20f4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/accessories-archiver.svg @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/accessories-character-map.svg b/datas/icon-themes/edeneu/scalable/apps/accessories-character-map.svg new file mode 100644 index 0000000..4a19adc --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/accessories-character-map.svg @@ -0,0 +1,250 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/accessories-text-editor.svg b/datas/icon-themes/edeneu/scalable/apps/accessories-text-editor.svg new file mode 100644 index 0000000..48a11fa --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/accessories-text-editor.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/epiphany-bookmarks.svg b/datas/icon-themes/edeneu/scalable/apps/epiphany-bookmarks.svg new file mode 100644 index 0000000..6ea9ef4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/epiphany-bookmarks.svg @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/evolution.svg b/datas/icon-themes/edeneu/scalable/apps/evolution.svg new file mode 100644 index 0000000..627618b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/evolution.svg @@ -0,0 +1,448 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/gaim.svg b/datas/icon-themes/edeneu/scalable/apps/gaim.svg new file mode 100644 index 0000000..e6821bd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/gaim.svg @@ -0,0 +1,275 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/gimp.svg b/datas/icon-themes/edeneu/scalable/apps/gimp.svg new file mode 100644 index 0000000..e7c4216 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/gimp.svg @@ -0,0 +1,341 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/graphics-image-editor.svg b/datas/icon-themes/edeneu/scalable/apps/graphics-image-editor.svg new file mode 100644 index 0000000..d036815 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/graphics-image-editor.svg @@ -0,0 +1,916 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/graphics-image-viewer.svg b/datas/icon-themes/edeneu/scalable/apps/graphics-image-viewer.svg new file mode 100644 index 0000000..9648120 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/graphics-image-viewer.svg @@ -0,0 +1,611 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/graphics-svg-editor.svg b/datas/icon-themes/edeneu/scalable/apps/graphics-svg-editor.svg new file mode 100644 index 0000000..ce2395c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/graphics-svg-editor.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/help-browser.svg b/datas/icon-themes/edeneu/scalable/apps/help-browser.svg new file mode 100644 index 0000000..eea2451 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/help-browser.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/internet-ftp-client.svg b/datas/icon-themes/edeneu/scalable/apps/internet-ftp-client.svg new file mode 100644 index 0000000..c224cf6 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/internet-ftp-client.svg @@ -0,0 +1,1009 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/internet-group-chat.svg b/datas/icon-themes/edeneu/scalable/apps/internet-group-chat.svg new file mode 100644 index 0000000..d4fb597 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/internet-group-chat.svg @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/internet-mail.svg b/datas/icon-themes/edeneu/scalable/apps/internet-mail.svg new file mode 100644 index 0000000..68b530e --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/internet-mail.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/internet-web-browser.svg b/datas/icon-themes/edeneu/scalable/apps/internet-web-browser.svg new file mode 100644 index 0000000..b7bd989 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/internet-web-browser.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/multimedia-volume-control.svg b/datas/icon-themes/edeneu/scalable/apps/multimedia-volume-control.svg new file mode 100644 index 0000000..4d41895 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/multimedia-volume-control.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Volume Control + + + multimedia + sound + volume + knob + control + mixer + + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-date-time.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-date-time.svg new file mode 100644 index 0000000..0fba090 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-date-time.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-accessibility.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-accessibility.svg new file mode 100644 index 0000000..d656dc2 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-accessibility.svg @@ -0,0 +1,260 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-assistive-technology.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-assistive-technology.svg new file mode 100644 index 0000000..456f0c0 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-assistive-technology.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-font.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-font.svg new file mode 100644 index 0000000..fd95d83 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-font.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-remote-desktop.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-remote-desktop.svg new file mode 100644 index 0000000..7da6ad6 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-remote-desktop.svg @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-screensaver.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-screensaver.svg new file mode 100644 index 0000000..0e8463f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-screensaver.svg @@ -0,0 +1,418 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-wallpaper.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-wallpaper.svg new file mode 100644 index 0000000..e014cea --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-desktop-wallpaper.svg @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-system-network-proxy.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-system-network-proxy.svg new file mode 100644 index 0000000..67b627a --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-system-network-proxy.svg @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-system-session.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-system-session.svg new file mode 100644 index 0000000..88df11b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-system-session.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-system-windows.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-system-windows.svg new file mode 100644 index 0000000..7c26aba --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-system-windows.svg @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/preferences-user-information.svg b/datas/icon-themes/edeneu/scalable/apps/preferences-user-information.svg new file mode 100644 index 0000000..1f20e7b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/preferences-user-information.svg @@ -0,0 +1,565 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/sound-juicer.svg b/datas/icon-themes/edeneu/scalable/apps/sound-juicer.svg new file mode 100644 index 0000000..d77a096 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/sound-juicer.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/system-file-manager.svg b/datas/icon-themes/edeneu/scalable/apps/system-file-manager.svg new file mode 100644 index 0000000..6dd58b7 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/system-file-manager.svg @@ -0,0 +1,499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/system-installer.svg b/datas/icon-themes/edeneu/scalable/apps/system-installer.svg new file mode 100644 index 0000000..8463caf --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/system-installer.svg @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/system-lock-screen.svg b/datas/icon-themes/edeneu/scalable/apps/system-lock-screen.svg new file mode 100644 index 0000000..55a63a1 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/system-lock-screen.svg @@ -0,0 +1,593 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/system-software-update.svg b/datas/icon-themes/edeneu/scalable/apps/system-software-update.svg new file mode 100644 index 0000000..6e38c9f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/system-software-update.svg @@ -0,0 +1,488 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/system-users.svg b/datas/icon-themes/edeneu/scalable/apps/system-users.svg new file mode 100644 index 0000000..010f66b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/system-users.svg @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/utilities-system-monitor.svg b/datas/icon-themes/edeneu/scalable/apps/utilities-system-monitor.svg new file mode 100644 index 0000000..4a9df19 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/utilities-system-monitor.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/apps/utilities-terminal.svg b/datas/icon-themes/edeneu/scalable/apps/utilities-terminal.svg new file mode 100644 index 0000000..00e0798 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/apps/utilities-terminal.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-accessories.svg b/datas/icon-themes/edeneu/scalable/categories/applications-accessories.svg new file mode 100644 index 0000000..92dfe1f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-accessories.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-development.svg b/datas/icon-themes/edeneu/scalable/categories/applications-development.svg new file mode 100644 index 0000000..7bbbadb --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-development.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-games.svg b/datas/icon-themes/edeneu/scalable/categories/applications-games.svg new file mode 100644 index 0000000..e906afd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-games.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-graphics.svg b/datas/icon-themes/edeneu/scalable/categories/applications-graphics.svg new file mode 100644 index 0000000..56b0935 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-graphics.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-internet.svg b/datas/icon-themes/edeneu/scalable/categories/applications-internet.svg new file mode 100644 index 0000000..e58a282 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-internet.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-multimedia.svg b/datas/icon-themes/edeneu/scalable/categories/applications-multimedia.svg new file mode 100644 index 0000000..36beca9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-multimedia.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-office.svg b/datas/icon-themes/edeneu/scalable/categories/applications-office.svg new file mode 100644 index 0000000..58d47f5 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-office.svg @@ -0,0 +1,525 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-other.svg b/datas/icon-themes/edeneu/scalable/categories/applications-other.svg new file mode 100644 index 0000000..eff20f4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-other.svg @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/applications-system.svg b/datas/icon-themes/edeneu/scalable/categories/applications-system.svg new file mode 100644 index 0000000..e27018c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/applications-system.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/preferences-desktop-peripherals.svg b/datas/icon-themes/edeneu/scalable/categories/preferences-desktop-peripherals.svg new file mode 100644 index 0000000..626fedc --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/preferences-desktop-peripherals.svg @@ -0,0 +1,490 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/preferences-desktop.svg b/datas/icon-themes/edeneu/scalable/categories/preferences-desktop.svg new file mode 100644 index 0000000..2bd0cb8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/preferences-desktop.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/categories/preferences-system.svg b/datas/icon-themes/edeneu/scalable/categories/preferences-system.svg new file mode 100644 index 0000000..868e7d8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/categories/preferences-system.svg @@ -0,0 +1,495 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/battery.svg b/datas/icon-themes/edeneu/scalable/devices/battery.svg new file mode 100644 index 0000000..2fc7523 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/battery.svg @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/computer.svg b/datas/icon-themes/edeneu/scalable/devices/computer.svg new file mode 100644 index 0000000..e32f0af --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/computer.svg @@ -0,0 +1,353 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/drive-cdrom.svg b/datas/icon-themes/edeneu/scalable/devices/drive-cdrom.svg new file mode 100644 index 0000000..fe4f379 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/drive-cdrom.svg @@ -0,0 +1,857 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/drive-harddisk.svg b/datas/icon-themes/edeneu/scalable/devices/drive-harddisk.svg new file mode 100644 index 0000000..e15d52b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/drive-harddisk.svg @@ -0,0 +1,333 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/drive-removable-media.svg b/datas/icon-themes/edeneu/scalable/devices/drive-removable-media.svg new file mode 100644 index 0000000..d03a1c8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/drive-removable-media.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/input-keyboard.svg b/datas/icon-themes/edeneu/scalable/devices/input-keyboard.svg new file mode 100644 index 0000000..4a19adc --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/input-keyboard.svg @@ -0,0 +1,250 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/input-mouse.svg b/datas/icon-themes/edeneu/scalable/devices/input-mouse.svg new file mode 100644 index 0000000..8ff7db6 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/input-mouse.svg @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-cdrom-audio.svg b/datas/icon-themes/edeneu/scalable/devices/media-cdrom-audio.svg new file mode 100644 index 0000000..b1a3144 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-cdrom-audio.svg @@ -0,0 +1,377 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-cdrom.svg b/datas/icon-themes/edeneu/scalable/devices/media-cdrom.svg new file mode 100644 index 0000000..ae584be --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-cdrom.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-cdrw.svg b/datas/icon-themes/edeneu/scalable/devices/media-cdrw.svg new file mode 100644 index 0000000..d455ed9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-cdrw.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-dvd.svg b/datas/icon-themes/edeneu/scalable/devices/media-dvd.svg new file mode 100644 index 0000000..05a54dc --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-dvd.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-dvdrw.svg b/datas/icon-themes/edeneu/scalable/devices/media-dvdrw.svg new file mode 100644 index 0000000..c516e92 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-dvdrw.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/media-floppy.svg b/datas/icon-themes/edeneu/scalable/devices/media-floppy.svg new file mode 100644 index 0000000..9783fed --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/media-floppy.svg @@ -0,0 +1,303 @@ + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/datas/icon-themes/edeneu/scalable/devices/printer.svg b/datas/icon-themes/edeneu/scalable/devices/printer.svg new file mode 100644 index 0000000..6c11b88 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/printer.svg @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/devices/video-display.svg b/datas/icon-themes/edeneu/scalable/devices/video-display.svg new file mode 100644 index 0000000..7abcf20 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/devices/video-display.svg @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-important.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-important.svg new file mode 100644 index 0000000..52c08a3 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-important.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-pictures.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-pictures.svg new file mode 100644 index 0000000..624d7cd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-pictures.svg @@ -0,0 +1,342 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-readonly.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-readonly.svg new file mode 100644 index 0000000..52e6a8f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-readonly.svg @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-symbolic-link.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-symbolic-link.svg new file mode 100644 index 0000000..e6f1cac --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-symbolic-link.svg @@ -0,0 +1,219 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-system.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-system.svg new file mode 100644 index 0000000..4055d88 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-system.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-unreadable.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-unreadable.svg new file mode 100644 index 0000000..fd34eff --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-unreadable.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/emblems/emblem-web.svg b/datas/icon-themes/edeneu/scalable/emblems/emblem-web.svg new file mode 100644 index 0000000..3dc8f1c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/emblems/emblem-web.svg @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/application-certificate.svg b/datas/icon-themes/edeneu/scalable/mimetypes/application-certificate.svg new file mode 100644 index 0000000..b2c7363 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/application-certificate.svg @@ -0,0 +1,404 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Certificate + + + Silvestre Herrera + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/application-x-executable.svg b/datas/icon-themes/edeneu/scalable/mimetypes/application-x-executable.svg new file mode 100644 index 0000000..4055d88 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/application-x-executable.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/audio-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/audio-x-generic.svg new file mode 100644 index 0000000..9055ec3 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/audio-x-generic.svg @@ -0,0 +1,559 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/empty.svg b/datas/icon-themes/edeneu/scalable/mimetypes/empty.svg new file mode 100644 index 0000000..ecb8c0f --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/empty.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/font-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/font-x-generic.svg new file mode 100644 index 0000000..2b8f1a4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/font-x-generic.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/image-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/image-x-generic.svg new file mode 100644 index 0000000..624d7cd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/image-x-generic.svg @@ -0,0 +1,342 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/misc-cd-image.svg b/datas/icon-themes/edeneu/scalable/mimetypes/misc-cd-image.svg new file mode 100644 index 0000000..43d1246 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/misc-cd-image.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/package-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/package-x-generic.svg new file mode 100644 index 0000000..eff20f4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/package-x-generic.svg @@ -0,0 +1,508 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/text-html.svg b/datas/icon-themes/edeneu/scalable/mimetypes/text-html.svg new file mode 100644 index 0000000..30d4a72 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/text-html.svg @@ -0,0 +1,464 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/text-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-generic.svg new file mode 100644 index 0000000..bf2ad76 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-generic.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/text-x-script.svg b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-script.svg new file mode 100644 index 0000000..9eba604 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-script.svg @@ -0,0 +1,472 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/text-x-source.svg b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-source.svg new file mode 100644 index 0000000..abb7998 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/text-x-source.svg @@ -0,0 +1,389 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/video-x-generic.svg b/datas/icon-themes/edeneu/scalable/mimetypes/video-x-generic.svg new file mode 100644 index 0000000..36beca9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/video-x-generic.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/x-office-address-book.svg b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-address-book.svg new file mode 100644 index 0000000..a272b69 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-address-book.svg @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/x-office-document.svg b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-document.svg new file mode 100644 index 0000000..d0ac2a4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-document.svg @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/mimetypes/x-office-spreadsheet.svg b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-spreadsheet.svg new file mode 100644 index 0000000..237e409 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/mimetypes/x-office-spreadsheet.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/folder-remote.svg b/datas/icon-themes/edeneu/scalable/places/folder-remote.svg new file mode 100644 index 0000000..2b0f8f4 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/folder-remote.svg @@ -0,0 +1,529 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/folder-saved-search.svg b/datas/icon-themes/edeneu/scalable/places/folder-saved-search.svg new file mode 100644 index 0000000..9326832 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/folder-saved-search.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/folder.svg b/datas/icon-themes/edeneu/scalable/places/folder.svg new file mode 100644 index 0000000..a512127 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/folder.svg @@ -0,0 +1,497 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/network-server.svg b/datas/icon-themes/edeneu/scalable/places/network-server.svg new file mode 100644 index 0000000..8207031 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/network-server.svg @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/network-workgroup.svg b/datas/icon-themes/edeneu/scalable/places/network-workgroup.svg new file mode 100644 index 0000000..9fe6b4b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/network-workgroup.svg @@ -0,0 +1,560 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/start-here.svg b/datas/icon-themes/edeneu/scalable/places/start-here.svg new file mode 100644 index 0000000..a39d4eb --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/start-here.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/user-desktop.svg b/datas/icon-themes/edeneu/scalable/places/user-desktop.svg new file mode 100644 index 0000000..b82ca44 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/user-desktop.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/user-home.svg b/datas/icon-themes/edeneu/scalable/places/user-home.svg new file mode 100644 index 0000000..66aeca8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/user-home.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/places/user-trash.svg b/datas/icon-themes/edeneu/scalable/places/user-trash.svg new file mode 100644 index 0000000..ad479e8 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/places/user-trash.svg @@ -0,0 +1,349 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/audio-volume-high.svg b/datas/icon-themes/edeneu/scalable/status/audio-volume-high.svg new file mode 100644 index 0000000..cccd689 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/audio-volume-high.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/audio-volume-low.svg b/datas/icon-themes/edeneu/scalable/status/audio-volume-low.svg new file mode 100644 index 0000000..899bfd1 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/audio-volume-low.svg @@ -0,0 +1,394 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/audio-volume-medium.svg b/datas/icon-themes/edeneu/scalable/status/audio-volume-medium.svg new file mode 100644 index 0000000..40400fa --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/audio-volume-medium.svg @@ -0,0 +1,394 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/audio-volume-muted.svg b/datas/icon-themes/edeneu/scalable/status/audio-volume-muted.svg new file mode 100644 index 0000000..21fc389 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/audio-volume-muted.svg @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/audio-volume-zero.svg b/datas/icon-themes/edeneu/scalable/status/audio-volume-zero.svg new file mode 100644 index 0000000..69aa6ba --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/audio-volume-zero.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/battery-caution.svg b/datas/icon-themes/edeneu/scalable/status/battery-caution.svg new file mode 100644 index 0000000..ea52b62 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/battery-caution.svg @@ -0,0 +1,906 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/dialog-error.svg b/datas/icon-themes/edeneu/scalable/status/dialog-error.svg new file mode 100644 index 0000000..fd34eff --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/dialog-error.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/dialog-information.svg b/datas/icon-themes/edeneu/scalable/status/dialog-information.svg new file mode 100644 index 0000000..5c35d2e --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/dialog-information.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/dialog-password.svg b/datas/icon-themes/edeneu/scalable/status/dialog-password.svg new file mode 100644 index 0000000..d04bd43 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/dialog-password.svg @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/dialog-question.svg b/datas/icon-themes/edeneu/scalable/status/dialog-question.svg new file mode 100644 index 0000000..9879315 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/dialog-question.svg @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/dialog-warning.svg b/datas/icon-themes/edeneu/scalable/status/dialog-warning.svg new file mode 100644 index 0000000..52c08a3 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/dialog-warning.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/folder-drag-accept.svg b/datas/icon-themes/edeneu/scalable/status/folder-drag-accept.svg new file mode 100644 index 0000000..c0c45aa --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/folder-drag-accept.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/folder-open.svg b/datas/icon-themes/edeneu/scalable/status/folder-open.svg new file mode 100644 index 0000000..ef05196 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/folder-open.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/folder-visiting.svg b/datas/icon-themes/edeneu/scalable/status/folder-visiting.svg new file mode 100644 index 0000000..a72b3a3 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/folder-visiting.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/image-loading.svg b/datas/icon-themes/edeneu/scalable/status/image-loading.svg new file mode 100644 index 0000000..db97ec1 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/image-loading.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/image-missing.svg b/datas/icon-themes/edeneu/scalable/status/image-missing.svg new file mode 100644 index 0000000..0123a6b --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/image-missing.svg @@ -0,0 +1,564 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-error.svg b/datas/icon-themes/edeneu/scalable/status/network-error.svg new file mode 100644 index 0000000..3c7306c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-error.svg @@ -0,0 +1,553 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-idle.svg b/datas/icon-themes/edeneu/scalable/status/network-idle.svg new file mode 100644 index 0000000..eee68cd --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-idle.svg @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-offline.svg b/datas/icon-themes/edeneu/scalable/status/network-offline.svg new file mode 100644 index 0000000..1a4240c --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-offline.svg @@ -0,0 +1,580 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-receive.svg b/datas/icon-themes/edeneu/scalable/status/network-receive.svg new file mode 100644 index 0000000..8916cf9 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-receive.svg @@ -0,0 +1,409 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-transmit-receive.svg b/datas/icon-themes/edeneu/scalable/status/network-transmit-receive.svg new file mode 100644 index 0000000..094becf --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-transmit-receive.svg @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/network-transmit.svg b/datas/icon-themes/edeneu/scalable/status/network-transmit.svg new file mode 100644 index 0000000..929f0cf --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/network-transmit.svg @@ -0,0 +1,409 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/printer-error.svg b/datas/icon-themes/edeneu/scalable/status/printer-error.svg new file mode 100644 index 0000000..a12264d --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/printer-error.svg @@ -0,0 +1,527 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/datas/icon-themes/edeneu/scalable/status/user-trash-full.svg b/datas/icon-themes/edeneu/scalable/status/user-trash-full.svg new file mode 100644 index 0000000..74bb953 --- /dev/null +++ b/datas/icon-themes/edeneu/scalable/status/user-trash-full.svg @@ -0,0 +1,500 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +