cleanup
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					*.tar.*
 | 
				
			||||||
 | 
					liveuser.txt
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,16 @@
 | 
				
			||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [[ "$UID" != 0 ]]; then
 | 
				
			||||||
 | 
					    echo "USER NOT ROOT"
 | 
				
			||||||
 | 
					    sudo "$0"
 | 
				
			||||||
 | 
					    exit
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    echo "USER IS ROOT"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					find /home/liveuser -type f -newermt '2023-10-21 17:30' -ls |
 | 
				
			||||||
 | 
					grep -v '.cache' |
 | 
				
			||||||
 | 
					awk '{print $11}' |
 | 
				
			||||||
 | 
					sed -e "s|/home\/liveuser\/||g" > ./liveuser.txt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [[ "$UID" != 0 ]]; then
 | 
				
			||||||
 | 
					    echo "USER NOT ROOT"
 | 
				
			||||||
 | 
					    sudo $0
 | 
				
			||||||
 | 
					    exit
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    echo "USER IS ROOT"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					l=$(cat liveuser.txt)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					for i in $l
 | 
				
			||||||
 | 
					do
 | 
				
			||||||
 | 
					    if [ -f "./skel/$i" ]; then
 | 
				
			||||||
 | 
					        echo "$i exist"
 | 
				
			||||||
 | 
					        cp -vf /home/liveuser/$i ./skel/$i
 | 
				
			||||||
 | 
					    fi
 | 
				
			||||||
 | 
					done
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					chown -R 1000:1000 .
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,4 @@
 | 
				
			||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#XZ_OPT=-e9T0 tar -cJf skel.tar.xz skel
 | 
				
			||||||
 | 
					tar -cf - skel | xz -e -9 -T0 -c - > skel.tar.xz
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,6 @@
 | 
				
			||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					git add . && git commit -m "Update" && git push
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					echo "melawy" | beep -f 200 -l 250 -d 100 -r 1 -n -s
 | 
				
			||||||
 | 
					notify-send -a "$(basename $(pwd)): Push" -t 999999999 "Update finished" "$(date '+%Y.%m.%d %H:%M:%S')"
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,661 @@
 | 
				
			||||||
 | 
					                    GNU AFFERO GENERAL PUBLIC LICENSE
 | 
				
			||||||
 | 
					                       Version 3, 19 November 2007
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 | 
				
			||||||
 | 
					 Everyone is permitted to copy and distribute verbatim copies
 | 
				
			||||||
 | 
					 of this license document, but changing it is not allowed.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                            Preamble
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The GNU Affero General Public License is a free, copyleft license for
 | 
				
			||||||
 | 
					software and other kinds of works, specifically designed to ensure
 | 
				
			||||||
 | 
					cooperation with the community in the case of network server software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The licenses for most software and other practical works are designed
 | 
				
			||||||
 | 
					to take away your freedom to share and change the works.  By contrast,
 | 
				
			||||||
 | 
					our General Public Licenses are intended to guarantee your freedom to
 | 
				
			||||||
 | 
					share and change all versions of a program--to make sure it remains free
 | 
				
			||||||
 | 
					software for all its users.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  When we speak of free software, we are referring to freedom, not
 | 
				
			||||||
 | 
					price.  Our General Public Licenses are designed to make sure that you
 | 
				
			||||||
 | 
					have the freedom to distribute copies of free software (and charge for
 | 
				
			||||||
 | 
					them if you wish), that you receive source code or can get it if you
 | 
				
			||||||
 | 
					want it, that you can change the software or use pieces of it in new
 | 
				
			||||||
 | 
					free programs, and that you know you can do these things.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Developers that use our General Public Licenses protect your rights
 | 
				
			||||||
 | 
					with two steps: (1) assert copyright on the software, and (2) offer
 | 
				
			||||||
 | 
					you this License which gives you legal permission to copy, distribute
 | 
				
			||||||
 | 
					and/or modify the software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A secondary benefit of defending all users' freedom is that
 | 
				
			||||||
 | 
					improvements made in alternate versions of the program, if they
 | 
				
			||||||
 | 
					receive widespread use, become available for other developers to
 | 
				
			||||||
 | 
					incorporate.  Many developers of free software are heartened and
 | 
				
			||||||
 | 
					encouraged by the resulting cooperation.  However, in the case of
 | 
				
			||||||
 | 
					software used on network servers, this result may fail to come about.
 | 
				
			||||||
 | 
					The GNU General Public License permits making a modified version and
 | 
				
			||||||
 | 
					letting the public access it on a server without ever releasing its
 | 
				
			||||||
 | 
					source code to the public.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The GNU Affero General Public License is designed specifically to
 | 
				
			||||||
 | 
					ensure that, in such cases, the modified source code becomes available
 | 
				
			||||||
 | 
					to the community.  It requires the operator of a network server to
 | 
				
			||||||
 | 
					provide the source code of the modified version running there to the
 | 
				
			||||||
 | 
					users of that server.  Therefore, public use of a modified version, on
 | 
				
			||||||
 | 
					a publicly accessible server, gives the public access to the source
 | 
				
			||||||
 | 
					code of the modified version.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  An older license, called the Affero General Public License and
 | 
				
			||||||
 | 
					published by Affero, was designed to accomplish similar goals.  This is
 | 
				
			||||||
 | 
					a different license, not a version of the Affero GPL, but Affero has
 | 
				
			||||||
 | 
					released a new version of the Affero GPL which permits relicensing under
 | 
				
			||||||
 | 
					this license.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The precise terms and conditions for copying, distribution and
 | 
				
			||||||
 | 
					modification follow.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                       TERMS AND CONDITIONS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  0. Definitions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  "This License" refers to version 3 of the GNU Affero General Public License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  "Copyright" also means copyright-like laws that apply to other kinds of
 | 
				
			||||||
 | 
					works, such as semiconductor masks.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  "The Program" refers to any copyrightable work licensed under this
 | 
				
			||||||
 | 
					License.  Each licensee is addressed as "you".  "Licensees" and
 | 
				
			||||||
 | 
					"recipients" may be individuals or organizations.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  To "modify" a work means to copy from or adapt all or part of the work
 | 
				
			||||||
 | 
					in a fashion requiring copyright permission, other than the making of an
 | 
				
			||||||
 | 
					exact copy.  The resulting work is called a "modified version" of the
 | 
				
			||||||
 | 
					earlier work or a work "based on" the earlier work.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A "covered work" means either the unmodified Program or a work based
 | 
				
			||||||
 | 
					on the Program.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  To "propagate" a work means to do anything with it that, without
 | 
				
			||||||
 | 
					permission, would make you directly or secondarily liable for
 | 
				
			||||||
 | 
					infringement under applicable copyright law, except executing it on a
 | 
				
			||||||
 | 
					computer or modifying a private copy.  Propagation includes copying,
 | 
				
			||||||
 | 
					distribution (with or without modification), making available to the
 | 
				
			||||||
 | 
					public, and in some countries other activities as well.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  To "convey" a work means any kind of propagation that enables other
 | 
				
			||||||
 | 
					parties to make or receive copies.  Mere interaction with a user through
 | 
				
			||||||
 | 
					a computer network, with no transfer of a copy, is not conveying.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  An interactive user interface displays "Appropriate Legal Notices"
 | 
				
			||||||
 | 
					to the extent that it includes a convenient and prominently visible
 | 
				
			||||||
 | 
					feature that (1) displays an appropriate copyright notice, and (2)
 | 
				
			||||||
 | 
					tells the user that there is no warranty for the work (except to the
 | 
				
			||||||
 | 
					extent that warranties are provided), that licensees may convey the
 | 
				
			||||||
 | 
					work under this License, and how to view a copy of this License.  If
 | 
				
			||||||
 | 
					the interface presents a list of user commands or options, such as a
 | 
				
			||||||
 | 
					menu, a prominent item in the list meets this criterion.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  1. Source Code.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The "source code" for a work means the preferred form of the work
 | 
				
			||||||
 | 
					for making modifications to it.  "Object code" means any non-source
 | 
				
			||||||
 | 
					form of a work.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A "Standard Interface" means an interface that either is an official
 | 
				
			||||||
 | 
					standard defined by a recognized standards body, or, in the case of
 | 
				
			||||||
 | 
					interfaces specified for a particular programming language, one that
 | 
				
			||||||
 | 
					is widely used among developers working in that language.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The "System Libraries" of an executable work include anything, other
 | 
				
			||||||
 | 
					than the work as a whole, that (a) is included in the normal form of
 | 
				
			||||||
 | 
					packaging a Major Component, but which is not part of that Major
 | 
				
			||||||
 | 
					Component, and (b) serves only to enable use of the work with that
 | 
				
			||||||
 | 
					Major Component, or to implement a Standard Interface for which an
 | 
				
			||||||
 | 
					implementation is available to the public in source code form.  A
 | 
				
			||||||
 | 
					"Major Component", in this context, means a major essential component
 | 
				
			||||||
 | 
					(kernel, window system, and so on) of the specific operating system
 | 
				
			||||||
 | 
					(if any) on which the executable work runs, or a compiler used to
 | 
				
			||||||
 | 
					produce the work, or an object code interpreter used to run it.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The "Corresponding Source" for a work in object code form means all
 | 
				
			||||||
 | 
					the source code needed to generate, install, and (for an executable
 | 
				
			||||||
 | 
					work) run the object code and to modify the work, including scripts to
 | 
				
			||||||
 | 
					control those activities.  However, it does not include the work's
 | 
				
			||||||
 | 
					System Libraries, or general-purpose tools or generally available free
 | 
				
			||||||
 | 
					programs which are used unmodified in performing those activities but
 | 
				
			||||||
 | 
					which are not part of the work.  For example, Corresponding Source
 | 
				
			||||||
 | 
					includes interface definition files associated with source files for
 | 
				
			||||||
 | 
					the work, and the source code for shared libraries and dynamically
 | 
				
			||||||
 | 
					linked subprograms that the work is specifically designed to require,
 | 
				
			||||||
 | 
					such as by intimate data communication or control flow between those
 | 
				
			||||||
 | 
					subprograms and other parts of the work.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The Corresponding Source need not include anything that users
 | 
				
			||||||
 | 
					can regenerate automatically from other parts of the Corresponding
 | 
				
			||||||
 | 
					Source.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The Corresponding Source for a work in source code form is that
 | 
				
			||||||
 | 
					same work.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  2. Basic Permissions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  All rights granted under this License are granted for the term of
 | 
				
			||||||
 | 
					copyright on the Program, and are irrevocable provided the stated
 | 
				
			||||||
 | 
					conditions are met.  This License explicitly affirms your unlimited
 | 
				
			||||||
 | 
					permission to run the unmodified Program.  The output from running a
 | 
				
			||||||
 | 
					covered work is covered by this License only if the output, given its
 | 
				
			||||||
 | 
					content, constitutes a covered work.  This License acknowledges your
 | 
				
			||||||
 | 
					rights of fair use or other equivalent, as provided by copyright law.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may make, run and propagate covered works that you do not
 | 
				
			||||||
 | 
					convey, without conditions so long as your license otherwise remains
 | 
				
			||||||
 | 
					in force.  You may convey covered works to others for the sole purpose
 | 
				
			||||||
 | 
					of having them make modifications exclusively for you, or provide you
 | 
				
			||||||
 | 
					with facilities for running those works, provided that you comply with
 | 
				
			||||||
 | 
					the terms of this License in conveying all material for which you do
 | 
				
			||||||
 | 
					not control copyright.  Those thus making or running the covered works
 | 
				
			||||||
 | 
					for you must do so exclusively on your behalf, under your direction
 | 
				
			||||||
 | 
					and control, on terms that prohibit them from making any copies of
 | 
				
			||||||
 | 
					your copyrighted material outside their relationship with you.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Conveying under any other circumstances is permitted solely under
 | 
				
			||||||
 | 
					the conditions stated below.  Sublicensing is not allowed; section 10
 | 
				
			||||||
 | 
					makes it unnecessary.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  No covered work shall be deemed part of an effective technological
 | 
				
			||||||
 | 
					measure under any applicable law fulfilling obligations under article
 | 
				
			||||||
 | 
					11 of the WIPO copyright treaty adopted on 20 December 1996, or
 | 
				
			||||||
 | 
					similar laws prohibiting or restricting circumvention of such
 | 
				
			||||||
 | 
					measures.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  When you convey a covered work, you waive any legal power to forbid
 | 
				
			||||||
 | 
					circumvention of technological measures to the extent such circumvention
 | 
				
			||||||
 | 
					is effected by exercising rights under this License with respect to
 | 
				
			||||||
 | 
					the covered work, and you disclaim any intention to limit operation or
 | 
				
			||||||
 | 
					modification of the work as a means of enforcing, against the work's
 | 
				
			||||||
 | 
					users, your or third parties' legal rights to forbid circumvention of
 | 
				
			||||||
 | 
					technological measures.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  4. Conveying Verbatim Copies.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may convey verbatim copies of the Program's source code as you
 | 
				
			||||||
 | 
					receive it, in any medium, provided that you conspicuously and
 | 
				
			||||||
 | 
					appropriately publish on each copy an appropriate copyright notice;
 | 
				
			||||||
 | 
					keep intact all notices stating that this License and any
 | 
				
			||||||
 | 
					non-permissive terms added in accord with section 7 apply to the code;
 | 
				
			||||||
 | 
					keep intact all notices of the absence of any warranty; and give all
 | 
				
			||||||
 | 
					recipients a copy of this License along with the Program.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may charge any price or no price for each copy that you convey,
 | 
				
			||||||
 | 
					and you may offer support or warranty protection for a fee.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  5. Conveying Modified Source Versions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may convey a work based on the Program, or the modifications to
 | 
				
			||||||
 | 
					produce it from the Program, in the form of source code under the
 | 
				
			||||||
 | 
					terms of section 4, provided that you also meet all of these conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    a) The work must carry prominent notices stating that you modified
 | 
				
			||||||
 | 
					    it, and giving a relevant date.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    b) The work must carry prominent notices stating that it is
 | 
				
			||||||
 | 
					    released under this License and any conditions added under section
 | 
				
			||||||
 | 
					    7.  This requirement modifies the requirement in section 4 to
 | 
				
			||||||
 | 
					    "keep intact all notices".
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    c) You must license the entire work, as a whole, under this
 | 
				
			||||||
 | 
					    License to anyone who comes into possession of a copy.  This
 | 
				
			||||||
 | 
					    License will therefore apply, along with any applicable section 7
 | 
				
			||||||
 | 
					    additional terms, to the whole of the work, and all its parts,
 | 
				
			||||||
 | 
					    regardless of how they are packaged.  This License gives no
 | 
				
			||||||
 | 
					    permission to license the work in any other way, but it does not
 | 
				
			||||||
 | 
					    invalidate such permission if you have separately received it.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    d) If the work has interactive user interfaces, each must display
 | 
				
			||||||
 | 
					    Appropriate Legal Notices; however, if the Program has interactive
 | 
				
			||||||
 | 
					    interfaces that do not display Appropriate Legal Notices, your
 | 
				
			||||||
 | 
					    work need not make them do so.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A compilation of a covered work with other separate and independent
 | 
				
			||||||
 | 
					works, which are not by their nature extensions of the covered work,
 | 
				
			||||||
 | 
					and which are not combined with it such as to form a larger program,
 | 
				
			||||||
 | 
					in or on a volume of a storage or distribution medium, is called an
 | 
				
			||||||
 | 
					"aggregate" if the compilation and its resulting copyright are not
 | 
				
			||||||
 | 
					used to limit the access or legal rights of the compilation's users
 | 
				
			||||||
 | 
					beyond what the individual works permit.  Inclusion of a covered work
 | 
				
			||||||
 | 
					in an aggregate does not cause this License to apply to the other
 | 
				
			||||||
 | 
					parts of the aggregate.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  6. Conveying Non-Source Forms.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may convey a covered work in object code form under the terms
 | 
				
			||||||
 | 
					of sections 4 and 5, provided that you also convey the
 | 
				
			||||||
 | 
					machine-readable Corresponding Source under the terms of this License,
 | 
				
			||||||
 | 
					in one of these ways:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    a) Convey the object code in, or embodied in, a physical product
 | 
				
			||||||
 | 
					    (including a physical distribution medium), accompanied by the
 | 
				
			||||||
 | 
					    Corresponding Source fixed on a durable physical medium
 | 
				
			||||||
 | 
					    customarily used for software interchange.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    b) Convey the object code in, or embodied in, a physical product
 | 
				
			||||||
 | 
					    (including a physical distribution medium), accompanied by a
 | 
				
			||||||
 | 
					    written offer, valid for at least three years and valid for as
 | 
				
			||||||
 | 
					    long as you offer spare parts or customer support for that product
 | 
				
			||||||
 | 
					    model, to give anyone who possesses the object code either (1) a
 | 
				
			||||||
 | 
					    copy of the Corresponding Source for all the software in the
 | 
				
			||||||
 | 
					    product that is covered by this License, on a durable physical
 | 
				
			||||||
 | 
					    medium customarily used for software interchange, for a price no
 | 
				
			||||||
 | 
					    more than your reasonable cost of physically performing this
 | 
				
			||||||
 | 
					    conveying of source, or (2) access to copy the
 | 
				
			||||||
 | 
					    Corresponding Source from a network server at no charge.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    c) Convey individual copies of the object code with a copy of the
 | 
				
			||||||
 | 
					    written offer to provide the Corresponding Source.  This
 | 
				
			||||||
 | 
					    alternative is allowed only occasionally and noncommercially, and
 | 
				
			||||||
 | 
					    only if you received the object code with such an offer, in accord
 | 
				
			||||||
 | 
					    with subsection 6b.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    d) Convey the object code by offering access from a designated
 | 
				
			||||||
 | 
					    place (gratis or for a charge), and offer equivalent access to the
 | 
				
			||||||
 | 
					    Corresponding Source in the same way through the same place at no
 | 
				
			||||||
 | 
					    further charge.  You need not require recipients to copy the
 | 
				
			||||||
 | 
					    Corresponding Source along with the object code.  If the place to
 | 
				
			||||||
 | 
					    copy the object code is a network server, the Corresponding Source
 | 
				
			||||||
 | 
					    may be on a different server (operated by you or a third party)
 | 
				
			||||||
 | 
					    that supports equivalent copying facilities, provided you maintain
 | 
				
			||||||
 | 
					    clear directions next to the object code saying where to find the
 | 
				
			||||||
 | 
					    Corresponding Source.  Regardless of what server hosts the
 | 
				
			||||||
 | 
					    Corresponding Source, you remain obligated to ensure that it is
 | 
				
			||||||
 | 
					    available for as long as needed to satisfy these requirements.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    e) Convey the object code using peer-to-peer transmission, provided
 | 
				
			||||||
 | 
					    you inform other peers where the object code and Corresponding
 | 
				
			||||||
 | 
					    Source of the work are being offered to the general public at no
 | 
				
			||||||
 | 
					    charge under subsection 6d.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A separable portion of the object code, whose source code is excluded
 | 
				
			||||||
 | 
					from the Corresponding Source as a System Library, need not be
 | 
				
			||||||
 | 
					included in conveying the object code work.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A "User Product" is either (1) a "consumer product", which means any
 | 
				
			||||||
 | 
					tangible personal property which is normally used for personal, family,
 | 
				
			||||||
 | 
					or household purposes, or (2) anything designed or sold for incorporation
 | 
				
			||||||
 | 
					into a dwelling.  In determining whether a product is a consumer product,
 | 
				
			||||||
 | 
					doubtful cases shall be resolved in favor of coverage.  For a particular
 | 
				
			||||||
 | 
					product received by a particular user, "normally used" refers to a
 | 
				
			||||||
 | 
					typical or common use of that class of product, regardless of the status
 | 
				
			||||||
 | 
					of the particular user or of the way in which the particular user
 | 
				
			||||||
 | 
					actually uses, or expects or is expected to use, the product.  A product
 | 
				
			||||||
 | 
					is a consumer product regardless of whether the product has substantial
 | 
				
			||||||
 | 
					commercial, industrial or non-consumer uses, unless such uses represent
 | 
				
			||||||
 | 
					the only significant mode of use of the product.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  "Installation Information" for a User Product means any methods,
 | 
				
			||||||
 | 
					procedures, authorization keys, or other information required to install
 | 
				
			||||||
 | 
					and execute modified versions of a covered work in that User Product from
 | 
				
			||||||
 | 
					a modified version of its Corresponding Source.  The information must
 | 
				
			||||||
 | 
					suffice to ensure that the continued functioning of the modified object
 | 
				
			||||||
 | 
					code is in no case prevented or interfered with solely because
 | 
				
			||||||
 | 
					modification has been made.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If you convey an object code work under this section in, or with, or
 | 
				
			||||||
 | 
					specifically for use in, a User Product, and the conveying occurs as
 | 
				
			||||||
 | 
					part of a transaction in which the right of possession and use of the
 | 
				
			||||||
 | 
					User Product is transferred to the recipient in perpetuity or for a
 | 
				
			||||||
 | 
					fixed term (regardless of how the transaction is characterized), the
 | 
				
			||||||
 | 
					Corresponding Source conveyed under this section must be accompanied
 | 
				
			||||||
 | 
					by the Installation Information.  But this requirement does not apply
 | 
				
			||||||
 | 
					if neither you nor any third party retains the ability to install
 | 
				
			||||||
 | 
					modified object code on the User Product (for example, the work has
 | 
				
			||||||
 | 
					been installed in ROM).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The requirement to provide Installation Information does not include a
 | 
				
			||||||
 | 
					requirement to continue to provide support service, warranty, or updates
 | 
				
			||||||
 | 
					for a work that has been modified or installed by the recipient, or for
 | 
				
			||||||
 | 
					the User Product in which it has been modified or installed.  Access to a
 | 
				
			||||||
 | 
					network may be denied when the modification itself materially and
 | 
				
			||||||
 | 
					adversely affects the operation of the network or violates the rules and
 | 
				
			||||||
 | 
					protocols for communication across the network.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Corresponding Source conveyed, and Installation Information provided,
 | 
				
			||||||
 | 
					in accord with this section must be in a format that is publicly
 | 
				
			||||||
 | 
					documented (and with an implementation available to the public in
 | 
				
			||||||
 | 
					source code form), and must require no special password or key for
 | 
				
			||||||
 | 
					unpacking, reading or copying.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  7. Additional Terms.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  "Additional permissions" are terms that supplement the terms of this
 | 
				
			||||||
 | 
					License by making exceptions from one or more of its conditions.
 | 
				
			||||||
 | 
					Additional permissions that are applicable to the entire Program shall
 | 
				
			||||||
 | 
					be treated as though they were included in this License, to the extent
 | 
				
			||||||
 | 
					that they are valid under applicable law.  If additional permissions
 | 
				
			||||||
 | 
					apply only to part of the Program, that part may be used separately
 | 
				
			||||||
 | 
					under those permissions, but the entire Program remains governed by
 | 
				
			||||||
 | 
					this License without regard to the additional permissions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  When you convey a copy of a covered work, you may at your option
 | 
				
			||||||
 | 
					remove any additional permissions from that copy, or from any part of
 | 
				
			||||||
 | 
					it.  (Additional permissions may be written to require their own
 | 
				
			||||||
 | 
					removal in certain cases when you modify the work.)  You may place
 | 
				
			||||||
 | 
					additional permissions on material, added by you to a covered work,
 | 
				
			||||||
 | 
					for which you have or can give appropriate copyright permission.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Notwithstanding any other provision of this License, for material you
 | 
				
			||||||
 | 
					add to a covered work, you may (if authorized by the copyright holders of
 | 
				
			||||||
 | 
					that material) supplement the terms of this License with terms:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    a) Disclaiming warranty or limiting liability differently from the
 | 
				
			||||||
 | 
					    terms of sections 15 and 16 of this License; or
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    b) Requiring preservation of specified reasonable legal notices or
 | 
				
			||||||
 | 
					    author attributions in that material or in the Appropriate Legal
 | 
				
			||||||
 | 
					    Notices displayed by works containing it; or
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    c) Prohibiting misrepresentation of the origin of that material, or
 | 
				
			||||||
 | 
					    requiring that modified versions of such material be marked in
 | 
				
			||||||
 | 
					    reasonable ways as different from the original version; or
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    d) Limiting the use for publicity purposes of names of licensors or
 | 
				
			||||||
 | 
					    authors of the material; or
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    e) Declining to grant rights under trademark law for use of some
 | 
				
			||||||
 | 
					    trade names, trademarks, or service marks; or
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    f) Requiring indemnification of licensors and authors of that
 | 
				
			||||||
 | 
					    material by anyone who conveys the material (or modified versions of
 | 
				
			||||||
 | 
					    it) with contractual assumptions of liability to the recipient, for
 | 
				
			||||||
 | 
					    any liability that these contractual assumptions directly impose on
 | 
				
			||||||
 | 
					    those licensors and authors.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  All other non-permissive additional terms are considered "further
 | 
				
			||||||
 | 
					restrictions" within the meaning of section 10.  If the Program as you
 | 
				
			||||||
 | 
					received it, or any part of it, contains a notice stating that it is
 | 
				
			||||||
 | 
					governed by this License along with a term that is a further
 | 
				
			||||||
 | 
					restriction, you may remove that term.  If a license document contains
 | 
				
			||||||
 | 
					a further restriction but permits relicensing or conveying under this
 | 
				
			||||||
 | 
					License, you may add to a covered work material governed by the terms
 | 
				
			||||||
 | 
					of that license document, provided that the further restriction does
 | 
				
			||||||
 | 
					not survive such relicensing or conveying.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If you add terms to a covered work in accord with this section, you
 | 
				
			||||||
 | 
					must place, in the relevant source files, a statement of the
 | 
				
			||||||
 | 
					additional terms that apply to those files, or a notice indicating
 | 
				
			||||||
 | 
					where to find the applicable terms.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Additional terms, permissive or non-permissive, may be stated in the
 | 
				
			||||||
 | 
					form of a separately written license, or stated as exceptions;
 | 
				
			||||||
 | 
					the above requirements apply either way.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  8. Termination.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may not propagate or modify a covered work except as expressly
 | 
				
			||||||
 | 
					provided under this License.  Any attempt otherwise to propagate or
 | 
				
			||||||
 | 
					modify it is void, and will automatically terminate your rights under
 | 
				
			||||||
 | 
					this License (including any patent licenses granted under the third
 | 
				
			||||||
 | 
					paragraph of section 11).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  However, if you cease all violation of this License, then your
 | 
				
			||||||
 | 
					license from a particular copyright holder is reinstated (a)
 | 
				
			||||||
 | 
					provisionally, unless and until the copyright holder explicitly and
 | 
				
			||||||
 | 
					finally terminates your license, and (b) permanently, if the copyright
 | 
				
			||||||
 | 
					holder fails to notify you of the violation by some reasonable means
 | 
				
			||||||
 | 
					prior to 60 days after the cessation.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Moreover, your license from a particular copyright holder is
 | 
				
			||||||
 | 
					reinstated permanently if the copyright holder notifies you of the
 | 
				
			||||||
 | 
					violation by some reasonable means, this is the first time you have
 | 
				
			||||||
 | 
					received notice of violation of this License (for any work) from that
 | 
				
			||||||
 | 
					copyright holder, and you cure the violation prior to 30 days after
 | 
				
			||||||
 | 
					your receipt of the notice.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Termination of your rights under this section does not terminate the
 | 
				
			||||||
 | 
					licenses of parties who have received copies or rights from you under
 | 
				
			||||||
 | 
					this License.  If your rights have been terminated and not permanently
 | 
				
			||||||
 | 
					reinstated, you do not qualify to receive new licenses for the same
 | 
				
			||||||
 | 
					material under section 10.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  9. Acceptance Not Required for Having Copies.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You are not required to accept this License in order to receive or
 | 
				
			||||||
 | 
					run a copy of the Program.  Ancillary propagation of a covered work
 | 
				
			||||||
 | 
					occurring solely as a consequence of using peer-to-peer transmission
 | 
				
			||||||
 | 
					to receive a copy likewise does not require acceptance.  However,
 | 
				
			||||||
 | 
					nothing other than this License grants you permission to propagate or
 | 
				
			||||||
 | 
					modify any covered work.  These actions infringe copyright if you do
 | 
				
			||||||
 | 
					not accept this License.  Therefore, by modifying or propagating a
 | 
				
			||||||
 | 
					covered work, you indicate your acceptance of this License to do so.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  10. Automatic Licensing of Downstream Recipients.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Each time you convey a covered work, the recipient automatically
 | 
				
			||||||
 | 
					receives a license from the original licensors, to run, modify and
 | 
				
			||||||
 | 
					propagate that work, subject to this License.  You are not responsible
 | 
				
			||||||
 | 
					for enforcing compliance by third parties with this License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  An "entity transaction" is a transaction transferring control of an
 | 
				
			||||||
 | 
					organization, or substantially all assets of one, or subdividing an
 | 
				
			||||||
 | 
					organization, or merging organizations.  If propagation of a covered
 | 
				
			||||||
 | 
					work results from an entity transaction, each party to that
 | 
				
			||||||
 | 
					transaction who receives a copy of the work also receives whatever
 | 
				
			||||||
 | 
					licenses to the work the party's predecessor in interest had or could
 | 
				
			||||||
 | 
					give under the previous paragraph, plus a right to possession of the
 | 
				
			||||||
 | 
					Corresponding Source of the work from the predecessor in interest, if
 | 
				
			||||||
 | 
					the predecessor has it or can get it with reasonable efforts.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You may not impose any further restrictions on the exercise of the
 | 
				
			||||||
 | 
					rights granted or affirmed under this License.  For example, you may
 | 
				
			||||||
 | 
					not impose a license fee, royalty, or other charge for exercise of
 | 
				
			||||||
 | 
					rights granted under this License, and you may not initiate litigation
 | 
				
			||||||
 | 
					(including a cross-claim or counterclaim in a lawsuit) alleging that
 | 
				
			||||||
 | 
					any patent claim is infringed by making, using, selling, offering for
 | 
				
			||||||
 | 
					sale, or importing the Program or any portion of it.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  11. Patents.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A "contributor" is a copyright holder who authorizes use under this
 | 
				
			||||||
 | 
					License of the Program or a work on which the Program is based.  The
 | 
				
			||||||
 | 
					work thus licensed is called the contributor's "contributor version".
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A contributor's "essential patent claims" are all patent claims
 | 
				
			||||||
 | 
					owned or controlled by the contributor, whether already acquired or
 | 
				
			||||||
 | 
					hereafter acquired, that would be infringed by some manner, permitted
 | 
				
			||||||
 | 
					by this License, of making, using, or selling its contributor version,
 | 
				
			||||||
 | 
					but do not include claims that would be infringed only as a
 | 
				
			||||||
 | 
					consequence of further modification of the contributor version.  For
 | 
				
			||||||
 | 
					purposes of this definition, "control" includes the right to grant
 | 
				
			||||||
 | 
					patent sublicenses in a manner consistent with the requirements of
 | 
				
			||||||
 | 
					this License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Each contributor grants you a non-exclusive, worldwide, royalty-free
 | 
				
			||||||
 | 
					patent license under the contributor's essential patent claims, to
 | 
				
			||||||
 | 
					make, use, sell, offer for sale, import and otherwise run, modify and
 | 
				
			||||||
 | 
					propagate the contents of its contributor version.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  In the following three paragraphs, a "patent license" is any express
 | 
				
			||||||
 | 
					agreement or commitment, however denominated, not to enforce a patent
 | 
				
			||||||
 | 
					(such as an express permission to practice a patent or covenant not to
 | 
				
			||||||
 | 
					sue for patent infringement).  To "grant" such a patent license to a
 | 
				
			||||||
 | 
					party means to make such an agreement or commitment not to enforce a
 | 
				
			||||||
 | 
					patent against the party.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If you convey a covered work, knowingly relying on a patent license,
 | 
				
			||||||
 | 
					and the Corresponding Source of the work is not available for anyone
 | 
				
			||||||
 | 
					to copy, free of charge and under the terms of this License, through a
 | 
				
			||||||
 | 
					publicly available network server or other readily accessible means,
 | 
				
			||||||
 | 
					then you must either (1) cause the Corresponding Source to be so
 | 
				
			||||||
 | 
					available, or (2) arrange to deprive yourself of the benefit of the
 | 
				
			||||||
 | 
					patent license for this particular work, or (3) arrange, in a manner
 | 
				
			||||||
 | 
					consistent with the requirements of this License, to extend the patent
 | 
				
			||||||
 | 
					license to downstream recipients.  "Knowingly relying" means you have
 | 
				
			||||||
 | 
					actual knowledge that, but for the patent license, your conveying the
 | 
				
			||||||
 | 
					covered work in a country, or your recipient's use of the covered work
 | 
				
			||||||
 | 
					in a country, would infringe one or more identifiable patents in that
 | 
				
			||||||
 | 
					country that you have reason to believe are valid.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If, pursuant to or in connection with a single transaction or
 | 
				
			||||||
 | 
					arrangement, you convey, or propagate by procuring conveyance of, a
 | 
				
			||||||
 | 
					covered work, and grant a patent license to some of the parties
 | 
				
			||||||
 | 
					receiving the covered work authorizing them to use, propagate, modify
 | 
				
			||||||
 | 
					or convey a specific copy of the covered work, then the patent license
 | 
				
			||||||
 | 
					you grant is automatically extended to all recipients of the covered
 | 
				
			||||||
 | 
					work and works based on it.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  A patent license is "discriminatory" if it does not include within
 | 
				
			||||||
 | 
					the scope of its coverage, prohibits the exercise of, or is
 | 
				
			||||||
 | 
					conditioned on the non-exercise of one or more of the rights that are
 | 
				
			||||||
 | 
					specifically granted under this License.  You may not convey a covered
 | 
				
			||||||
 | 
					work if you are a party to an arrangement with a third party that is
 | 
				
			||||||
 | 
					in the business of distributing software, under which you make payment
 | 
				
			||||||
 | 
					to the third party based on the extent of your activity of conveying
 | 
				
			||||||
 | 
					the work, and under which the third party grants, to any of the
 | 
				
			||||||
 | 
					parties who would receive the covered work from you, a discriminatory
 | 
				
			||||||
 | 
					patent license (a) in connection with copies of the covered work
 | 
				
			||||||
 | 
					conveyed by you (or copies made from those copies), or (b) primarily
 | 
				
			||||||
 | 
					for and in connection with specific products or compilations that
 | 
				
			||||||
 | 
					contain the covered work, unless you entered into that arrangement,
 | 
				
			||||||
 | 
					or that patent license was granted, prior to 28 March 2007.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Nothing in this License shall be construed as excluding or limiting
 | 
				
			||||||
 | 
					any implied license or other defenses to infringement that may
 | 
				
			||||||
 | 
					otherwise be available to you under applicable patent law.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  12. No Surrender of Others' Freedom.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If conditions are imposed on you (whether by court order, agreement or
 | 
				
			||||||
 | 
					otherwise) that contradict the conditions of this License, they do not
 | 
				
			||||||
 | 
					excuse you from the conditions of this License.  If you cannot convey a
 | 
				
			||||||
 | 
					covered work so as to satisfy simultaneously your obligations under this
 | 
				
			||||||
 | 
					License and any other pertinent obligations, then as a consequence you may
 | 
				
			||||||
 | 
					not convey it at all.  For example, if you agree to terms that obligate you
 | 
				
			||||||
 | 
					to collect a royalty for further conveying from those to whom you convey
 | 
				
			||||||
 | 
					the Program, the only way you could satisfy both those terms and this
 | 
				
			||||||
 | 
					License would be to refrain entirely from conveying the Program.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  13. Remote Network Interaction; Use with the GNU General Public License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Notwithstanding any other provision of this License, if you modify the
 | 
				
			||||||
 | 
					Program, your modified version must prominently offer all users
 | 
				
			||||||
 | 
					interacting with it remotely through a computer network (if your version
 | 
				
			||||||
 | 
					supports such interaction) an opportunity to receive the Corresponding
 | 
				
			||||||
 | 
					Source of your version by providing access to the Corresponding Source
 | 
				
			||||||
 | 
					from a network server at no charge, through some standard or customary
 | 
				
			||||||
 | 
					means of facilitating copying of software.  This Corresponding Source
 | 
				
			||||||
 | 
					shall include the Corresponding Source for any work covered by version 3
 | 
				
			||||||
 | 
					of the GNU General Public License that is incorporated pursuant to the
 | 
				
			||||||
 | 
					following paragraph.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Notwithstanding any other provision of this License, you have
 | 
				
			||||||
 | 
					permission to link or combine any covered work with a work licensed
 | 
				
			||||||
 | 
					under version 3 of the GNU General Public License into a single
 | 
				
			||||||
 | 
					combined work, and to convey the resulting work.  The terms of this
 | 
				
			||||||
 | 
					License will continue to apply to the part which is the covered work,
 | 
				
			||||||
 | 
					but the work with which it is combined will remain governed by version
 | 
				
			||||||
 | 
					3 of the GNU General Public License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  14. Revised Versions of this License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  The Free Software Foundation may publish revised and/or new versions of
 | 
				
			||||||
 | 
					the GNU Affero General Public License from time to time.  Such new versions
 | 
				
			||||||
 | 
					will be similar in spirit to the present version, but may differ in detail to
 | 
				
			||||||
 | 
					address new problems or concerns.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Each version is given a distinguishing version number.  If the
 | 
				
			||||||
 | 
					Program specifies that a certain numbered version of the GNU Affero General
 | 
				
			||||||
 | 
					Public License "or any later version" applies to it, you have the
 | 
				
			||||||
 | 
					option of following the terms and conditions either of that numbered
 | 
				
			||||||
 | 
					version or of any later version published by the Free Software
 | 
				
			||||||
 | 
					Foundation.  If the Program does not specify a version number of the
 | 
				
			||||||
 | 
					GNU Affero General Public License, you may choose any version ever published
 | 
				
			||||||
 | 
					by the Free Software Foundation.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If the Program specifies that a proxy can decide which future
 | 
				
			||||||
 | 
					versions of the GNU Affero General Public License can be used, that proxy's
 | 
				
			||||||
 | 
					public statement of acceptance of a version permanently authorizes you
 | 
				
			||||||
 | 
					to choose that version for the Program.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  Later license versions may give you additional or different
 | 
				
			||||||
 | 
					permissions.  However, no additional obligations are imposed on any
 | 
				
			||||||
 | 
					author or copyright holder as a result of your choosing to follow a
 | 
				
			||||||
 | 
					later version.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  15. Disclaimer of Warranty.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
 | 
				
			||||||
 | 
					APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
 | 
				
			||||||
 | 
					HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
 | 
				
			||||||
 | 
					OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
 | 
				
			||||||
 | 
					THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 | 
				
			||||||
 | 
					PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
 | 
				
			||||||
 | 
					IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
 | 
				
			||||||
 | 
					ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  16. Limitation of Liability.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
 | 
				
			||||||
 | 
					WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
 | 
				
			||||||
 | 
					THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
 | 
				
			||||||
 | 
					GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
 | 
				
			||||||
 | 
					USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
 | 
				
			||||||
 | 
					DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
 | 
				
			||||||
 | 
					PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
 | 
				
			||||||
 | 
					EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
 | 
				
			||||||
 | 
					SUCH DAMAGES.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  17. Interpretation of Sections 15 and 16.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If the disclaimer of warranty and limitation of liability provided
 | 
				
			||||||
 | 
					above cannot be given local legal effect according to their terms,
 | 
				
			||||||
 | 
					reviewing courts shall apply local law that most closely approximates
 | 
				
			||||||
 | 
					an absolute waiver of all civil liability in connection with the
 | 
				
			||||||
 | 
					Program, unless a warranty or assumption of liability accompanies a
 | 
				
			||||||
 | 
					copy of the Program in return for a fee.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                     END OF TERMS AND CONDITIONS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            How to Apply These Terms to Your New Programs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If you develop a new program, and you want it to be of the greatest
 | 
				
			||||||
 | 
					possible use to the public, the best way to achieve this is to make it
 | 
				
			||||||
 | 
					free software which everyone can redistribute and change under these terms.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  To do so, attach the following notices to the program.  It is safest
 | 
				
			||||||
 | 
					to attach them to the start of each source file to most effectively
 | 
				
			||||||
 | 
					state the exclusion of warranty; and each file should have at least
 | 
				
			||||||
 | 
					the "copyright" line and a pointer to where the full notice is found.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <one line to give the program's name and a brief idea of what it does.>
 | 
				
			||||||
 | 
					    Copyright (C) <year>  <name of author>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    This program is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					    it under the terms of the GNU Affero General Public License as published
 | 
				
			||||||
 | 
					    by the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					    (at your option) any later version.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    This program is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					    GNU Affero General Public License for more details.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    You should have received a copy of the GNU Affero General Public License
 | 
				
			||||||
 | 
					    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Also add information on how to contact you by electronic and paper mail.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  If your software can interact with users remotely through a computer
 | 
				
			||||||
 | 
					network, you should also make sure that it provides a way for users to
 | 
				
			||||||
 | 
					get its source.  For example, if your program is a web application, its
 | 
				
			||||||
 | 
					interface could display a "Source" link that leads users to an archive
 | 
				
			||||||
 | 
					of the code.  There are many ways you could offer source, and different
 | 
				
			||||||
 | 
					solutions will be better for different programs; see section 13 for the
 | 
				
			||||||
 | 
					specific requirements.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  You should also get your employer (if you work as a programmer) or school,
 | 
				
			||||||
 | 
					if any, to sign a "copyright disclaimer" for the program, if necessary.
 | 
				
			||||||
 | 
					For more information on this, and how to apply and follow the GNU AGPL, see
 | 
				
			||||||
 | 
					<https://www.gnu.org/licenses/>.
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,11 @@
 | 
				
			||||||
 | 
					# etc skel
 | 
				
			||||||
 | 
					etc skel for Melawy Linux
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Donate
 | 
				
			||||||
 | 
					[Tinkoff](https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[YooMoney](https://yoomoney.ru/to/4100115921160758)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Qiwi](https://qiwi.com/n/VALERIAFADEEVA)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,19 @@
 | 
				
			||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mv .git/config config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					rm -rf .git
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					git init -b main
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mv config .git/config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					git add --all .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					git commit -m "cleanup"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					git push origin main --force
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					echo "################################################################"
 | 
				
			||||||
 | 
					echo "###################    cleanup  Done      ######################"
 | 
				
			||||||
 | 
					echo "################################################################"
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# ~/.bash_logout
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,5 @@
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# ~/.bash_profile
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[[ -f ~/.bashrc ]] && . ~/.bashrc
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,86 @@
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# ~/.bashrc
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# If not running interactively, don't do anything
 | 
				
			||||||
 | 
					[[ $- != *i* ]] && return
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if ! shopt -oq posix; then
 | 
				
			||||||
 | 
					  if [ -f /usr/share/bash-completion/bash_completion ]; then
 | 
				
			||||||
 | 
					    . /usr/share/bash-completion/bash_completion
 | 
				
			||||||
 | 
					  elif [ -f /etc/bash_completion ]; then
 | 
				
			||||||
 | 
					    . /etc/bash_completion
 | 
				
			||||||
 | 
					  fi
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Advanced command-not-found hook
 | 
				
			||||||
 | 
					source /usr/share/doc/find-the-command/ftc.bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					xhost +local:root > /dev/null 2>&1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					complete -cf sudo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					shopt -s cdspell
 | 
				
			||||||
 | 
					shopt -s checkwinsize
 | 
				
			||||||
 | 
					shopt -s cmdhist
 | 
				
			||||||
 | 
					shopt -s dotglob
 | 
				
			||||||
 | 
					shopt -s expand_aliases
 | 
				
			||||||
 | 
					shopt -s extglob
 | 
				
			||||||
 | 
					shopt -s histappend
 | 
				
			||||||
 | 
					shopt -s hostcomplete
 | 
				
			||||||
 | 
					shopt -s nocaseglob
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export HISTSIZE=10000
 | 
				
			||||||
 | 
					export HISTFILESIZE=${HISTSIZE}
 | 
				
			||||||
 | 
					export HISTCONTROL=ignoreboth
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
 | 
				
			||||||
 | 
					alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
 | 
				
			||||||
 | 
					alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
 | 
				
			||||||
 | 
					alias grep='grep --color=tty -d skip'
 | 
				
			||||||
 | 
					alias cp="cp -i"                          # confirm before overwriting something
 | 
				
			||||||
 | 
					alias df='df -h'                          # human-readable sizes
 | 
				
			||||||
 | 
					alias vp='vim PKGBUILD'
 | 
				
			||||||
 | 
					alias vs='vim SPLITBUILD'
 | 
				
			||||||
 | 
					alias upd='mirror-check --fast && sudo pacman -Syu'
 | 
				
			||||||
 | 
					alias dvdburn='growisofs -Z /dev/sr0 -R -J'
 | 
				
			||||||
 | 
					alias :pf='pkgfile -vri'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# ex - archive extractor
 | 
				
			||||||
 | 
					# usage: ex <file>
 | 
				
			||||||
 | 
					ex ()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  if [ -f $1 ] ; then
 | 
				
			||||||
 | 
					    case $1 in
 | 
				
			||||||
 | 
					      *.tar.bz2)   tar xjf $1   ;;
 | 
				
			||||||
 | 
					      *.tar.gz)    tar xzf $1   ;;
 | 
				
			||||||
 | 
					      *.bz2)       bunzip2 $1   ;;
 | 
				
			||||||
 | 
					      *.rar)       unrar x $1     ;;
 | 
				
			||||||
 | 
					      *.gz)        gunzip $1    ;;
 | 
				
			||||||
 | 
					      *.tar)       tar xf $1    ;;
 | 
				
			||||||
 | 
					      *.tbz2)      tar xjf $1   ;;
 | 
				
			||||||
 | 
					      *.tgz)       tar xzf $1   ;;
 | 
				
			||||||
 | 
					      *.zip)       unzip $1     ;;
 | 
				
			||||||
 | 
					      *.Z)         uncompress $1;;
 | 
				
			||||||
 | 
					      *.7z)        7z x $1      ;;
 | 
				
			||||||
 | 
					      *)           echo "'$1' cannot be extracted via ex()" ;;
 | 
				
			||||||
 | 
					    esac
 | 
				
			||||||
 | 
					  else
 | 
				
			||||||
 | 
					    echo "'$1' is not a valid file"
 | 
				
			||||||
 | 
					  fi
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# default editor
 | 
				
			||||||
 | 
					export EDITOR=micro
 | 
				
			||||||
 | 
					export VISUAL=micro
 | 
				
			||||||
 | 
					alias vi=vim
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# prompt
 | 
				
			||||||
 | 
					PS1='[\u@\h \W]\$ '
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					powerline-daemon -q
 | 
				
			||||||
 | 
					POWERLINE_BASH_CONTINUATION=1
 | 
				
			||||||
 | 
					POWERLINE_BASH_SELECT=1
 | 
				
			||||||
 | 
					. /usr/share/powerline/bindings/bash/powerline.sh
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,9 @@
 | 
				
			||||||
 | 
					[Dolphin]
 | 
				
			||||||
 | 
					HeaderColumnWidths=291,77,86,143,77,85,72
 | 
				
			||||||
 | 
					Timestamp=2023,10,21,13,56,54.711
 | 
				
			||||||
 | 
					Version=4
 | 
				
			||||||
 | 
					ViewMode=1
 | 
				
			||||||
 | 
					VisibleRoles=Details_text,Details_type,Details_size,Details_modificationtime,Details_permissions,Details_owner,Details_group,CustomizedDetails
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Settings]
 | 
				
			||||||
 | 
					HiddenFilesShown=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,470 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Nourepide
 | 
				
			||||||
 | 
					comment=
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					embedded_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					active_tab_overlap=10
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=7
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=8
 | 
				
			||||||
 | 
					scroll_arrows=true
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					slider_width=4
 | 
				
			||||||
 | 
					slider_handle_width=18
 | 
				
			||||||
 | 
					slider_handle_length=18
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=5
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					reduce_window_opacity=60
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=true
 | 
				
			||||||
 | 
					layout_margin=6
 | 
				
			||||||
 | 
					layout_spacing=10
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					scrollbar_in_view=false
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=60
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					window.text.color=#ffffffc8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=0
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=true
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=true
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=4
 | 
				
			||||||
 | 
					text.margin.bottom=4
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#404040
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					text.normal.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.margin.top=4
 | 
				
			||||||
 | 
					text.margin.bottom=4
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#f6f6f6
 | 
				
			||||||
 | 
					text.press.color=#4AAFF7
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.element=tabcommon
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=tframe
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					interior.x.patternsize=20
 | 
				
			||||||
 | 
					interior.y.patternsize=15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tolba
 | 
				
			||||||
 | 
					frame.element=tolba
 | 
				
			||||||
 | 
					text.normal.color=#f1f1f1
 | 
				
			||||||
 | 
					text.focus.color=#f1f1f1
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					frame.expansion=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=404040
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					text.press.color=#f6f6f6
 | 
				
			||||||
 | 
					text.toggle.color=#f6f6f6
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=13
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=tree
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					size.minheight=22
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=none
 | 
				
			||||||
 | 
					interior.element=none
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#f1f1f1
 | 
				
			||||||
 | 
					text.focus.color=#f6f6f6
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=comboarrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					size.minheight=22
 | 
				
			||||||
 | 
					size.minwidth=22
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=common-normal
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.focus.color=#4AAFF7
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					interior.x.patternsize=20
 | 
				
			||||||
 | 
					interior.y.patternsize=15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,473 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Alexey Varfolomeev
 | 
				
			||||||
 | 
					comment=Arc Dark style
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=7
 | 
				
			||||||
 | 
					tooltip_shadow_depth=0
 | 
				
			||||||
 | 
					splitter_width=7
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					slider_width=4
 | 
				
			||||||
 | 
					slider_handle_width=18
 | 
				
			||||||
 | 
					slider_handle_length=18
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					slim_toolbars=false
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam,qmplay2
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					iconless_pushbutton=true
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=2
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scroll_min_extent=36
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					scrollbar_in_view=false
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					progressbar_thickness=8
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					reduce_window_opacity=10
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#5294E2
 | 
				
			||||||
 | 
					inactive.highlight.color=#5294E2
 | 
				
			||||||
 | 
					text.color=#d3dae3
 | 
				
			||||||
 | 
					window.text.color=#d3dae3
 | 
				
			||||||
 | 
					button.text.color=#d3dae3
 | 
				
			||||||
 | 
					disabled.text.color=#898d99
 | 
				
			||||||
 | 
					tooltip.text.color=#d3dae3
 | 
				
			||||||
 | 
					highlight.text.color=#d3dae3
 | 
				
			||||||
 | 
					link.color=#1d99f3
 | 
				
			||||||
 | 
					link.visited.color=#9b59b6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.iconspacing=3
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.focus.color=#d3dae3
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=5
 | 
				
			||||||
 | 
					text.margin.bottom=5
 | 
				
			||||||
 | 
					text.margin.left=5
 | 
				
			||||||
 | 
					text.margin.right=5
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock] 
 | 
				
			||||||
 | 
					interior.element=toolbar
 | 
				
			||||||
 | 
					frame.element=toolbar
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=LineEdit
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.normal.color=#898d99
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dialog]
 | 
				
			||||||
 | 
					inherits=TabBarFrame
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.focus.color=#5294e2
 | 
				
			||||||
 | 
					text.press.color=#d3dae3
 | 
				
			||||||
 | 
					text.toggle.color=#d3dae3
 | 
				
			||||||
 | 
					indicator.element=harrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.focus.color=#d3dae3
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.focus.color=#d3dae3
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.focus.color=#d3dae3
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=18
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=5
 | 
				
			||||||
 | 
					text.margin.right=5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=Toolbar
 | 
				
			||||||
 | 
					frame.element=toolbar
 | 
				
			||||||
 | 
					font.bold=true
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.top=1
 | 
				
			||||||
 | 
					text.margin.bottom=1
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#d3dae3
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.focus.color=#d3dae3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					blur_konsole=true
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=0
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,603 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice, based on KvAdapta by Tsu Jan
 | 
				
			||||||
 | 
					comment=An uncomplicated theme inspired by the Materia GTK theme
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=2
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=5
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=2
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=23
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					tickless_slider_handle_size=22
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=20
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=10
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=0
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=150
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#616161
 | 
				
			||||||
 | 
					inactive.highlight.color=#61616174
 | 
				
			||||||
 | 
					text.color=#dedede
 | 
				
			||||||
 | 
					window.text.color=#dedede
 | 
				
			||||||
 | 
					button.text.color=#dedede
 | 
				
			||||||
 | 
					disabled.text.color=#dedede74
 | 
				
			||||||
 | 
					tooltip.text.color=#dedede
 | 
				
			||||||
 | 
					highlight.text.color=#ffffff
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=4
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=flatbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=flatbutton
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.disabled.color=#dedede74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.disabled.color=#dedede74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					text.margin=3
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=8
 | 
				
			||||||
 | 
					frame.bottom=8
 | 
				
			||||||
 | 
					frame.left=8
 | 
				
			||||||
 | 
					frame.right=8
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#616161
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,603 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice, based on KvAdapta by Tsu Jan
 | 
				
			||||||
 | 
					comment=An uncomplicated theme inspired by the Materia GTK theme
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=2
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=16
 | 
				
			||||||
 | 
					spread_menuitems=false
 | 
				
			||||||
 | 
					tooltip_shadow_depth=7
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=4
 | 
				
			||||||
 | 
					slider_handle_width=24
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					tickless_slider_handle_size=24
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=20
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=10
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=0
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=150
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=8
 | 
				
			||||||
 | 
					tooltip_blur_radius=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#0078D4
 | 
				
			||||||
 | 
					inactive.highlight.color=#0078D474
 | 
				
			||||||
 | 
					text.color=#aaaaaa
 | 
				
			||||||
 | 
					window.text.color=#aaaaaa
 | 
				
			||||||
 | 
					button.text.color=#aaaaaa
 | 
				
			||||||
 | 
					disabled.text.color=#aaaaaa74
 | 
				
			||||||
 | 
					tooltip.text.color=#aaaaaa
 | 
				
			||||||
 | 
					highlight.text.color=#dedede
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=true
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=4
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=flatbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=flatbutton
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.disabled.color=#aaaaaa74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.disabled.color=#aaaaaa74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					text.margin=3
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=12
 | 
				
			||||||
 | 
					text.margin.right=12
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=8
 | 
				
			||||||
 | 
					frame.bottom=8
 | 
				
			||||||
 | 
					frame.left=8
 | 
				
			||||||
 | 
					frame.right=8
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#0078D4
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,603 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice, based on KvAdapta by Tsu Jan
 | 
				
			||||||
 | 
					comment=An uncomplicated theme inspired by the Materia GTK theme
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=2
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=5
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=2
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=23
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					tickless_slider_handle_size=22
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=20
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=10
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=0
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=150
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#0078D4
 | 
				
			||||||
 | 
					inactive.highlight.color=#0078D474
 | 
				
			||||||
 | 
					text.color=#dedede
 | 
				
			||||||
 | 
					window.text.color=#dedede
 | 
				
			||||||
 | 
					button.text.color=#dedede
 | 
				
			||||||
 | 
					disabled.text.color=#dedede74
 | 
				
			||||||
 | 
					tooltip.text.color=#dedede
 | 
				
			||||||
 | 
					highlight.text.color=#ffffff
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=4
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=flatbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=flatbutton
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.disabled.color=#dedede74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.disabled.color=#dedede74
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					text.margin=3
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=8
 | 
				
			||||||
 | 
					frame.bottom=8
 | 
				
			||||||
 | 
					frame.left=8
 | 
				
			||||||
 | 
					frame.right=8
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#dedede
 | 
				
			||||||
 | 
					text.toggle.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#0078D4
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,451 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Tsu Jan
 | 
				
			||||||
 | 
					comment=A dark flat theme inspired by Breeze
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					progressbar_thickness=3font
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=6
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					splitter_width=7
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					slider_width=6
 | 
				
			||||||
 | 
					slider_handle_width=16
 | 
				
			||||||
 | 
					slider_handle_length=16
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					layout_spacing=3
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,VirtualBoxVM,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					scrollbar_in_view=false
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#0077cc
 | 
				
			||||||
 | 
					inactive.highlight.color=#0077cc80
 | 
				
			||||||
 | 
					text.color=#aaaaaa
 | 
				
			||||||
 | 
					window.text.color=#aaaaaa
 | 
				
			||||||
 | 
					button.text.color=#aaaaaa
 | 
				
			||||||
 | 
					disabled.text.color=#A0A0A0
 | 
				
			||||||
 | 
					tooltip.text.color=#aaaaaa
 | 
				
			||||||
 | 
					highlight.text.color=#aaaaaa
 | 
				
			||||||
 | 
					link.color=#0077cc
 | 
				
			||||||
 | 
					link.visited.color=#FF6666
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=0
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					text.shadow.xshift=2
 | 
				
			||||||
 | 
					text.shadow.yshift=2
 | 
				
			||||||
 | 
					text.shadow.color=#000000
 | 
				
			||||||
 | 
					text.shadow.alpha=255
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					min_width=+2
 | 
				
			||||||
 | 
					min_height=2.0font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					indicator.size=13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=toolbar
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.margin.top=1
 | 
				
			||||||
 | 
					text.margin.bottom=1
 | 
				
			||||||
 | 
					text.margin.left=1
 | 
				
			||||||
 | 
					text.margin.right=1
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=splitter
 | 
				
			||||||
 | 
					frame.element=splitter
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					indicator.element=splitter-grip
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior.element=scrollbarslider
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarTransientSlider]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=ss
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=scrollbargroove
 | 
				
			||||||
 | 
					frame.element=scrollbargroove
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.margin.top=1
 | 
				
			||||||
 | 
					text.margin.bottom=1
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=black
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=group
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,557 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Tsu Jan
 | 
				
			||||||
 | 
					comment=A dark theme with a Gnome like look and feel
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=2
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=6
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					slider_width=4
 | 
				
			||||||
 | 
					slider_handle_width=22
 | 
				
			||||||
 | 
					slider_handle_length=18
 | 
				
			||||||
 | 
					tickless_slider_handle_size=20
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=4
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					inline_spin_separator=true
 | 
				
			||||||
 | 
					spin_button_width=32
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=22
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					square_combo_button=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					spread_header=true
 | 
				
			||||||
 | 
					layout_spacing=3
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,VirtualBoxVM,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#15539e
 | 
				
			||||||
 | 
					inactive.highlight.color=#15539e
 | 
				
			||||||
 | 
					text.color=#aaaaaa
 | 
				
			||||||
 | 
					inactive.text.color=#aaaaaac8
 | 
				
			||||||
 | 
					window.text.color=#aaaaaa
 | 
				
			||||||
 | 
					inactive.window.text.color=#aaaaaa78
 | 
				
			||||||
 | 
					button.text.color=#aaaaaa
 | 
				
			||||||
 | 
					disabled.text.color=#A0A0A0
 | 
				
			||||||
 | 
					tooltip.text.color=#aaaaaa
 | 
				
			||||||
 | 
					highlight.text.color=#aaaaaa
 | 
				
			||||||
 | 
					link.color=#2EB8E6
 | 
				
			||||||
 | 
					link.visited.color=#FF6666
 | 
				
			||||||
 | 
					progress.indicator.text.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=0
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=btn
 | 
				
			||||||
 | 
					frame.expandedElement=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa8c
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#aaaaaa8c
 | 
				
			||||||
 | 
					text.shadow=true
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.alpha=210
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=4
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					min_width=+0.2font
 | 
				
			||||||
 | 
					min_height=+0.2font
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=btn
 | 
				
			||||||
 | 
					frame.expandedElement=button
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame.element=tbtn
 | 
				
			||||||
 | 
					frame.expandedElement=tbutton
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=btn
 | 
				
			||||||
 | 
					frame.expandedElement=button
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.element=iarrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=le
 | 
				
			||||||
 | 
					frame.expandedElement=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaab4
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa8c
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.inactive.color=#aaaaaa8c
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=4
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa7d
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa6e
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaab4
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=4font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=none
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=3
 | 
				
			||||||
 | 
					text.margin.right=3
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa7d
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa6e
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaab4
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa8c
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa6e
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaac8
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#aaaaaaeb
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					min_height=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=13
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=15
 | 
				
			||||||
 | 
					text.margin.right=5
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					min_width=0
 | 
				
			||||||
 | 
					min_height=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#3a90eb
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					min_width=0
 | 
				
			||||||
 | 
					min_height=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=btn
 | 
				
			||||||
 | 
					frame.expandedElement=button
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=group
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.press.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#aaaaaa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.element=tabbarframe
 | 
				
			||||||
 | 
					interior.element=tabbarframe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,550 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Tsu Jan
 | 
				
			||||||
 | 
					comment=A dark theme with translucency similar to the style of macOS Mojave
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					embedded_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=7
 | 
				
			||||||
 | 
					menu_blur_radius=2
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					slider_width=6
 | 
				
			||||||
 | 
					slider_handle_width=16
 | 
				
			||||||
 | 
					slider_handle_length=16
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=18
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=6
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,VirtualBoxVM,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=true
 | 
				
			||||||
 | 
					remove_extra_frames=true
 | 
				
			||||||
 | 
					layout_spacing=3
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollbar_in_view=false
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#c3c3c6
 | 
				
			||||||
 | 
					inactive.highlight.color=#adadaf
 | 
				
			||||||
 | 
					tooltip.base.color=#313237
 | 
				
			||||||
 | 
					text.color=#fafafa
 | 
				
			||||||
 | 
					inactive.text.color=#e1e1e1
 | 
				
			||||||
 | 
					window.text.color=#fafafa
 | 
				
			||||||
 | 
					inactive.window.text.color=#e1e1e1
 | 
				
			||||||
 | 
					button.text.color=#f5f5f5
 | 
				
			||||||
 | 
					disabled.text.color=#A0A0A0
 | 
				
			||||||
 | 
					tooltip.text.color=#fafafa
 | 
				
			||||||
 | 
					highlight.text.color=black
 | 
				
			||||||
 | 
					inactive.highlight.text.color=#141414
 | 
				
			||||||
 | 
					link.color=#2EB8E6
 | 
				
			||||||
 | 
					link.visited.color=#FF6666
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=22
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=true
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					text.normal.color=#fdfdfd
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#fdfdfd
 | 
				
			||||||
 | 
					text.toggle.color=#fdfdfd
 | 
				
			||||||
 | 
					text.normal.inactive.color=#ebebeb
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ebebeb
 | 
				
			||||||
 | 
					text.shadow=true
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					min_width=+4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					text.press.color=black
 | 
				
			||||||
 | 
					text.toggle.color=black
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#191919
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=tlineedit
 | 
				
			||||||
 | 
					interior.element=tlineedit
 | 
				
			||||||
 | 
					indicator.element=carrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					indicator.element=dock
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#9bccff
 | 
				
			||||||
 | 
					text.press.color=#fdfdfd
 | 
				
			||||||
 | 
					text.toggle.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#9bccff
 | 
				
			||||||
 | 
					text.press.color=#fdfdfd
 | 
				
			||||||
 | 
					text.toggle.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=le
 | 
				
			||||||
 | 
					interior.element=le
 | 
				
			||||||
 | 
					frame.expandedElement=lineedit
 | 
				
			||||||
 | 
					interior.expandedElement=lineedit
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					indicator.element=larrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.press.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#9bccff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.press.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.boldness=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=14
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.toggle.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.boldness=2
 | 
				
			||||||
 | 
					min_width=+0.2font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tframe
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=tframe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.press.color=#fafafa
 | 
				
			||||||
 | 
					text.toggle.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=true
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.press.color=black
 | 
				
			||||||
 | 
					text.toggle.color=black
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#191919
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=13
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#969696
 | 
				
			||||||
 | 
					text.focus.color=#fafafa
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=carrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=group
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.normal.color=#fafafa
 | 
				
			||||||
 | 
					text.press.color=#fafafa
 | 
				
			||||||
 | 
					text.focus.color=#9bccff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#e1e1e1
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.boldness=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dialog]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=dialog
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,577 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Alexey Varfolomeev, based on KvAdaptaDark by Tsu Jan
 | 
				
			||||||
 | 
					comment=The dark varianl of Materia
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=true
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					menu_shadow_depth=5
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					progressbar_thickness=2
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					slider_handle_width=23
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					splitter_width=4
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					tickless_slider_handle_size=22
 | 
				
			||||||
 | 
					toolbar_icon_size=22
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					toolbar_item_spacing=0
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					tooltip_shadow_depth=2
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					disabled.text.color=#818181
 | 
				
			||||||
 | 
					highlight.color=#8ab4f83c
 | 
				
			||||||
 | 
					highlight.text.color=#ffffff
 | 
				
			||||||
 | 
					inactive.highlight.color=#8ab4f83c
 | 
				
			||||||
 | 
					button.text.color=#dfdfdf
 | 
				
			||||||
 | 
					light.color=#484848
 | 
				
			||||||
 | 
					link.color=#8ab4f8
 | 
				
			||||||
 | 
					link.visited.color=#ce93d8
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dfdfdf
 | 
				
			||||||
 | 
					text.color=#dfdfdf
 | 
				
			||||||
 | 
					tooltip.text.color=#ffffff
 | 
				
			||||||
 | 
					window.text.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					disabled_icon_opacity=70
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#8ab4f8
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					frame.expansion=24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=14
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=7
 | 
				
			||||||
 | 
					text.margin.bottom=7
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tlineedit
 | 
				
			||||||
 | 
					interior.element=tlineedit
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=7
 | 
				
			||||||
 | 
					text.margin.bottom=7
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=22
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#8ab4f8
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=7
 | 
				
			||||||
 | 
					text.margin.bottom=7
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=46
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dialog]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=dialog
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,582 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice
 | 
				
			||||||
 | 
					comment=A dark theme with translucency similar to the style of macOS Mojave
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					embedded_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=27
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=true
 | 
				
			||||||
 | 
					slider_width=6
 | 
				
			||||||
 | 
					slider_handle_width=16
 | 
				
			||||||
 | 
					slider_handle_length=16
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=3
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=2
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollbar_in_view=false
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#4bc8ff
 | 
				
			||||||
 | 
					inactive.highlight.color=#4bc8ff80
 | 
				
			||||||
 | 
					text.color=#dfdfdf
 | 
				
			||||||
 | 
					window.text.color=#dfdfdf
 | 
				
			||||||
 | 
					button.text.color=#dfdfdf
 | 
				
			||||||
 | 
					disabled.text.color=#696969
 | 
				
			||||||
 | 
					tooltip.text.color=#eefcff
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=35
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.left=7
 | 
				
			||||||
 | 
					frame.right=7
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					frame.expansion=34
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame.top=16
 | 
				
			||||||
 | 
					frame.bottom=16
 | 
				
			||||||
 | 
					frame.left=16
 | 
				
			||||||
 | 
					frame.right=16
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=34
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=22
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=10
 | 
				
			||||||
 | 
					frame.right=10
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,508 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Eliver Lara
 | 
				
			||||||
 | 
					comment=A dark theme created using the awesome Nord color pallete. 
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=1
 | 
				
			||||||
 | 
					toolbar_interior_spacing=3
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=5
 | 
				
			||||||
 | 
					menu_separator_height=6
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					splitter_width=4
 | 
				
			||||||
 | 
					scroll_width=6
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=18
 | 
				
			||||||
 | 
					slider_handle_length=18
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=14
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=2
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=32
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=22
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					opaque=QMPlay2,kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=18
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#4c566a
 | 
				
			||||||
 | 
					inactive.highlight.color=#4c566a
 | 
				
			||||||
 | 
					text.color=#d8dee9
 | 
				
			||||||
 | 
					window.text.color=#d8dee9
 | 
				
			||||||
 | 
					button.text.color=#d8dee9
 | 
				
			||||||
 | 
					disabled.text.color=#d8dee978
 | 
				
			||||||
 | 
					tooltip.text.color=#d8dee9
 | 
				
			||||||
 | 
					highlight.text.color=#d8dee9
 | 
				
			||||||
 | 
					link.color=#646464
 | 
				
			||||||
 | 
					link.visited.color=#7f8c8d
 | 
				
			||||||
 | 
					progress.indicator.text.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=70
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=22
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#d8dee9
 | 
				
			||||||
 | 
					text.press.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					text.margin.left=0
 | 
				
			||||||
 | 
					text.margin.right=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					text.toggle.color=#d2d2d4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.expansion=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=scrollbargroove
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.expansion=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.margin.top=1
 | 
				
			||||||
 | 
					text.margin.bottom=1
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					indicator.element=carrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,508 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Eliver Lara
 | 
				
			||||||
 | 
					comment=A dark theme created using the awesome Nord color pallete. 
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=1
 | 
				
			||||||
 | 
					toolbar_interior_spacing=3
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=5
 | 
				
			||||||
 | 
					menu_separator_height=6
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					splitter_width=4
 | 
				
			||||||
 | 
					scroll_width=6
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=18
 | 
				
			||||||
 | 
					slider_handle_length=18
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=14
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=2
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=32
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=22
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					opaque=QMPlay2,kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=18
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#81a1c1
 | 
				
			||||||
 | 
					inactive.highlight.color=#81a1c1
 | 
				
			||||||
 | 
					text.color=#d8dee9
 | 
				
			||||||
 | 
					window.text.color=#d8dee9
 | 
				
			||||||
 | 
					button.text.color=#d8dee9
 | 
				
			||||||
 | 
					disabled.text.color=#d8dee978
 | 
				
			||||||
 | 
					tooltip.text.color=#d8dee9
 | 
				
			||||||
 | 
					highlight.text.color=#d8dee9
 | 
				
			||||||
 | 
					link.color=#646464
 | 
				
			||||||
 | 
					link.visited.color=#7f8c8d
 | 
				
			||||||
 | 
					progress.indicator.text.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=70
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=22
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#d8dee9
 | 
				
			||||||
 | 
					text.press.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					text.margin.left=0
 | 
				
			||||||
 | 
					text.margin.right=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					text.toggle.color=#d2d2d4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.press.color=#d8dee9
 | 
				
			||||||
 | 
					text.toggle.color=#d8dee9
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.expansion=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=scrollbargroove
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					frame.expansion=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.margin.top=1
 | 
				
			||||||
 | 
					text.margin.bottom=1
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					text.press.color=#d2d2d4
 | 
				
			||||||
 | 
					indicator.element=carrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#d8dee9
 | 
				
			||||||
 | 
					text.focus.color=#c8c8ca
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,574 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice, based on KvAdapta by Tsu Jan
 | 
				
			||||||
 | 
					comment=An uncomplicated theme inspired by the Materia GTK theme
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=0
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=6
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=2
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=23
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					tickless_slider_handle_size=22
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=2
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=0
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=150
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=10
 | 
				
			||||||
 | 
					tooltip_blur_radius=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#4285f4
 | 
				
			||||||
 | 
					inactive.highlight.color=#3a474e
 | 
				
			||||||
 | 
					text.color=#dfdfdf
 | 
				
			||||||
 | 
					window.text.color=#dfdfdf
 | 
				
			||||||
 | 
					button.text.color=#dfdfdf
 | 
				
			||||||
 | 
					disabled.text.color=#696969
 | 
				
			||||||
 | 
					tooltip.text.color=#efefef
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=4
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame.top=16
 | 
				
			||||||
 | 
					frame.bottom=16
 | 
				
			||||||
 | 
					frame.left=16
 | 
				
			||||||
 | 
					frame.right=16
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=14
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=22
 | 
				
			||||||
 | 
					frame.top=9
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.left=10
 | 
				
			||||||
 | 
					frame.right=10
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,574 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice, based on KvAdapta by Tsu Jan
 | 
				
			||||||
 | 
					comment=An uncomplicated theme inspired by the Materia GTK theme
 | 
				
			||||||
 | 
					x11drag=menubar_and_primary_toolbar
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=true
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					toolbar_item_spacing=0
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=6
 | 
				
			||||||
 | 
					spread_menuitems=true
 | 
				
			||||||
 | 
					tooltip_shadow_depth=2
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					scroll_width=9
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=60
 | 
				
			||||||
 | 
					slider_width=2
 | 
				
			||||||
 | 
					slider_handle_width=23
 | 
				
			||||||
 | 
					slider_handle_length=22
 | 
				
			||||||
 | 
					tickless_slider_handle_size=22
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=2
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					spin_button_width=24
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					combo_focus_rect=false
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=false
 | 
				
			||||||
 | 
					layout_spacing=6
 | 
				
			||||||
 | 
					layout_margin=9
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=0
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
 | 
				
			||||||
 | 
					reduce_window_opacity=0
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					submenu_delay=150
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=10
 | 
				
			||||||
 | 
					tooltip_blur_radius=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#4285f4
 | 
				
			||||||
 | 
					inactive.highlight.color=#3a474e
 | 
				
			||||||
 | 
					text.color=#dfdfdf
 | 
				
			||||||
 | 
					window.text.color=#dfdfdf
 | 
				
			||||||
 | 
					button.text.color=#dfdfdf
 | 
				
			||||||
 | 
					disabled.text.color=#696969
 | 
				
			||||||
 | 
					tooltip.text.color=#efefef
 | 
				
			||||||
 | 
					highlight.text.color=white
 | 
				
			||||||
 | 
					link.color=#0057AE
 | 
				
			||||||
 | 
					link.visited.color=#E040FB
 | 
				
			||||||
 | 
					progress.indicator.text.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					transparent_arrow_button=true
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=true
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=4
 | 
				
			||||||
 | 
					text.iconspacing=4
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame.top=16
 | 
				
			||||||
 | 
					frame.bottom=16
 | 
				
			||||||
 | 
					frame.left=16
 | 
				
			||||||
 | 
					frame.right=16
 | 
				
			||||||
 | 
					indicator.element=tarrow
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					frame.patternsize=14
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=8
 | 
				
			||||||
 | 
					text.margin.right=8
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					indicator.size=22
 | 
				
			||||||
 | 
					frame.top=9
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=tabframe
 | 
				
			||||||
 | 
					interior.element=tabframe
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=5
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					focusFrame=true
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=white
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=48
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.left=10
 | 
				
			||||||
 | 
					frame.right=10
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.margin.top=3
 | 
				
			||||||
 | 
					text.margin.bottom=3
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=menubar
 | 
				
			||||||
 | 
					interior.element=menubar
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					min_width=+0.3font
 | 
				
			||||||
 | 
					min_height=+0.3font
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#787878
 | 
				
			||||||
 | 
					text.focus.color=#dfdfdf
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=combo
 | 
				
			||||||
 | 
					interior.element=combo
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=2
 | 
				
			||||||
 | 
					text.margin.right=2
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.press.color=#dfdfdf
 | 
				
			||||||
 | 
					text.toggle.color=white
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=white
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tabBarFrame
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,592 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice
 | 
				
			||||||
 | 
					comment=A dark theme with translucency similar to the style of macOS Mojave
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					embedded_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=27
 | 
				
			||||||
 | 
					spread_menuitems=false
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					slider_width=6
 | 
				
			||||||
 | 
					slider_handle_width=16
 | 
				
			||||||
 | 
					slider_handle_length=16
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=6
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,VirtualBoxVM,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=true
 | 
				
			||||||
 | 
					layout_spacing=2
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_window_opacity=25
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=0
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					splitter_width=1
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=0
 | 
				
			||||||
 | 
					tooltip_blur_radius=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#a0b4f8
 | 
				
			||||||
 | 
					inactive.highlight.color=#a0b4f8
 | 
				
			||||||
 | 
					text.color=#dedede
 | 
				
			||||||
 | 
					inactive.text.color=#bfbfbf
 | 
				
			||||||
 | 
					window.text.color=#dedede
 | 
				
			||||||
 | 
					inactive.window.text.color=#bfbfbf
 | 
				
			||||||
 | 
					button.text.color=#dedede
 | 
				
			||||||
 | 
					disabled.text.color=#bfbfbf
 | 
				
			||||||
 | 
					tooltip.base.color=#333333
 | 
				
			||||||
 | 
					tooltip.text.color=#dedede
 | 
				
			||||||
 | 
					highlight.text.color=#ffffff
 | 
				
			||||||
 | 
					inactive.highlight.text.color=#f5f5f5
 | 
				
			||||||
 | 
					link.color=#3484e2
 | 
				
			||||||
 | 
					link.visited.color=#452886
 | 
				
			||||||
 | 
					progress.indicator.text.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[BaseWidget]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=0
 | 
				
			||||||
 | 
					frame.left=0
 | 
				
			||||||
 | 
					frame.right=0
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					text.margin=true
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=0
 | 
				
			||||||
 | 
					text.margin.right=0
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=8
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					min_width=26
 | 
				
			||||||
 | 
					min_height=24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=BaseWidget
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.left=10
 | 
				
			||||||
 | 
					frame.right=10
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#aaaaaa
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=tlineedit
 | 
				
			||||||
 | 
					interior.element=tlineedit
 | 
				
			||||||
 | 
					frame.expansion=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					frame.element=spinbox
 | 
				
			||||||
 | 
					interior.element=spinbox
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.expanded.top=0
 | 
				
			||||||
 | 
					frame.expanded.bottom=0
 | 
				
			||||||
 | 
					frame.expanded.left=0
 | 
				
			||||||
 | 
					frame.expanded.right=0
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tframe
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=tframe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=toolbar
 | 
				
			||||||
 | 
					frame.element=toolbar
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=12
 | 
				
			||||||
 | 
					text.margin.right=12
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					interior.element=splitter
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=none
 | 
				
			||||||
 | 
					interior.element=none
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=comboarrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=group
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.boldness=2
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					interior.x.patternsize=20
 | 
				
			||||||
 | 
					interior.y.patternsize=15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.margin.top=10
 | 
				
			||||||
 | 
					text.margin.bottom=10
 | 
				
			||||||
 | 
					text.margin.left=10
 | 
				
			||||||
 | 
					text.margin.right=10
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dialog]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,574 @@
 | 
				
			||||||
 | 
					[%General]
 | 
				
			||||||
 | 
					author=Vince Liuice
 | 
				
			||||||
 | 
					comment=A dark theme with translucency similar to the style of macOS Mojave
 | 
				
			||||||
 | 
					x11drag=all
 | 
				
			||||||
 | 
					alt_mnemonic=true
 | 
				
			||||||
 | 
					left_tabs=true
 | 
				
			||||||
 | 
					attach_active_tab=false
 | 
				
			||||||
 | 
					embedded_tabs=true
 | 
				
			||||||
 | 
					mirror_doc_tabs=false
 | 
				
			||||||
 | 
					group_toolbar_buttons=false
 | 
				
			||||||
 | 
					spread_progressbar=true
 | 
				
			||||||
 | 
					composite=true
 | 
				
			||||||
 | 
					menu_shadow_depth=27
 | 
				
			||||||
 | 
					spread_menuitems=false
 | 
				
			||||||
 | 
					tooltip_shadow_depth=6
 | 
				
			||||||
 | 
					scroll_width=12
 | 
				
			||||||
 | 
					scroll_arrows=false
 | 
				
			||||||
 | 
					scroll_min_extent=50
 | 
				
			||||||
 | 
					transient_scrollbar=false
 | 
				
			||||||
 | 
					slider_width=6
 | 
				
			||||||
 | 
					slider_handle_width=16
 | 
				
			||||||
 | 
					slider_handle_length=16
 | 
				
			||||||
 | 
					center_toolbar_handle=true
 | 
				
			||||||
 | 
					check_size=16
 | 
				
			||||||
 | 
					textless_progressbar=false
 | 
				
			||||||
 | 
					progressbar_thickness=6
 | 
				
			||||||
 | 
					menubar_mouse_tracking=true
 | 
				
			||||||
 | 
					toolbutton_style=0
 | 
				
			||||||
 | 
					double_click=false
 | 
				
			||||||
 | 
					translucent_windows=true
 | 
				
			||||||
 | 
					blurring=true
 | 
				
			||||||
 | 
					popup_blurring=true
 | 
				
			||||||
 | 
					opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam,lyx
 | 
				
			||||||
 | 
					vertical_spin_indicators=true
 | 
				
			||||||
 | 
					fill_rubberband=false
 | 
				
			||||||
 | 
					merge_menubar_with_toolbar=true
 | 
				
			||||||
 | 
					small_icon_size=16
 | 
				
			||||||
 | 
					large_icon_size=32
 | 
				
			||||||
 | 
					button_icon_size=16
 | 
				
			||||||
 | 
					toolbar_interior_spacing=2
 | 
				
			||||||
 | 
					toolbar_icon_size=16
 | 
				
			||||||
 | 
					combo_as_lineedit=true
 | 
				
			||||||
 | 
					combo_menu=true
 | 
				
			||||||
 | 
					combo_focus_rect=true
 | 
				
			||||||
 | 
					groupbox_top_label=true
 | 
				
			||||||
 | 
					inline_spin_indicators=true
 | 
				
			||||||
 | 
					joined_inactive_tabs=true
 | 
				
			||||||
 | 
					layout_spacing=2
 | 
				
			||||||
 | 
					submenu_overlap=0
 | 
				
			||||||
 | 
					tooltip_delay=-1
 | 
				
			||||||
 | 
					button_contents_shift=false
 | 
				
			||||||
 | 
					animate_states=true
 | 
				
			||||||
 | 
					dark_titlebar=true
 | 
				
			||||||
 | 
					hide_combo_checkboxes=true
 | 
				
			||||||
 | 
					layout_margin=4
 | 
				
			||||||
 | 
					no_window_pattern=false
 | 
				
			||||||
 | 
					reduce_window_opacity=25
 | 
				
			||||||
 | 
					respect_DE=true
 | 
				
			||||||
 | 
					scrollbar_in_view=true
 | 
				
			||||||
 | 
					spin_button_width=16
 | 
				
			||||||
 | 
					submenu_delay=250
 | 
				
			||||||
 | 
					transient_groove=true
 | 
				
			||||||
 | 
					tree_branch_line=true
 | 
				
			||||||
 | 
					no_inactiveness=false
 | 
				
			||||||
 | 
					reduce_menu_opacity=25
 | 
				
			||||||
 | 
					click_behavior=0
 | 
				
			||||||
 | 
					contrast=1.00
 | 
				
			||||||
 | 
					dialog_button_layout=0
 | 
				
			||||||
 | 
					intensity=1.00
 | 
				
			||||||
 | 
					saturation=1.00
 | 
				
			||||||
 | 
					scrollable_menu=true
 | 
				
			||||||
 | 
					shadowless_popup=false
 | 
				
			||||||
 | 
					drag_from_buttons=false
 | 
				
			||||||
 | 
					menu_blur_radius=9
 | 
				
			||||||
 | 
					tooltip_blur_radius=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GeneralColors]
 | 
				
			||||||
 | 
					window.color=#353535
 | 
				
			||||||
 | 
					base.color=#373737
 | 
				
			||||||
 | 
					alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inactive.window.color=#343434
 | 
				
			||||||
 | 
					inactive.base.color=#363636
 | 
				
			||||||
 | 
					inactive.alt.base.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					light.color=#656565
 | 
				
			||||||
 | 
					mid.color=#454545
 | 
				
			||||||
 | 
					mid.light.color=#5555551e
 | 
				
			||||||
 | 
					dark.color=#252525
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					button.color=#404040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					highlight.color=#a0b4f8
 | 
				
			||||||
 | 
					inactive.highlight.color=#a0b4f8
 | 
				
			||||||
 | 
					text.color=#dedede
 | 
				
			||||||
 | 
					inactive.text.color=#bfbfbf
 | 
				
			||||||
 | 
					window.text.color=#dedede
 | 
				
			||||||
 | 
					inactive.window.text.color=#bfbfbf
 | 
				
			||||||
 | 
					button.text.color=#dedede
 | 
				
			||||||
 | 
					disabled.text.color=#bfbfbf
 | 
				
			||||||
 | 
					tooltip.base.color=#333333
 | 
				
			||||||
 | 
					tooltip.text.color=#dedede
 | 
				
			||||||
 | 
					highlight.text.color=#ffffff
 | 
				
			||||||
 | 
					inactive.highlight.text.color=#f5f5f5
 | 
				
			||||||
 | 
					link.color=#3484e2
 | 
				
			||||||
 | 
					link.visited.color=#452886
 | 
				
			||||||
 | 
					progress.indicator.text.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Hacks]
 | 
				
			||||||
 | 
					transparent_ktitle_label=true
 | 
				
			||||||
 | 
					transparent_dolphin_view=false
 | 
				
			||||||
 | 
					transparent_pcmanfm_sidepane=false
 | 
				
			||||||
 | 
					blur_translucent=true
 | 
				
			||||||
 | 
					transparent_menutitle=true
 | 
				
			||||||
 | 
					respect_darkness=true
 | 
				
			||||||
 | 
					kcapacitybar_as_progressbar=true
 | 
				
			||||||
 | 
					force_size_grip=true
 | 
				
			||||||
 | 
					iconless_pushbutton=false
 | 
				
			||||||
 | 
					iconless_menu=false
 | 
				
			||||||
 | 
					disabled_icon_opacity=100
 | 
				
			||||||
 | 
					lxqtmainmenu_iconsize=16
 | 
				
			||||||
 | 
					middle_click_scroll=false
 | 
				
			||||||
 | 
					no_selection_tint=false
 | 
				
			||||||
 | 
					normal_default_pushbutton=true
 | 
				
			||||||
 | 
					single_top_toolbar=false
 | 
				
			||||||
 | 
					tint_on_mouseover=0
 | 
				
			||||||
 | 
					transparent_pcmanfm_view=false
 | 
				
			||||||
 | 
					opaque_colors=false
 | 
				
			||||||
 | 
					scroll_jump_workaround=false
 | 
				
			||||||
 | 
					centered_forms=true
 | 
				
			||||||
 | 
					kinetic_scrolling=false
 | 
				
			||||||
 | 
					noninteger_translucency=false
 | 
				
			||||||
 | 
					blur_only_active_window=false
 | 
				
			||||||
 | 
					style_vertical_toolbars=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonCommand]
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=button
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=button
 | 
				
			||||||
 | 
					indicator.size=8
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.iconspacing=8
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					min_width=26
 | 
				
			||||||
 | 
					min_height=24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Focus]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=focus
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					frame.patternsize=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PanelButtonTool]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.size=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tbutton
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tbutton
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.left=10
 | 
				
			||||||
 | 
					frame.right=10
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#aaaaaa
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#aaaaaa
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolbarLineEdit]
 | 
				
			||||||
 | 
					frame.element=tlineedit
 | 
				
			||||||
 | 
					interior.element=tlineedit
 | 
				
			||||||
 | 
					frame.expansion=20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dock]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=dock
 | 
				
			||||||
 | 
					frame.element=dock
 | 
				
			||||||
 | 
					frame.top=1
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DockTitle]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorSpinBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=spin
 | 
				
			||||||
 | 
					frame.element=spinbox
 | 
				
			||||||
 | 
					interior.element=spinbox
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					indicator.size=11
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[RadioButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=radio
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[CheckBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=checkbox
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GenericFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.element=common
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[LineEdit]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=lineedit
 | 
				
			||||||
 | 
					interior.element=lineedit
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DropDownButton]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow-down
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[IndicatorArrow]
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolboxTab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tab]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior.element=tab
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					frame.element=tab
 | 
				
			||||||
 | 
					indicator.element=tab
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.expanded.top=0
 | 
				
			||||||
 | 
					frame.expanded.bottom=0
 | 
				
			||||||
 | 
					frame.expanded.left=0
 | 
				
			||||||
 | 
					frame.expanded.right=0
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					frame.expansion=12
 | 
				
			||||||
 | 
					indicator.size=16
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabFrame]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=tframe
 | 
				
			||||||
 | 
					frame.top=4
 | 
				
			||||||
 | 
					frame.bottom=4
 | 
				
			||||||
 | 
					frame.left=4
 | 
				
			||||||
 | 
					frame.right=4
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=tframe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TreeExpander]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					indicator.element=tree
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[HeaderSection]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=header
 | 
				
			||||||
 | 
					frame.element=header
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.left=1
 | 
				
			||||||
 | 
					frame.right=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SizeGrip]
 | 
				
			||||||
 | 
					indicator.element=resize-grip
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Toolbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=toolbar
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior.element=toolbar
 | 
				
			||||||
 | 
					frame.element=toolbar
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=0
 | 
				
			||||||
 | 
					frame.bottom=1
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Slider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=slider
 | 
				
			||||||
 | 
					interior.element=slider
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[SliderCursor]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=slidercursor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Progressbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=progress
 | 
				
			||||||
 | 
					interior.element=progress
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					text.bold=false
 | 
				
			||||||
 | 
					frame.expansion=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ProgressbarContents]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=progress-pattern
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					interior.element=progress-pattern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ItemView]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					frame.element=itemview
 | 
				
			||||||
 | 
					interior.element=itemview
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					text.margin.top=2
 | 
				
			||||||
 | 
					text.margin.bottom=2
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.toggle.color=#ffffff
 | 
				
			||||||
 | 
					frame.expansion=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Splitter]
 | 
				
			||||||
 | 
					indicator.size=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Scrollbar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=arrow
 | 
				
			||||||
 | 
					indicator.size=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarSlider]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=scrollbarslider
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					indicator.element=grip
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScrollbarGroove]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.element=none
 | 
				
			||||||
 | 
					interior.element=none
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuBarItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=menubaritem
 | 
				
			||||||
 | 
					frame.element=menubaritem
 | 
				
			||||||
 | 
					frame.top=2
 | 
				
			||||||
 | 
					frame.bottom=2
 | 
				
			||||||
 | 
					frame.left=2
 | 
				
			||||||
 | 
					frame.right=2
 | 
				
			||||||
 | 
					text.margin.left=4
 | 
				
			||||||
 | 
					text.margin.right=4
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TitleBar]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior.element=titlebar
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					indicator.element=mdi
 | 
				
			||||||
 | 
					text.normal.color=#aaaaaa
 | 
				
			||||||
 | 
					text.focus.color=#dedede
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.italic=true
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Menu]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame.top=6
 | 
				
			||||||
 | 
					frame.bottom=6
 | 
				
			||||||
 | 
					frame.left=6
 | 
				
			||||||
 | 
					frame.right=6
 | 
				
			||||||
 | 
					frame.element=menu
 | 
				
			||||||
 | 
					interior.element=menu
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MenuItem]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=menuitem
 | 
				
			||||||
 | 
					interior.element=menuitem
 | 
				
			||||||
 | 
					indicator.element=menuitem
 | 
				
			||||||
 | 
					text.normal.color=#dfdfdf
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.margin.top=0
 | 
				
			||||||
 | 
					text.margin.bottom=0
 | 
				
			||||||
 | 
					text.margin.left=6
 | 
				
			||||||
 | 
					text.margin.right=6
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ComboBox]
 | 
				
			||||||
 | 
					inherits=PanelButtonCommand
 | 
				
			||||||
 | 
					indicator.element=comboarrow
 | 
				
			||||||
 | 
					indicator.size=12
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[GroupBox]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=group
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=0
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=common
 | 
				
			||||||
 | 
					frame.top=5
 | 
				
			||||||
 | 
					frame.bottom=5
 | 
				
			||||||
 | 
					frame.left=5
 | 
				
			||||||
 | 
					frame.right=5
 | 
				
			||||||
 | 
					text.normal.color=#dedede
 | 
				
			||||||
 | 
					text.press.color=#ffffff
 | 
				
			||||||
 | 
					text.focus.color=#ffffff
 | 
				
			||||||
 | 
					text.normal.inactive.color=#dedede74
 | 
				
			||||||
 | 
					text.toggle.inactive.color=#ffffff74
 | 
				
			||||||
 | 
					text.bold=true
 | 
				
			||||||
 | 
					text.boldness=2
 | 
				
			||||||
 | 
					text.shadow=false
 | 
				
			||||||
 | 
					text.shadow.color=black
 | 
				
			||||||
 | 
					text.shadow.xshift=1
 | 
				
			||||||
 | 
					text.shadow.yshift=1
 | 
				
			||||||
 | 
					text.shadow.depth=1
 | 
				
			||||||
 | 
					text.shadow.alpha=80
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					interior.x.patternsize=20
 | 
				
			||||||
 | 
					interior.y.patternsize=15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBarFrame]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ToolTip]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame.top=3
 | 
				
			||||||
 | 
					frame.bottom=3
 | 
				
			||||||
 | 
					frame.left=3
 | 
				
			||||||
 | 
					frame.right=3
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					text.shadow=0
 | 
				
			||||||
 | 
					text.margin=1
 | 
				
			||||||
 | 
					text.margin.top=10
 | 
				
			||||||
 | 
					text.margin.bottom=10
 | 
				
			||||||
 | 
					text.margin.left=10
 | 
				
			||||||
 | 
					text.margin.right=10
 | 
				
			||||||
 | 
					interior.element=tooltip
 | 
				
			||||||
 | 
					frame.element=tooltip
 | 
				
			||||||
 | 
					frame.expansion=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[StatusBar]
 | 
				
			||||||
 | 
					inherits=GenericFrame
 | 
				
			||||||
 | 
					frame=false
 | 
				
			||||||
 | 
					interior=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Window]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
 | 
					interior.element=window
 | 
				
			||||||
 | 
					frame=true
 | 
				
			||||||
 | 
					frame.element=window
 | 
				
			||||||
 | 
					frame.bottom=10
 | 
				
			||||||
 | 
					frame.top=10
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dialog]
 | 
				
			||||||
 | 
					interior=true
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					theme=Fluent-roundDark#
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,17 @@
 | 
				
			||||||
 | 
					[qt]
 | 
				
			||||||
 | 
					GUIEffects=none
 | 
				
			||||||
 | 
					KDE\contrast=4
 | 
				
			||||||
 | 
					KWinPalette\activeBackground=#3d3d3e
 | 
				
			||||||
 | 
					KWinPalette\activeBlend=#3e3e3e
 | 
				
			||||||
 | 
					KWinPalette\activeForeground=#969696
 | 
				
			||||||
 | 
					KWinPalette\activeTitleBtnBg=#414141
 | 
				
			||||||
 | 
					KWinPalette\frame=#414141
 | 
				
			||||||
 | 
					KWinPalette\inactiveBackground=#3d3d3e
 | 
				
			||||||
 | 
					KWinPalette\inactiveBlend=#3e3e3e
 | 
				
			||||||
 | 
					KWinPalette\inactiveForeground=#9b9b9b
 | 
				
			||||||
 | 
					KWinPalette\inactiveFrame=#424242
 | 
				
			||||||
 | 
					KWinPalette\inactiveTitleBtnBg=#424242
 | 
				
			||||||
 | 
					Palette\active=#aaaaaa, #505050, #565656, #4c4c4c, #262626, #393939, #aaaaaa, #ffffff, #50b4ce, #464646, #414141, #1b1b1b, #4a809b, #ffffff, #4d9ac0, #ce80ff, #4b4b4b, #000000, #1d6c8b, #c8c8c8, #d8dee9
 | 
				
			||||||
 | 
					Palette\disabled=#616161, #4c4c4c, #535353, #494949, #242424, #363636, #646464, #ffffff, #4c6e76, #434343, #3e3e3e, #1a1a1a, #3e3e3e, #616161, #455f6b, #705680, #474747, #000000, #1d6c8b, #c8c8c8, #d8dee9
 | 
				
			||||||
 | 
					Palette\inactive=#a8a8a8, #515151, #575757, #4d4d4d, #272727, #3a3a3a, #a8a8a8, #ffffff, #5fb1c6, #474747, #424242, #1c1c1c, #37515e, #a0aaae, #5998b7, #b691d0, #4c4c4c, #000000, #1d6c8b, #c8c8c8, #d8dee9
 | 
				
			||||||
 | 
					font="Noto Sans,10,-1,0,50,0,0,0,0,0"
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=fonts_akregator.upd:Plasma_Fonts_Akregator
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,158 @@
 | 
				
			||||||
 | 
					#!/usr/bin/env xdg-open
 | 
				
			||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
 | 
					Name[af]=Sertifikaat- en sleutelberging
 | 
				
			||||||
 | 
					Name[ar]=مخزن الشهادات والمفاتيح
 | 
				
			||||||
 | 
					Name[as]=প্ৰমাণপত্ৰ আৰু কি সংৰক্ষণ
 | 
				
			||||||
 | 
					Name[ast]=Certificaos y almacenamientu de claves
 | 
				
			||||||
 | 
					Name[be]=Сховішча сертыфікатаў і ключоў
 | 
				
			||||||
 | 
					Name[bg]=Съхранение на сертификати и ключове
 | 
				
			||||||
 | 
					Name[bn]=সার্টিফিকেট এবং কী স্টোরেজ
 | 
				
			||||||
 | 
					Name[bn_IN]=সার্টিফিকেট এবং কি সংগ্রহস্থল
 | 
				
			||||||
 | 
					Name[bs]=Skladište sertifikata i ključeva
 | 
				
			||||||
 | 
					Name[ca]=Magatzem de certificats i de claus
 | 
				
			||||||
 | 
					Name[ca@valencia]=Magatzem de certificats i de claus
 | 
				
			||||||
 | 
					Name[ckb]=کۆکەرەوەی بڕوانامە و کلیل
 | 
				
			||||||
 | 
					Name[cs]=Odemknout certifikáty a umístění klíčů
 | 
				
			||||||
 | 
					Name[da]=Certifikat- og nøglelager
 | 
				
			||||||
 | 
					Name[de]=Zertifikat-/Schlüsselverwahrung
 | 
				
			||||||
 | 
					Name[el]=Αποθήκη πιστοποιητικών και κλειδιών
 | 
				
			||||||
 | 
					Name[en_GB]=Certificate and Key Storage
 | 
				
			||||||
 | 
					Name[eo]=Memorejo de atestiloj kaj ŝlosiloj
 | 
				
			||||||
 | 
					Name[es]=Certificados y almacenamiento de claves
 | 
				
			||||||
 | 
					Name[et]=Sertifikaadi- ja võtmehoidla
 | 
				
			||||||
 | 
					Name[eu]=Ziurtagirien/gakoen biltegia
 | 
				
			||||||
 | 
					Name[fa]=مخزن کلید و گواهینامه
 | 
				
			||||||
 | 
					Name[fi]=Varmenne- ja avainsäilö
 | 
				
			||||||
 | 
					Name[fr]=Stockage de certificats et de clés
 | 
				
			||||||
 | 
					Name[fur]=Archivi certificâts e clâfs
 | 
				
			||||||
 | 
					Name[gd]=Teisteanas agus stòras na h-iuchrach
 | 
				
			||||||
 | 
					Name[gl]=Almacenamento de chave ou certificado
 | 
				
			||||||
 | 
					Name[gu]=પ્રમાણપત્ર અને કી સંગ્રહ
 | 
				
			||||||
 | 
					Name[he]=אחסון תעודה ומפתח
 | 
				
			||||||
 | 
					Name[hi]=कुंजी भंडार प्रमाणित करें
 | 
				
			||||||
 | 
					Name[hr]=Vjerodajnice i spremište ključeva
 | 
				
			||||||
 | 
					Name[hu]=Tanúsítvány- és kulcstároló
 | 
				
			||||||
 | 
					Name[id]=Penyimpanan Kunci dan Sertifikat
 | 
				
			||||||
 | 
					Name[is]=Geymsla skilríkis og lykils
 | 
				
			||||||
 | 
					Name[it]=Archivio certificati e chiavi
 | 
				
			||||||
 | 
					Name[ja]=証明書および鍵を格納するストレージ
 | 
				
			||||||
 | 
					Name[kk]=Сертификаттар және кілттер қоймасы
 | 
				
			||||||
 | 
					Name[km]=វិញ្ញាបនបត្រ និងការផ្ទុកសោ
 | 
				
			||||||
 | 
					Name[kn]=ಪ್ರಮಾಣಪತ್ರ ಮತ್ತು ಕೀಲಿಯ ಶೇಖರಣೆ
 | 
				
			||||||
 | 
					Name[ko]=인증서 및 키 저장소
 | 
				
			||||||
 | 
					Name[lt]=Liudijimų ir raktų saugykla
 | 
				
			||||||
 | 
					Name[lv]=Sertifikātu un atslēgu glabātava
 | 
				
			||||||
 | 
					Name[mjw]=Certificate pen Key Storage
 | 
				
			||||||
 | 
					Name[mk]=Склад на клучеви и сертификати
 | 
				
			||||||
 | 
					Name[ml]=സാക്ഷ്യപത്രവും കീ സംഭരണവും
 | 
				
			||||||
 | 
					Name[mr]=प्रमाणपत्र व कि स्टोरेज
 | 
				
			||||||
 | 
					Name[ms]=Sijil dan Storan Kunci
 | 
				
			||||||
 | 
					Name[nb]=Lager for sertifikat/nøkkel
 | 
				
			||||||
 | 
					Name[nl]=Certificaat- en sleutelopslag
 | 
				
			||||||
 | 
					Name[nn]=Serifikat- og nøkkellager
 | 
				
			||||||
 | 
					Name[oc]=Emmagazinatge de certificats e de claus
 | 
				
			||||||
 | 
					Name[or]=ପ୍ରମାଣପତ୍ର ଏବଂ କି ସଂରକ୍ଷଣ
 | 
				
			||||||
 | 
					Name[pa]=ਸਰਟੀਫਿਕੇਟ ਅਤੇ ਕੁੰਜੀ ਸਟੋਰੇਜ਼
 | 
				
			||||||
 | 
					Name[pl]=Przechowalnia certyfikatów i kluczy
 | 
				
			||||||
 | 
					Name[pt]=Armazenamento de chaves e certificados
 | 
				
			||||||
 | 
					Name[pt_BR]=Certificados e armazenamento de chaves
 | 
				
			||||||
 | 
					Name[ro]=Stocare pentru certificate și chei
 | 
				
			||||||
 | 
					Name[ru]=Хранилище сертификатов и ключей
 | 
				
			||||||
 | 
					Name[sk]=Úložisko certifikátov a kľúčov
 | 
				
			||||||
 | 
					Name[sl]=Hranjenje potrdil in ključev
 | 
				
			||||||
 | 
					Name[sr]=Складиште сертификата и кључева
 | 
				
			||||||
 | 
					Name[sr@latin]=Skladište sertifikata i ključeva
 | 
				
			||||||
 | 
					Name[sv]=Certifikat och nyckellagring
 | 
				
			||||||
 | 
					Name[ta]=சான்றிதழ்/விசை சேமிப்பகம்
 | 
				
			||||||
 | 
					Name[te]=ధృవీకరణపత్రం మరియు కీ నిల్వ
 | 
				
			||||||
 | 
					Name[th]=แหล่งใบรับรองและกุญแจ
 | 
				
			||||||
 | 
					Name[tr]=Sertifika ve Anahtar Deposu
 | 
				
			||||||
 | 
					Name[ug]=گۇۋاھنامە ۋە شىفىرلىق ئاچقۇچ ئامبىرى
 | 
				
			||||||
 | 
					Name[uk]=Сертифікат та сховище ключів
 | 
				
			||||||
 | 
					Name[vi]=Lưu trữ Chứng nhận và khóa
 | 
				
			||||||
 | 
					Name[zh_CN]=证书和密钥存储
 | 
				
			||||||
 | 
					Name[zh_HK]=證書與密碼匙儲存區
 | 
				
			||||||
 | 
					Name[zh_TW]=憑證與金鑰儲存區
 | 
				
			||||||
 | 
					Name=Certificate and Key Storage
 | 
				
			||||||
 | 
					Comment[af]=GNOME-sleutelring: PKCS#11-komponent
 | 
				
			||||||
 | 
					Comment[ar]=حلقة مفاتيح جنوم: مكون PKCS#11
 | 
				
			||||||
 | 
					Comment[as]=GNOME Keyring: PKCS#11 উপাদান
 | 
				
			||||||
 | 
					Comment[ast]=Depósitu de claves de GNOME: Componente PKCS#11
 | 
				
			||||||
 | 
					Comment[be]=Вязкі ключоў GNOME: кампанент PKCS#11
 | 
				
			||||||
 | 
					Comment[bg]=Ключодържател на GNOME: компонент за PKCS#11
 | 
				
			||||||
 | 
					Comment[bn]=GNOME কী রিং: PKCS#11 কম্পোনেন্ট
 | 
				
			||||||
 | 
					Comment[bn_IN]=GNOME Keyring: PKCS#11 উপাদান
 | 
				
			||||||
 | 
					Comment[bs]=Gnomovi privjesci: PKCS#11 komponenta
 | 
				
			||||||
 | 
					Comment[ca]=Anell de claus del GNOME: component PKCS#11
 | 
				
			||||||
 | 
					Comment[ca@valencia]=Anell de claus del GNOME: component PKCS#11
 | 
				
			||||||
 | 
					Comment[cs]=Klíčenka GNOME: komponenta PKCS#11
 | 
				
			||||||
 | 
					Comment[da]=GNOME-nøgleringsdæmon: PKCS#11-komponent
 | 
				
			||||||
 | 
					Comment[de]=GNOME-Schlüsselbunddienst: PKCS#11-Komponente
 | 
				
			||||||
 | 
					Comment[el]=Κλειδοθήκη GNOME: Συστατικό στοιχείο PKCS#11
 | 
				
			||||||
 | 
					Comment[en_GB]=GNOME Keyring: PKCS#11 Component
 | 
				
			||||||
 | 
					Comment[eo]=GNOME Ŝlosilaro: PKCS#11 ero
 | 
				
			||||||
 | 
					Comment[es]=Depósito de claves de GNOME: Componente PKCS#11
 | 
				
			||||||
 | 
					Comment[et]=GNOME võtmerõngas: PKCS#11 komponent
 | 
				
			||||||
 | 
					Comment[eu]=GNOMEren gako-sorta: PKCS#11 osagaia
 | 
				
			||||||
 | 
					Comment[fa]=دستهکلید گنوم: عناصر PKCS#11
 | 
				
			||||||
 | 
					Comment[fi]=Gnomen avainnippu: PKCS#11-komponentti
 | 
				
			||||||
 | 
					Comment[fr]=Trousseau de clés de GNOME : composant PKCS#11
 | 
				
			||||||
 | 
					Comment[fur]=Puarteclâfs di GNOME: component PKCS#11
 | 
				
			||||||
 | 
					Comment[gd]=Dul-iuchrach GNOME: Co-phàirt PKCS#11
 | 
				
			||||||
 | 
					Comment[gl]=GNOME Keyring: compoñente PKCS#11
 | 
				
			||||||
 | 
					Comment[gu]=GNOME કીરીંગ: PKCS#11 ઘટક
 | 
				
			||||||
 | 
					Comment[he]=קבוצת מפתחות של GNOME:רכיב PKCS#11
 | 
				
			||||||
 | 
					Comment[hi]=गनोम कीरिंग: PKCS#11 घटक
 | 
				
			||||||
 | 
					Comment[hr]=GNOME skup ključeva: PKCS#11 komponena
 | 
				
			||||||
 | 
					Comment[hu]=GNOME kulcstartó – PKCS#11 összetevő
 | 
				
			||||||
 | 
					Comment[id]=GNOME Keyring: Komponen PKCS#11
 | 
				
			||||||
 | 
					Comment[it]=Portachiavi di GNOME: componente PKCS#11
 | 
				
			||||||
 | 
					Comment[ja]=GNOME キーリング: PKCS#11 コンポーネント
 | 
				
			||||||
 | 
					Comment[kk]=GNOME Keyring: PKCS#11 құрамасы
 | 
				
			||||||
 | 
					Comment[km]=GNOME Keyring ៖ សមាសភាគ PKCS#11
 | 
				
			||||||
 | 
					Comment[kn]=GNOME ಕೀಲಿಗೊಂಚಲು: PKCS#11 ಘಟಕ
 | 
				
			||||||
 | 
					Comment[ko]=그놈 키 모음: PKCS#11 컴포넌트
 | 
				
			||||||
 | 
					Comment[lt]=GNOME raktinė: PKCS#11 komponentas
 | 
				
			||||||
 | 
					Comment[lv]=GNOME atslēgu saišķis — PKCS#11 komponente
 | 
				
			||||||
 | 
					Comment[mjw]=GNOME Keyring: PKCS#11 Component
 | 
				
			||||||
 | 
					Comment[mk]=Приврзок на GNOME: PKCS#11 компонента
 | 
				
			||||||
 | 
					Comment[ml]=ഗ്നോം കീറിങ്: PKCS#11 ഘടകം
 | 
				
			||||||
 | 
					Comment[mr]=GNOME किरिंग: PKCS#11 घटक
 | 
				
			||||||
 | 
					Comment[ms]=Gelang Kunci GNOME: Komponen PKCS#11
 | 
				
			||||||
 | 
					Comment[nb]=GNOME nøkkelring: PKCS#11-komponent
 | 
				
			||||||
 | 
					Comment[nl]=Sleutelbos-service: PKCS#11-component
 | 
				
			||||||
 | 
					Comment[nn]=GNOME Nøkkelring: PKCS#11-komponent
 | 
				
			||||||
 | 
					Comment[oc]=Trossèl de claus GNOME : component PKCS#11
 | 
				
			||||||
 | 
					Comment[or]=GNOME କି ରିଙ୍ଗ: PKCS#11 ଉପାଦାନ
 | 
				
			||||||
 | 
					Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ: PKCS#11 ਭਾਗ
 | 
				
			||||||
 | 
					Comment[pl]=Baza kluczy dla środowiska GNOME: składnik PKCS#11
 | 
				
			||||||
 | 
					Comment[pt]=GNOME Keyring: componente PKCS#11
 | 
				
			||||||
 | 
					Comment[pt_BR]=Chaveiro do GNOME: Componente PKCS#11
 | 
				
			||||||
 | 
					Comment[ro]=Inelul de chei GNOME: Componenta PKCS#11
 | 
				
			||||||
 | 
					Comment[ru]=Связка ключей GNOME: компонент PKCS#11
 | 
				
			||||||
 | 
					Comment[sk]=Modul PKCS#11 zväzku kľúčov GNOME
 | 
				
			||||||
 | 
					Comment[sl]=Zbirka ključev GNOME: enota PKCS#11
 | 
				
			||||||
 | 
					Comment[sr]=Гномови привесци: ПКЦС#11 компонента
 | 
				
			||||||
 | 
					Comment[sr@latin]=Gnomovi privesci: PKCS#11 komponenta
 | 
				
			||||||
 | 
					Comment[sv]=GNOME-nyckelring: PKCS#11-komponent
 | 
				
			||||||
 | 
					Comment[ta]=GNOME கீரிங்:  PKCS#11 கூறு
 | 
				
			||||||
 | 
					Comment[te]=GNOME కీరింగ్: PKCS#11 అంశం
 | 
				
			||||||
 | 
					Comment[th]=พวงกุญแจของ GNOME: องค์ประกอบ PKCS#11
 | 
				
			||||||
 | 
					Comment[tr]=GNOME Anahtarlığı: PKCS#11 Bileşeni
 | 
				
			||||||
 | 
					Comment[ug]=گىنوم ئاچقۇچ ھالقىسى:PKCS#11 دېتالى
 | 
				
			||||||
 | 
					Comment[uk]=Служба в'язки ключів GNOME: компонент PKCS#11
 | 
				
			||||||
 | 
					Comment[vi]=Chùm chìa khóa GNOME: thành phần PKCS#11
 | 
				
			||||||
 | 
					Comment[zh_CN]=GNOME 密钥环:PKCS#11 组件
 | 
				
			||||||
 | 
					Comment[zh_HK]=GNOME 密碼匙圈:PKCS#11 元件
 | 
				
			||||||
 | 
					Comment[zh_TW]=GNOME 鑰匙圈:PKCS#11 元件
 | 
				
			||||||
 | 
					Comment=GNOME Keyring: PKCS#11 Component
 | 
				
			||||||
 | 
					Exec=/usr/bin/gnome-keyring-daemon --start --components=pkcs11
 | 
				
			||||||
 | 
					NoDisplay=true
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Phase=PreDisplayServer
 | 
				
			||||||
 | 
					X-GNOME-AutoRestart=false
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Notify=true
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Bugzilla=GNOME
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Product=gnome-keyring
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Component=general
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Version=40.0
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,157 @@
 | 
				
			||||||
 | 
					#!/usr/bin/env xdg-open
 | 
				
			||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
 | 
					Name[af]=Geheimbergingsdiens
 | 
				
			||||||
 | 
					Name[ar]=خدمة حفظ سرية
 | 
				
			||||||
 | 
					Name[as]=গুপ্ত সংৰক্ষণ সেৱা
 | 
				
			||||||
 | 
					Name[ast]=Serviciu d'almacenamientu de secretos
 | 
				
			||||||
 | 
					Name[be]=Служба сховішча для сакрэтаў
 | 
				
			||||||
 | 
					Name[bg]=Услуга за шифриран носител
 | 
				
			||||||
 | 
					Name[bn]=গোপন সংরক্ষণ সম্পর্কিত সার্ভিস
 | 
				
			||||||
 | 
					Name[bn_IN]=গোপন সংগ্রহস্থল পরিষেবা
 | 
				
			||||||
 | 
					Name[bs]=Servis sa tajno skladištenje
 | 
				
			||||||
 | 
					Name[ca]=Servei d'emmagatzematge de secrets
 | 
				
			||||||
 | 
					Name[ca@valencia]=Servei d'emmagatzematge de secrets
 | 
				
			||||||
 | 
					Name[cs]=Služba utajení dat
 | 
				
			||||||
 | 
					Name[da]=Secret Storage Service
 | 
				
			||||||
 | 
					Name[de]=Sicherheitsdienst
 | 
				
			||||||
 | 
					Name[el]=Υπηρεσία κρυφής αποθήκευσης
 | 
				
			||||||
 | 
					Name[en_GB]=Secret Storage Service
 | 
				
			||||||
 | 
					Name[eo]=Servo pri sekreta memorejo
 | 
				
			||||||
 | 
					Name[es]=Servicio de almacenamiento de secretos
 | 
				
			||||||
 | 
					Name[et]=Saladuste hoidmise teenus
 | 
				
			||||||
 | 
					Name[eu]=Ezkutuko biltegiaren zerbitzua
 | 
				
			||||||
 | 
					Name[fa]=خدمت مخزن محرمانه
 | 
				
			||||||
 | 
					Name[fi]=Salaisuuksien säilöntäpalvelu
 | 
				
			||||||
 | 
					Name[fr]=Service de stockage secret
 | 
				
			||||||
 | 
					Name[fur]=Servizi archivi segret
 | 
				
			||||||
 | 
					Name[gd]=Seirbheis stòrais dhìomhair
 | 
				
			||||||
 | 
					Name[gl]=Servizo de almacenamento segredo
 | 
				
			||||||
 | 
					Name[gu]=ખાનગી સંગ્રહ સેવા
 | 
				
			||||||
 | 
					Name[he]=שרות אחסון חשאי
 | 
				
			||||||
 | 
					Name[hi]=गुप्त भंडार सेवा
 | 
				
			||||||
 | 
					Name[hr]=Tajna usluga spremišta
 | 
				
			||||||
 | 
					Name[hu]=Titoktároló szolgáltatás
 | 
				
			||||||
 | 
					Name[id]=Layanan Penyimpanan Rahasia
 | 
				
			||||||
 | 
					Name[it]=Servizio archivio segreto
 | 
				
			||||||
 | 
					Name[ja]=シークレットストレージサービス
 | 
				
			||||||
 | 
					Name[kk]=Құпия кілттер қоймасы қызметі
 | 
				
			||||||
 | 
					Name[km]=សេវាផ្ទុកសម្ងាត់
 | 
				
			||||||
 | 
					Name[kn]=ಸೀಕ್ರೆಟ್ ಶೇಖರಣಾ ಸೇವೆ
 | 
				
			||||||
 | 
					Name[ko]=비밀 저장고 서비스
 | 
				
			||||||
 | 
					Name[lt]=Slaptoji saugojimo tarnyba
 | 
				
			||||||
 | 
					Name[lv]=Slepenās glabātavas serviss
 | 
				
			||||||
 | 
					Name[mjw]=Secret Storage Service
 | 
				
			||||||
 | 
					Name[mk]=Сервис за склад на тајни
 | 
				
			||||||
 | 
					Name[ml]=രഹസ്യ സംഭരണ സേവനം
 | 
				
			||||||
 | 
					Name[mr]=गोपणी स्टोरेज सर्व्हिस
 | 
				
			||||||
 | 
					Name[ms]=Perkhidmatan Rahsia Storan
 | 
				
			||||||
 | 
					Name[nb]=Lagringstjeneste for hemmeligheter
 | 
				
			||||||
 | 
					Name[nl]=Secret Storage Service
 | 
				
			||||||
 | 
					Name[nn]=Hemmeleg lagerteneste
 | 
				
			||||||
 | 
					Name[oc]=Servici d'emmagazinatge secret
 | 
				
			||||||
 | 
					Name[or]=ଗୁପ୍ତ ସଂରକ୍ଷଣ ସର୍ଭିସ
 | 
				
			||||||
 | 
					Name[pa]=ਗੁਪਤ ਸਟੋਰੇਜ਼ ਸਰਵਿਸ
 | 
				
			||||||
 | 
					Name[pl]=Usługa przechowywania haseł
 | 
				
			||||||
 | 
					Name[pt]=Serviço de armazenamento secreto
 | 
				
			||||||
 | 
					Name[pt_BR]=Serviço de armazenamento secreto
 | 
				
			||||||
 | 
					Name[ro]=Serviciul secret de stocare
 | 
				
			||||||
 | 
					Name[ru]=Служба безопасного хранения
 | 
				
			||||||
 | 
					Name[sk]=Služba utajeného úložiska
 | 
				
			||||||
 | 
					Name[sl]=Shranjevanje skritih storitev
 | 
				
			||||||
 | 
					Name[sr]=Сервис са тајно складиштење
 | 
				
			||||||
 | 
					Name[sr@latin]=Servis sa tajno skladištenje
 | 
				
			||||||
 | 
					Name[sv]=Lagringstjänst för hemligheter
 | 
				
			||||||
 | 
					Name[ta]=\sரகசிய சேமிப்பு சேவை
 | 
				
			||||||
 | 
					Name[te]=రహస్య నిల్వ సేవ
 | 
				
			||||||
 | 
					Name[th]=บริการเก็บข้อมูลลับ
 | 
				
			||||||
 | 
					Name[tr]=Gizli Depolama Hizmeti
 | 
				
			||||||
 | 
					Name[ug]=مەخپىي ساقلاش مۇلازىمىتى
 | 
				
			||||||
 | 
					Name[uk]=Служба шифрування дисків
 | 
				
			||||||
 | 
					Name[vi]=Dịch vụ lưu trữ bảo mật
 | 
				
			||||||
 | 
					Name[zh_CN]=保密存储服务
 | 
				
			||||||
 | 
					Name[zh_HK]=保密儲存區服務
 | 
				
			||||||
 | 
					Name[zh_TW]=保密儲存區服務
 | 
				
			||||||
 | 
					Name=Secret Storage Service
 | 
				
			||||||
 | 
					Comment[af]=GNOME-sleutelring: geheimdiens
 | 
				
			||||||
 | 
					Comment[ar]=حلقة مفاتيح جنوم: خدمة سرية
 | 
				
			||||||
 | 
					Comment[as]=GNOME Keyring: গুপ্ত সেৱা
 | 
				
			||||||
 | 
					Comment[ast]=Depósitu de claves de GNOME: Serviciu de secretos
 | 
				
			||||||
 | 
					Comment[be]=Вязкі ключоў GNOME: служба сакрэтаў
 | 
				
			||||||
 | 
					Comment[bg]=Ключодържател на GNOME: услуга за тайни
 | 
				
			||||||
 | 
					Comment[bn]=GNOME কী রিং: গোপন সার্ভিস
 | 
				
			||||||
 | 
					Comment[bn_IN]=GNOME Keyring: গোপন পরিষেবা
 | 
				
			||||||
 | 
					Comment[bs]=Gnomovi privjesci: servis za tajnost
 | 
				
			||||||
 | 
					Comment[ca]=Anell de claus del GNOME: servei de secrets
 | 
				
			||||||
 | 
					Comment[ca@valencia]=Anell de claus del GNOME: servei de secrets
 | 
				
			||||||
 | 
					Comment[cs]=Klíčenka GNOME: Služba utajení dat
 | 
				
			||||||
 | 
					Comment[da]=GNOME-nøglering: Secret Service
 | 
				
			||||||
 | 
					Comment[de]=GNOME-Schlüsselbunddienst: Sicherheitsdienst
 | 
				
			||||||
 | 
					Comment[el]=Κλειδοθήκη GNOME: Κρυφή υπηρεσία
 | 
				
			||||||
 | 
					Comment[en_GB]=GNOME Keyring: Secret Service
 | 
				
			||||||
 | 
					Comment[eo]=GNOME Ŝlosilaro: Sekreta servo
 | 
				
			||||||
 | 
					Comment[es]=Depósito de claves de GNOME: Servicio de secretos
 | 
				
			||||||
 | 
					Comment[et]=GNOME võtmerõngas: saladuste teenus
 | 
				
			||||||
 | 
					Comment[eu]=GNOMEren gako-sorta: ezkutuko zerbitzua
 | 
				
			||||||
 | 
					Comment[fa]=دستهکلید گنوم: خدمت محرمانه
 | 
				
			||||||
 | 
					Comment[fi]=Gnomen avainnippu: Salainen palvelu
 | 
				
			||||||
 | 
					Comment[fr]=Trousseau de clés de GNOME : service secret
 | 
				
			||||||
 | 
					Comment[fur]=Puarteclâfs di GNOME: servizi segret
 | 
				
			||||||
 | 
					Comment[gd]=Dul-iuchrach GNOME: Seirbheis dhìomhair
 | 
				
			||||||
 | 
					Comment[gl]=GNOME Keyring: servizo segredo
 | 
				
			||||||
 | 
					Comment[gu]=GNOME કીરીંગ: ખાનગી સેવા
 | 
				
			||||||
 | 
					Comment[he]=קבוצת מפתחות של GNOME: שירות חשאי
 | 
				
			||||||
 | 
					Comment[hi]=गनोम कीरिंग: गुप्त सेवा
 | 
				
			||||||
 | 
					Comment[hr]=GNOME skup ključeva: Tajna usluga
 | 
				
			||||||
 | 
					Comment[hu]=GNOME kulcstartó – titokszolgáltatás
 | 
				
			||||||
 | 
					Comment[id]=GNOME Keyring: Layanan Rahasia
 | 
				
			||||||
 | 
					Comment[it]=Portachiavi di GNOME: servizio segreto
 | 
				
			||||||
 | 
					Comment[ja]=GNOME キーリング: シークレットサービス
 | 
				
			||||||
 | 
					Comment[kk]=GNOME Keyring: Құпия кілттер қызметі
 | 
				
			||||||
 | 
					Comment[km]=GNOME Keyring ៖ សេវាសម្ងាត់
 | 
				
			||||||
 | 
					Comment[kn]=GNOME ಕೀಲಿಗೊಂಚಲು: ಸೀಕ್ರೆಟ್ ಸೇವೆ
 | 
				
			||||||
 | 
					Comment[ko]=그놈 키 모음: 비밀 서비스
 | 
				
			||||||
 | 
					Comment[lt]=GNOME raktinė: slaptoji tarnyba
 | 
				
			||||||
 | 
					Comment[lv]=GNOME atslēgu saišķis — slepenais serviss
 | 
				
			||||||
 | 
					Comment[mjw]=GNOME Keyring: Secret Service
 | 
				
			||||||
 | 
					Comment[mk]=Приврзок на GNOME: таен сервис
 | 
				
			||||||
 | 
					Comment[ml]=ഗ്നോം കീറിങ്: രഹസ്യ സേവനം
 | 
				
			||||||
 | 
					Comment[mr]=GNOME किरिंग: गोपणीय सर्व्हिस
 | 
				
			||||||
 | 
					Comment[ms]=Gelang Kunci GNOME: Perkhidmatan Rahsia
 | 
				
			||||||
 | 
					Comment[nb]=GNOME nøkkelring: Hemmelige tjenester
 | 
				
			||||||
 | 
					Comment[ne]=जिनोम किरिङ : गुप्त सेवा
 | 
				
			||||||
 | 
					Comment[nl]=Sleutelbos-service: Secret Service
 | 
				
			||||||
 | 
					Comment[nn]=GNOME Nøkkelring: Hemmeleg teneste
 | 
				
			||||||
 | 
					Comment[oc]=Trossèl de claus GNOME : servici secret
 | 
				
			||||||
 | 
					Comment[or]=GNOME କି ରିଙ୍ଗ: ଗୁପ୍ତ ସଂରକ୍ଷଣ
 | 
				
			||||||
 | 
					Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ ਡੈਮਨ: ਗੁਪਤ ਸਰਵਿਸ
 | 
				
			||||||
 | 
					Comment[pl]=Baza kluczy dla środowiska GNOME: usługa haseł
 | 
				
			||||||
 | 
					Comment[pt]=GNOME Keyring: serviço secreto
 | 
				
			||||||
 | 
					Comment[pt_BR]=Chaveiro do GNOME: Serviço secreto
 | 
				
			||||||
 | 
					Comment[ro]=Inelul de chei GNOME: Serviciul secret
 | 
				
			||||||
 | 
					Comment[ru]=Связка ключей GNOME: служба безопасности
 | 
				
			||||||
 | 
					Comment[sk]=Služba utajenia zväzku kľúčov GNOME
 | 
				
			||||||
 | 
					Comment[sl]=Zbirka ključev GNOME: skrite storitve
 | 
				
			||||||
 | 
					Comment[sr]=Гномови привесци: сервис за тајност
 | 
				
			||||||
 | 
					Comment[sr@latin]=Gnomovi privesci: servis za tajnost
 | 
				
			||||||
 | 
					Comment[sv]=GNOME-nyckelring: Hemlighetstjänst
 | 
				
			||||||
 | 
					Comment[ta]=GNOME கீரிங்: ரகசிய சேவை
 | 
				
			||||||
 | 
					Comment[te]=GNOME కీరింగ్: రహస్య సేవ
 | 
				
			||||||
 | 
					Comment[th]=พวงกุญแจของ GNOME: บริการเก็บข้อมูลลับ
 | 
				
			||||||
 | 
					Comment[tr]=GNOME Anahtarlığı: Gizli Hizmet
 | 
				
			||||||
 | 
					Comment[ug]=گىنوم ئاچقۇچ ھالقىسى:مەخپىيەت مۇلازىمىتى
 | 
				
			||||||
 | 
					Comment[uk]=Служба в'язки ключів GNOME: служба шифрування
 | 
				
			||||||
 | 
					Comment[vi]=Chùm chìa khóa GNOME: dịch vụ bảo mật
 | 
				
			||||||
 | 
					Comment[zh_CN]=GNOME 密钥环:保密服务
 | 
				
			||||||
 | 
					Comment[zh_HK]=GNOME 密碼匙圈:保密服務
 | 
				
			||||||
 | 
					Comment[zh_TW]=GNOME 鑰匙圈:保密服務
 | 
				
			||||||
 | 
					Comment=GNOME Keyring: Secret Service
 | 
				
			||||||
 | 
					Exec=/usr/bin/gnome-keyring-daemon --start --components=secrets
 | 
				
			||||||
 | 
					NoDisplay=true
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Phase=PreDisplayServer
 | 
				
			||||||
 | 
					X-GNOME-AutoRestart=false
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Notify=true
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Bugzilla=GNOME
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Product=gnome-keyring
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Component=general
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Version=40.0
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,156 @@
 | 
				
			||||||
 | 
					#!/usr/bin/env xdg-open
 | 
				
			||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
 | 
					Name[af]=SSH-sleutelagent
 | 
				
			||||||
 | 
					Name[ar]=عميل مفاتيح SSH
 | 
				
			||||||
 | 
					Name[as]=SSH কি সহায়ক
 | 
				
			||||||
 | 
					Name[ast]=Axente de claves SSH
 | 
				
			||||||
 | 
					Name[be]=SSH-агент ключоў
 | 
				
			||||||
 | 
					Name[bg]=Агентът на SSH за ключове
 | 
				
			||||||
 | 
					Name[bn]=SSH কী এজেন্ট
 | 
				
			||||||
 | 
					Name[bn_IN]=SSH কি এজেন্ট
 | 
				
			||||||
 | 
					Name[bs]=Agent za SSH ključeve
 | 
				
			||||||
 | 
					Name[ca]=Agent de claus SSH
 | 
				
			||||||
 | 
					Name[ca@valencia]=Agent de claus SSH
 | 
				
			||||||
 | 
					Name[cs]=Agent klíčů SSH
 | 
				
			||||||
 | 
					Name[da]=SSH-nøgleagent
 | 
				
			||||||
 | 
					Name[de]=SSH-Schlüsselagent
 | 
				
			||||||
 | 
					Name[el]=Πράκτορας κλειδιού SSH
 | 
				
			||||||
 | 
					Name[en_GB]=SSH Key Agent
 | 
				
			||||||
 | 
					Name[eo]=SSH-ŝlosila agento
 | 
				
			||||||
 | 
					Name[es]=Agente de claves SSH
 | 
				
			||||||
 | 
					Name[et]=SSH-võtmete agent
 | 
				
			||||||
 | 
					Name[eu]=SSH gako-agentea
 | 
				
			||||||
 | 
					Name[fa]=عامل کلید SSH
 | 
				
			||||||
 | 
					Name[fi]=SSH-avainten agentti
 | 
				
			||||||
 | 
					Name[fr]=Agent de clés SSH
 | 
				
			||||||
 | 
					Name[fur]=Agjent clâfs SSH
 | 
				
			||||||
 | 
					Name[gd]=Àidseant iuchair SSH
 | 
				
			||||||
 | 
					Name[gl]=Axente de chave SSH
 | 
				
			||||||
 | 
					Name[gu]=SSH કી ઍજન્ટ
 | 
				
			||||||
 | 
					Name[he]=סוכן מפתחות SSH
 | 
				
			||||||
 | 
					Name[hi]=AFS कुँजी प्रतिनिधि
 | 
				
			||||||
 | 
					Name[hr]=Agent SSH ključa
 | 
				
			||||||
 | 
					Name[hu]=SSH-kulcs ügynök
 | 
				
			||||||
 | 
					Name[id]=Agen Kunci SSH
 | 
				
			||||||
 | 
					Name[it]=Agente chiavi SSH
 | 
				
			||||||
 | 
					Name[ja]=SSH 鍵エージェント
 | 
				
			||||||
 | 
					Name[kk]=SSH кілттер агенті
 | 
				
			||||||
 | 
					Name[km]=ភ្នាក់ងារសោ SSH
 | 
				
			||||||
 | 
					Name[kn]=SSH ಕೀಲಿ ಮಧ್ಯವರ್ತಿ
 | 
				
			||||||
 | 
					Name[ko]=SSH 키 에이전트
 | 
				
			||||||
 | 
					Name[lt]=SSH raktų tarnyba
 | 
				
			||||||
 | 
					Name[lv]=SSH atslēgu aģents
 | 
				
			||||||
 | 
					Name[mjw]=SSH Key Agent
 | 
				
			||||||
 | 
					Name[mk]=Агент за SSH клучеви
 | 
				
			||||||
 | 
					Name[ml]=എസ്എസ്എച് കീ ഏജന്റ്
 | 
				
			||||||
 | 
					Name[mr]=SSH कि एजंट
 | 
				
			||||||
 | 
					Name[ms]=Ejen Kunci SSH
 | 
				
			||||||
 | 
					Name[nb]=SSH-nøkkelagent
 | 
				
			||||||
 | 
					Name[nl]=SSH-sleutelagent
 | 
				
			||||||
 | 
					Name[nn]=Nøkkelagent for SSH
 | 
				
			||||||
 | 
					Name[oc]=Agent de claus SSH
 | 
				
			||||||
 | 
					Name[or]=SSH କି ସଦସ୍ୟ
 | 
				
			||||||
 | 
					Name[pa]=SSH ਕੁੰਜੀ ਏਜੰਟ
 | 
				
			||||||
 | 
					Name[pl]=Agent kluczy SSH
 | 
				
			||||||
 | 
					Name[pt]=Agente de chaves SSH
 | 
				
			||||||
 | 
					Name[pt_BR]=Agente de chaves SSH
 | 
				
			||||||
 | 
					Name[ro]=Agent pentru chei SSH
 | 
				
			||||||
 | 
					Name[ru]=Агент ключей SSH
 | 
				
			||||||
 | 
					Name[sk]=Agent kľúčov SSH
 | 
				
			||||||
 | 
					Name[sl]=Agent ključev SSH
 | 
				
			||||||
 | 
					Name[sr]=Агент за ССХ кључеве
 | 
				
			||||||
 | 
					Name[sr@latin]=Agent za SSH ključeve
 | 
				
			||||||
 | 
					Name[sv]=SSH-nyckelagent
 | 
				
			||||||
 | 
					Name[ta]=SSH முகவர்
 | 
				
			||||||
 | 
					Name[te]=SSH కీ వాహకము
 | 
				
			||||||
 | 
					Name[th]=เอเจนต์กุญแจ SSH
 | 
				
			||||||
 | 
					Name[tr]=SSH Anahtar Aracı
 | 
				
			||||||
 | 
					Name[ug]=SSH  ئاچقۇچ ياردەمچىسى
 | 
				
			||||||
 | 
					Name[uk]=Агент ключів SSH
 | 
				
			||||||
 | 
					Name[vi]=Đại diện khóa SSH
 | 
				
			||||||
 | 
					Name[zh_CN]=SSH 密钥代理
 | 
				
			||||||
 | 
					Name[zh_HK]=SSH 密碼匙代理程式
 | 
				
			||||||
 | 
					Name[zh_TW]=SSH 金鑰代理程式
 | 
				
			||||||
 | 
					Name=SSH Key Agent
 | 
				
			||||||
 | 
					Comment[af]=GNOME-sleutelring: SSH-agent
 | 
				
			||||||
 | 
					Comment[ar]=حلقة مفاتيح جنوم: عميل SSH
 | 
				
			||||||
 | 
					Comment[as]=GNOME Keyring: SSH সহায়ক
 | 
				
			||||||
 | 
					Comment[ast]=Depósitu de claves de GNOME: axente SSH
 | 
				
			||||||
 | 
					Comment[be]=Вязкі ключоў GNOME: SSH-агент
 | 
				
			||||||
 | 
					Comment[bg]=Ключодържател на GNOME: агент на SSH
 | 
				
			||||||
 | 
					Comment[bn]=GNOME কী রিং: SSH এজেন্ট
 | 
				
			||||||
 | 
					Comment[bn_IN]=GNOME Keyring: SSH এজেন্ট
 | 
				
			||||||
 | 
					Comment[bs]=Gnomovi privjesci: SSH agent
 | 
				
			||||||
 | 
					Comment[ca]=Anell de claus del GNOME: agent SSH
 | 
				
			||||||
 | 
					Comment[ca@valencia]=Anell de claus del GNOME: agent SSH
 | 
				
			||||||
 | 
					Comment[cs]=Klíčenka GNOME: Agent SSH
 | 
				
			||||||
 | 
					Comment[da]=GNOME-nøgleringsdæmon: SSH-agent
 | 
				
			||||||
 | 
					Comment[de]=GNOME-Schlüsselbunddienst: SSH-Agent
 | 
				
			||||||
 | 
					Comment[el]=Κλειδοθήκη GNOME: Πράκτορας SSH
 | 
				
			||||||
 | 
					Comment[en_GB]=GNOME Keyring: SSH Agent
 | 
				
			||||||
 | 
					Comment[eo]=GNOME Ŝlosilaro: SSH-agento
 | 
				
			||||||
 | 
					Comment[es]=Depósito de claves de GNOME: agente SSH
 | 
				
			||||||
 | 
					Comment[et]=GNOME võtmerõngas: SSH-agent
 | 
				
			||||||
 | 
					Comment[eu]=GNOMEren gako-sorta: SSH agentea
 | 
				
			||||||
 | 
					Comment[fa]=دستهکلید گنوم: عامل SSH
 | 
				
			||||||
 | 
					Comment[fi]=Gnomen avainnippu: SSH-agentti
 | 
				
			||||||
 | 
					Comment[fr]=Trousseau de clés de GNOME : agent SSH
 | 
				
			||||||
 | 
					Comment[fur]=Puarteclâfs di GNOME: agjent SSH
 | 
				
			||||||
 | 
					Comment[gd]=Dul-iuchrach: Àidseant SSH
 | 
				
			||||||
 | 
					Comment[gl]=GNOME Keyring: Axente SSH
 | 
				
			||||||
 | 
					Comment[gu]=GNOME કીરીંગ: SSH ઍજન્ટ
 | 
				
			||||||
 | 
					Comment[he]=קבוצת מפתחות של GNOME: סוכן SSH
 | 
				
			||||||
 | 
					Comment[hi]=गनोम कीरिंग: SSH प्रतिनिधि
 | 
				
			||||||
 | 
					Comment[hr]=GNOME skup ključeva: SSH agent
 | 
				
			||||||
 | 
					Comment[hu]=GNOME kulcstartó – SSH-ügynök
 | 
				
			||||||
 | 
					Comment[id]=Ring Kunci GNOME: Agen SSH
 | 
				
			||||||
 | 
					Comment[it]=Portachiavi di GNOME: agente SSH
 | 
				
			||||||
 | 
					Comment[ja]=GNOME キーリング: SSH エージェント
 | 
				
			||||||
 | 
					Comment[kk]=GNOME Keyring: SSH агенті
 | 
				
			||||||
 | 
					Comment[km]=GNOME Keyring ៖ ភ្នាក់ងារ SSH
 | 
				
			||||||
 | 
					Comment[kn]=GNOME ಕೀಲಿಗೊಂಚಲು: SSH ಮಧ್ಯವರ್ತಿ
 | 
				
			||||||
 | 
					Comment[ko]=그놈 키 모음: SSH 에이전트
 | 
				
			||||||
 | 
					Comment[lt]=GNOME raktinė: SSH tarnyba
 | 
				
			||||||
 | 
					Comment[lv]=GNOME atslēgu saišķis — SSH aģents
 | 
				
			||||||
 | 
					Comment[mjw]=GNOME Keyring: SSH Agent
 | 
				
			||||||
 | 
					Comment[mk]=Приврзок на GNOME: SSH агент
 | 
				
			||||||
 | 
					Comment[ml]=ഗ്നോം കീറിങ്: എസ്എസ്എച് ഏജന്റ്
 | 
				
			||||||
 | 
					Comment[mr]=GNOME किरिंग: SSH एजंट
 | 
				
			||||||
 | 
					Comment[ms]=Gelang Kunci GNOME: Ejen SSH
 | 
				
			||||||
 | 
					Comment[nb]=GNOME nøkkelring: SSH-agent
 | 
				
			||||||
 | 
					Comment[ne]=जिनोम किरिङ : SSH एजेन्ट
 | 
				
			||||||
 | 
					Comment[nl]=Sleutelbos-service: SSH-agent
 | 
				
			||||||
 | 
					Comment[nn]=GNOME Nøkkelring: SSH-agent
 | 
				
			||||||
 | 
					Comment[oc]=Trossèl de claus GNOME : agent SSH
 | 
				
			||||||
 | 
					Comment[or]=GNOME କି ରିଙ୍ଗ: SSH ସଦସ୍ୟ
 | 
				
			||||||
 | 
					Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ: SSH ਏਜੰਟ
 | 
				
			||||||
 | 
					Comment[pl]=Baza kluczy dla środowiska GNOME: agent SSH
 | 
				
			||||||
 | 
					Comment[pt]=GNOME Keyring: agente SSH
 | 
				
			||||||
 | 
					Comment[pt_BR]=Chaveiro do GNOME: Agente SSH
 | 
				
			||||||
 | 
					Comment[ro]=Inelul de chei GNOME: Agent SSH
 | 
				
			||||||
 | 
					Comment[ru]=Связка ключей GNOME: SSH-агент
 | 
				
			||||||
 | 
					Comment[sk]=SSH agent zväzku kľúčov GNOME
 | 
				
			||||||
 | 
					Comment[sl]=Zbirka ključev GNOME: agent SSH
 | 
				
			||||||
 | 
					Comment[sr]=Гномови привесци: ССХ агент
 | 
				
			||||||
 | 
					Comment[sr@latin]=Gnomovi privesci: SSH agent
 | 
				
			||||||
 | 
					Comment[sv]=GNOME-nyckelring: SSH-agent
 | 
				
			||||||
 | 
					Comment[ta]=GNOME கீரிங்: SSH முகவர்
 | 
				
			||||||
 | 
					Comment[te]=GNOME కీరింగ్: SSH వాహకం
 | 
				
			||||||
 | 
					Comment[th]=พวงกุญแจของ GNOME: เอเจนต์ SSH
 | 
				
			||||||
 | 
					Comment[tr]=GNOME Anahtarlığı: SSH Aracı
 | 
				
			||||||
 | 
					Comment[ug]=گىنوم ئاچقۇچ ھالقىسى:SSH  ياردەمچىسى
 | 
				
			||||||
 | 
					Comment[uk]=Служба в'язки ключів GNOME: агент SSH
 | 
				
			||||||
 | 
					Comment[vi]=Chùm chìa khóa GNOME: Đại diện SSH
 | 
				
			||||||
 | 
					Comment[zh_CN]=GNOME 密钥环:SSH 代理
 | 
				
			||||||
 | 
					Comment[zh_HK]=GNOME 密碼匙圈:SSH 代理程式
 | 
				
			||||||
 | 
					Comment[zh_TW]=GNOME 鑰匙圈:SSH 代理程式
 | 
				
			||||||
 | 
					Comment=GNOME Keyring: SSH Agent
 | 
				
			||||||
 | 
					Exec=/usr/bin/gnome-keyring-daemon --start --components=ssh
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Phase=PreDisplayServer
 | 
				
			||||||
 | 
					X-GNOME-AutoRestart=false
 | 
				
			||||||
 | 
					X-GNOME-Autostart-Notify=true
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Bugzilla=GNOME
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Product=gnome-keyring
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Component=general
 | 
				
			||||||
 | 
					X-GNOME-Bugzilla-Version=40.0
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,7 @@
 | 
				
			||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					Exec=/home/liveuser/.local/userbin/key-sign.sh
 | 
				
			||||||
 | 
					Icon=
 | 
				
			||||||
 | 
					Name=key-sign.sh
 | 
				
			||||||
 | 
					Path=
 | 
				
			||||||
 | 
					Terminal=False
 | 
				
			||||||
 | 
					Type=Application
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,34 @@
 | 
				
			||||||
 | 
					[Misc]
 | 
				
			||||||
 | 
					version=13
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Show]
 | 
				
			||||||
 | 
					channels=false
 | 
				
			||||||
 | 
					comment=false
 | 
				
			||||||
 | 
					contentCreated=false
 | 
				
			||||||
 | 
					contentSize=false
 | 
				
			||||||
 | 
					created=false
 | 
				
			||||||
 | 
					depends=false
 | 
				
			||||||
 | 
					embeddedRating=false
 | 
				
			||||||
 | 
					fileName=false
 | 
				
			||||||
 | 
					fileSize=false
 | 
				
			||||||
 | 
					height=false
 | 
				
			||||||
 | 
					kfileitem#group=false
 | 
				
			||||||
 | 
					kfileitem#owner=false
 | 
				
			||||||
 | 
					kfileitem#permissions=false
 | 
				
			||||||
 | 
					lastModified=false
 | 
				
			||||||
 | 
					lyrics=false
 | 
				
			||||||
 | 
					mimeType=false
 | 
				
			||||||
 | 
					photoGpsLatitude=false
 | 
				
			||||||
 | 
					photoGpsLongitude=false
 | 
				
			||||||
 | 
					photoMeteringMode=false
 | 
				
			||||||
 | 
					photoPixelXDimension=false
 | 
				
			||||||
 | 
					photoPixelYDimension=false
 | 
				
			||||||
 | 
					photoSaturation=false
 | 
				
			||||||
 | 
					photoSharpness=false
 | 
				
			||||||
 | 
					photoWhiteBalance=false
 | 
				
			||||||
 | 
					replayGainAlbumGain=false
 | 
				
			||||||
 | 
					replayGainAlbumPeak=false
 | 
				
			||||||
 | 
					replayGainTrackGain=false
 | 
				
			||||||
 | 
					replayGainTrackPeak=false
 | 
				
			||||||
 | 
					url=false
 | 
				
			||||||
 | 
					width=false
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,4 @@
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					dbVersion=2
 | 
				
			||||||
 | 
					exclude filters=*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,qrc_*.cpp,ui_*.h,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.gcode,.ninja_deps,.ninja_log,build.ninja,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,*.swp,*.swap,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.map,*.so,*.a,*.db,*.qrc,*.ini,*.init,*.img,*.vdi,*.vbox*,vbox.log,*.qcow2,*.vmdk,*.vhd,*.vhdx,*.sql,*.sql.gz,*.ytdl,*.class,*.pyc,*.pyo,*.elc,*.qmlc,*.jsc,*.fastq,*.fq,*.gb,*.fasta,*.fna,*.gbff,*.faa,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,.moc,.obj,.pch,.uic,.npm,.yarn,.yarn-cache,__pycache__,node_modules,node_packages,nbproject,.venv,venv,core-dumps,lost+found
 | 
				
			||||||
 | 
					exclude filters version=8
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					MenuBar=Disabled
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=dolphin_detailsmodesettings.upd:rename-leading-padding,dolphin_detailsmodesettings.upd:move-content-display
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[DetailsMode]
 | 
				
			||||||
 | 
					PreviewSize=32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					OpenExternallyCalledFolderInNewTab=true
 | 
				
			||||||
 | 
					Version=202
 | 
				
			||||||
 | 
					ViewPropsTimestamp=2023,10,4,10,12,41.001
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[KFileDialog Settings]
 | 
				
			||||||
 | 
					Places Icons Auto-resize=false
 | 
				
			||||||
 | 
					Places Icons Static Size=22
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[KPropertiesDialog]
 | 
				
			||||||
 | 
					1920x1080 screen: Height=543
 | 
				
			||||||
 | 
					1920x1080 screen: Width=492
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MainWindow]
 | 
				
			||||||
 | 
					MenuBar=Disabled
 | 
				
			||||||
 | 
					ToolBarsMovable=Disabled
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PreviewSettings]
 | 
				
			||||||
 | 
					Plugins=appimagethumbnail,opendocumentthumbnail,kraorathumbnail,audiothumbnail,imagethumbnail,exrthumbnail,jpegthumbnail,windowsimagethumbnail,svgthumbnail,windowsexethumbnail,comicbookthumbnail,directorythumbnail,djvuthumbnail,cursorthumbnail,fontthumbnail,ebookthumbnail
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,28 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.2 KiB  | 
| 
						 | 
					@ -0,0 +1,28 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.2 KiB  | 
| 
						 | 
					@ -0,0 +1,28 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#da4453" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.2 KiB  | 
| 
						 | 
					@ -0,0 +1,22 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.0 KiB  | 
| 
						 | 
					@ -0,0 +1,28 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#ff98a2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.2 KiB  | 
| 
						 | 
					@ -0,0 +1,22 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.0 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 971 B  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 971 B  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 958 B  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 958 B  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#6e7175" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#4e5358" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#a1a9b1" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#2a2e32" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#a1a9b1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 970 B  | 
| 
						 | 
					@ -0,0 +1,27 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="#fcfcfc" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<circle cx="9" cy="9" r="9"/>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#31363b" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.1 KiB  | 
| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
				
			||||||
 | 
					<svg viewBox="0 0 50 50"
 | 
				
			||||||
 | 
					 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  version="1.2" baseProfile="tiny">
 | 
				
			||||||
 | 
					<title>Qt SVG Document</title>
 | 
				
			||||||
 | 
					<desc>Generated with Qt</desc>
 | 
				
			||||||
 | 
					<defs>
 | 
				
			||||||
 | 
					</defs>
 | 
				
			||||||
 | 
					<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#fcfcfc" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
 | 
				
			||||||
 | 
					font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal" 
 | 
				
			||||||
 | 
					>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</g>
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 970 B  | 
| 
						 | 
					@ -0,0 +1,84 @@
 | 
				
			||||||
 | 
					@define-color borders_breeze #5b5b5b;
 | 
				
			||||||
 | 
					@define-color content_view_bg_breeze #464646;
 | 
				
			||||||
 | 
					@define-color error_color_backdrop_breeze #cb505d;
 | 
				
			||||||
 | 
					@define-color error_color_breeze #da4453;
 | 
				
			||||||
 | 
					@define-color error_color_insensitive_backdrop_breeze #744247;
 | 
				
			||||||
 | 
					@define-color error_color_insensitive_breeze #744247;
 | 
				
			||||||
 | 
					@define-color insensitive_base_color_breeze #434343;
 | 
				
			||||||
 | 
					@define-color insensitive_base_fg_color_breeze #646464;
 | 
				
			||||||
 | 
					@define-color insensitive_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_borders_breeze #474747;
 | 
				
			||||||
 | 
					@define-color insensitive_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_selected_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_selected_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color link_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color link_visited_color_breeze #ce80ff;
 | 
				
			||||||
 | 
					@define-color success_color_backdrop_breeze #318654;
 | 
				
			||||||
 | 
					@define-color success_color_breeze #1e884a;
 | 
				
			||||||
 | 
					@define-color success_color_insensitive_backdrop_breeze #355944;
 | 
				
			||||||
 | 
					@define-color success_color_insensitive_breeze #355944;
 | 
				
			||||||
 | 
					@define-color theme_base_color_breeze #464646;
 | 
				
			||||||
 | 
					@define-color theme_bg_color_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_button_background_backdrop_breeze #515151;
 | 
				
			||||||
 | 
					@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
 | 
				
			||||||
 | 
					@define-color theme_button_background_insensitive_breeze #4c4c4c;
 | 
				
			||||||
 | 
					@define-color theme_button_background_normal_breeze #505050;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_backdrop_breeze #5a98b6;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_backdrop_breeze #5a98b6;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_backdrop_breeze #a0aaae;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_breeze #ffffff;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_insensitive_breeze #616161;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_insensitive_breeze #4c6e76;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_normal_breeze #50b4ce;
 | 
				
			||||||
 | 
					@define-color theme_fg_color_breeze #aaaaaa;
 | 
				
			||||||
 | 
					@define-color theme_header_background_backdrop_breeze #2c3034;
 | 
				
			||||||
 | 
					@define-color theme_header_background_breeze #3c3c3c;
 | 
				
			||||||
 | 
					@define-color theme_header_background_light_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_hovering_selected_bg_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_selected_bg_color_breeze #4a809b;
 | 
				
			||||||
 | 
					@define-color theme_selected_fg_color_breeze #ffffff;
 | 
				
			||||||
 | 
					@define-color theme_text_color_breeze #aaaaaa;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_backdrop_breeze #2c3034;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_breeze #3c3c3c;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_light_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_base_color_breeze #474747;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_bg_color_breeze #424242;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_fg_color_breeze #a8a8a8;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_bg_color_alt_breeze #37515e;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_bg_color_breeze #37515e;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_fg_color_breeze #a0aaae;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_text_color_breeze #a8a8a8;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_view_bg_color_breeze #434343;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_view_text_color_breeze #646464;
 | 
				
			||||||
 | 
					@define-color theme_view_active_decoration_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_view_hover_decoration_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color tooltip_background_breeze #1d6c8b;
 | 
				
			||||||
 | 
					@define-color tooltip_border_breeze #48839a;
 | 
				
			||||||
 | 
					@define-color tooltip_text_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color unfocused_borders_breeze #5c5c5c;
 | 
				
			||||||
 | 
					@define-color unfocused_insensitive_borders_breeze #474747;
 | 
				
			||||||
 | 
					@define-color warning_color_backdrop_breeze #e77b1a;
 | 
				
			||||||
 | 
					@define-color warning_color_breeze #f67400;
 | 
				
			||||||
 | 
					@define-color warning_color_insensitive_backdrop_breeze #7d522b;
 | 
				
			||||||
 | 
					@define-color warning_color_insensitive_breeze #7d522b;
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					@import 'colors.css';
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,15 @@
 | 
				
			||||||
 | 
					[Settings]
 | 
				
			||||||
 | 
					gtk-application-prefer-dark-theme=true
 | 
				
			||||||
 | 
					gtk-button-images=true
 | 
				
			||||||
 | 
					gtk-cursor-theme-name=Melawy-red-light-default-cursors
 | 
				
			||||||
 | 
					gtk-cursor-theme-size=24
 | 
				
			||||||
 | 
					gtk-decoration-layout=icon:minimize,maximize,close
 | 
				
			||||||
 | 
					gtk-enable-animations=true
 | 
				
			||||||
 | 
					gtk-font-name=Noto Sans,  10
 | 
				
			||||||
 | 
					gtk-icon-theme-name=Melawy-blue-dark
 | 
				
			||||||
 | 
					gtk-menu-images=true
 | 
				
			||||||
 | 
					gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
 | 
				
			||||||
 | 
					gtk-primary-button-warps-slider=false
 | 
				
			||||||
 | 
					gtk-theme-name=Fluent-round-Dark-compact
 | 
				
			||||||
 | 
					gtk-toolbar-style=3
 | 
				
			||||||
 | 
					gtk-xft-dpi=98304
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,84 @@
 | 
				
			||||||
 | 
					@define-color borders_breeze #5b5b5b;
 | 
				
			||||||
 | 
					@define-color content_view_bg_breeze #464646;
 | 
				
			||||||
 | 
					@define-color error_color_backdrop_breeze #cb505d;
 | 
				
			||||||
 | 
					@define-color error_color_breeze #da4453;
 | 
				
			||||||
 | 
					@define-color error_color_insensitive_backdrop_breeze #744247;
 | 
				
			||||||
 | 
					@define-color error_color_insensitive_breeze #744247;
 | 
				
			||||||
 | 
					@define-color insensitive_base_color_breeze #434343;
 | 
				
			||||||
 | 
					@define-color insensitive_base_fg_color_breeze #646464;
 | 
				
			||||||
 | 
					@define-color insensitive_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_borders_breeze #474747;
 | 
				
			||||||
 | 
					@define-color insensitive_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_selected_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_selected_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_selected_bg_color_breeze #3e3e3e;
 | 
				
			||||||
 | 
					@define-color insensitive_unfocused_selected_fg_color_breeze #616161;
 | 
				
			||||||
 | 
					@define-color link_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color link_visited_color_breeze #ce80ff;
 | 
				
			||||||
 | 
					@define-color success_color_backdrop_breeze #318654;
 | 
				
			||||||
 | 
					@define-color success_color_breeze #1e884a;
 | 
				
			||||||
 | 
					@define-color success_color_insensitive_backdrop_breeze #355944;
 | 
				
			||||||
 | 
					@define-color success_color_insensitive_breeze #355944;
 | 
				
			||||||
 | 
					@define-color theme_base_color_breeze #464646;
 | 
				
			||||||
 | 
					@define-color theme_bg_color_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_button_background_backdrop_breeze #515151;
 | 
				
			||||||
 | 
					@define-color theme_button_background_backdrop_insensitive_breeze #4c4c4c;
 | 
				
			||||||
 | 
					@define-color theme_button_background_insensitive_breeze #4c4c4c;
 | 
				
			||||||
 | 
					@define-color theme_button_background_normal_breeze #505050;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_backdrop_breeze #5a98b6;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_focus_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_backdrop_breeze #5a98b6;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_button_decoration_hover_insensitive_breeze #4b6572;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_backdrop_breeze #a0aaae;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_backdrop_insensitive_breeze #616161;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_breeze #ffffff;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_active_insensitive_breeze #616161;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_backdrop_breeze #5fb1c6;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_backdrop_insensitive_breeze #4c6e76;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_insensitive_breeze #4c6e76;
 | 
				
			||||||
 | 
					@define-color theme_button_foreground_normal_breeze #50b4ce;
 | 
				
			||||||
 | 
					@define-color theme_fg_color_breeze #aaaaaa;
 | 
				
			||||||
 | 
					@define-color theme_header_background_backdrop_breeze #2c3034;
 | 
				
			||||||
 | 
					@define-color theme_header_background_breeze #3c3c3c;
 | 
				
			||||||
 | 
					@define-color theme_header_background_light_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_insensitive_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_header_foreground_insensitive_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_hovering_selected_bg_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_selected_bg_color_breeze #4a809b;
 | 
				
			||||||
 | 
					@define-color theme_selected_fg_color_breeze #ffffff;
 | 
				
			||||||
 | 
					@define-color theme_text_color_breeze #aaaaaa;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_backdrop_breeze #2c3034;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_breeze #3c3c3c;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_background_light_breeze #414141;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_titlebar_foreground_insensitive_breeze #f7f7f7;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_base_color_breeze #474747;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_bg_color_breeze #424242;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_fg_color_breeze #a8a8a8;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_bg_color_alt_breeze #37515e;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_bg_color_breeze #37515e;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_selected_fg_color_breeze #a0aaae;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_text_color_breeze #a8a8a8;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_view_bg_color_breeze #434343;
 | 
				
			||||||
 | 
					@define-color theme_unfocused_view_text_color_breeze #646464;
 | 
				
			||||||
 | 
					@define-color theme_view_active_decoration_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color theme_view_hover_decoration_color_breeze #4d9ac0;
 | 
				
			||||||
 | 
					@define-color tooltip_background_breeze #1d6c8b;
 | 
				
			||||||
 | 
					@define-color tooltip_border_breeze #48839a;
 | 
				
			||||||
 | 
					@define-color tooltip_text_breeze #c8c8c8;
 | 
				
			||||||
 | 
					@define-color unfocused_borders_breeze #5c5c5c;
 | 
				
			||||||
 | 
					@define-color unfocused_insensitive_borders_breeze #474747;
 | 
				
			||||||
 | 
					@define-color warning_color_backdrop_breeze #e77b1a;
 | 
				
			||||||
 | 
					@define-color warning_color_breeze #f67400;
 | 
				
			||||||
 | 
					@define-color warning_color_insensitive_backdrop_breeze #7d522b;
 | 
				
			||||||
 | 
					@define-color warning_color_insensitive_breeze #7d522b;
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					@import 'colors.css';
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,12 @@
 | 
				
			||||||
 | 
					[Settings]
 | 
				
			||||||
 | 
					gtk-application-prefer-dark-theme=true
 | 
				
			||||||
 | 
					gtk-cursor-theme-name=Melawy-red-light-default-cursors
 | 
				
			||||||
 | 
					gtk-cursor-theme-size=24
 | 
				
			||||||
 | 
					gtk-decoration-layout=icon:minimize,maximize,close
 | 
				
			||||||
 | 
					gtk-enable-animations=true
 | 
				
			||||||
 | 
					gtk-font-name=Noto Sans,  10
 | 
				
			||||||
 | 
					gtk-icon-theme-name=Melawy-blue-dark
 | 
				
			||||||
 | 
					gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
 | 
				
			||||||
 | 
					gtk-primary-button-warps-slider=false
 | 
				
			||||||
 | 
					gtk-theme-name=Fluent-round-Dark-compact
 | 
				
			||||||
 | 
					gtk-xft-dpi=98304
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					# created by KDE Plasma, сб окт. 21 19:12:03 2023
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,5 @@
 | 
				
			||||||
 | 
					# created by KDE Plasma, сб окт. 21 19:12:03 2023
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					gtk-alternative-button-order = 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,11 @@
 | 
				
			||||||
 | 
					[Favorites-org.kde.plasma.kicker.favorites.instance-25-84c85f49-02a4-464c-9302-b31556fcbbb7]
 | 
				
			||||||
 | 
					ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:ar.com.softwareperonista.Pace.desktop,applications:gparted.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:org.kde.kate.desktop,applications:skypeforlinux.desktop,applications:org.telegram.desktop.desktop,applications:discord.desktop,applications:Zoom.desktop,applications:brave-browser.desktop,applications:google-chrome.desktop,applications:gimp.desktop,applications:org.inkscape.Inkscape.desktop,applications:com.obsproject.Studio.desktop,applications:code.desktop,applications:org.kde.kleopatra.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kcalc.desktop,applications:blender.desktop,applications:org.kde.discover.desktop,applications:melawy-welcome.desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Favorites-org.kde.plasma.kicker.favorites.instance-25-global]
 | 
				
			||||||
 | 
					ordering=applications:org.kde.dolphin.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,applications:ar.com.softwareperonista.Pace.desktop,applications:gparted.desktop,applications:firefoxdeveloperedition.desktop,applications:firefox.desktop,applications:org.kde.kate.desktop,applications:skypeforlinux.desktop,applications:org.telegram.desktop.desktop,applications:discord.desktop,applications:Zoom.desktop,applications:brave-browser.desktop,applications:google-chrome.desktop,applications:gimp.desktop,applications:org.inkscape.Inkscape.desktop,applications:com.obsproject.Studio.desktop,applications:code.desktop,applications:org.kde.kleopatra.desktop,applications:org.kde.konsole.desktop,applications:org.kde.kcalc.desktop,applications:blender.desktop,applications:org.kde.discover.desktop,applications:melawy-welcome.desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Favorites-org.kde.plasma.kickoff.favorites.instance-3-84c85f49-02a4-464c-9302-b31556fcbbb7]
 | 
				
			||||||
 | 
					ordering=preferred://browser,applications:systemsettings.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.kate.desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Favorites-org.kde.plasma.kickoff.favorites.instance-3-global]
 | 
				
			||||||
 | 
					ordering=preferred://browser,applications:systemsettings.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.kate.desktop
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,5 @@
 | 
				
			||||||
 | 
					[activities]
 | 
				
			||||||
 | 
					84c85f49-02a4-464c-9302-b31556fcbbb7=Начальная комната
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[main]
 | 
				
			||||||
 | 
					currentActivity=84c85f49-02a4-464c-9302-b31556fcbbb7
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,9 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0.upd:kcminputrc_fix_botched_5_21_0,kcminputrc_repeat.upd:kcminputrc_migrate_key_repeat
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Mouse]
 | 
				
			||||||
 | 
					X11LibInputXAccelProfileFlat=true
 | 
				
			||||||
 | 
					cursorTheme=Melawy-red-light-default-cursors
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tmp]
 | 
				
			||||||
 | 
					update_info=delete_cursor_old_default_size.upd:DeleteCursorOldDefaultSize
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,189 @@
 | 
				
			||||||
 | 
					updateInfoAdded=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ark.upd]
 | 
				
			||||||
 | 
					ctime=1697308835
 | 
				
			||||||
 | 
					done=add-hamburgermenu-to-toolbar
 | 
				
			||||||
 | 
					mtime=1697306599
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[breezehighcontrasttobreezedark.upd]
 | 
				
			||||||
 | 
					ctime=1696223326
 | 
				
			||||||
 | 
					done=BreezeHighContrastToBreezeDark
 | 
				
			||||||
 | 
					mtime=1696158329
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[breezetobreezeclassic.upd]
 | 
				
			||||||
 | 
					ctime=1696223326
 | 
				
			||||||
 | 
					done=BreezeToBreezeClassic
 | 
				
			||||||
 | 
					mtime=1696158329
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[breezetobreezelight.upd]
 | 
				
			||||||
 | 
					ctime=1696223326
 | 
				
			||||||
 | 
					done=BreezeToBreezeLight
 | 
				
			||||||
 | 
					mtime=1696158329
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[delete_cursor_old_default_size.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=DeleteCursorOldDefaultSize
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[disable_kmix.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=PlasmaVolume_DisableKMixAutostart
 | 
				
			||||||
 | 
					mtime=1696115147
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[dolphin_detailsmodesettings.upd]
 | 
				
			||||||
 | 
					ctime=1697117789
 | 
				
			||||||
 | 
					done=rename-leading-padding,move-content-display
 | 
				
			||||||
 | 
					mtime=1697008884
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[filepicker.upd]
 | 
				
			||||||
 | 
					ctime=1697808175
 | 
				
			||||||
 | 
					done=filepicker-remove-old-previews-entry
 | 
				
			||||||
 | 
					mtime=1697115550
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[fonts_akregator.upd]
 | 
				
			||||||
 | 
					ctime=1696223327
 | 
				
			||||||
 | 
					done=Plasma_Fonts_Akregator
 | 
				
			||||||
 | 
					mtime=1696154704
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[fonts_global.upd]
 | 
				
			||||||
 | 
					ctime=1696223327
 | 
				
			||||||
 | 
					done=Fonts_Global
 | 
				
			||||||
 | 
					mtime=1696154704
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[fonts_global_toolbar.upd]
 | 
				
			||||||
 | 
					ctime=1696223327
 | 
				
			||||||
 | 
					done=Fonts_Global_Toolbar
 | 
				
			||||||
 | 
					mtime=1696154704
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[fonts_kate.upd]
 | 
				
			||||||
 | 
					ctime=1696223327
 | 
				
			||||||
 | 
					done=Plasma_Fonts_Kate
 | 
				
			||||||
 | 
					mtime=1696154704
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[gtkconfig.upd]
 | 
				
			||||||
 | 
					ctime=1696152407
 | 
				
			||||||
 | 
					done=gtk_theme,dont_use_gtk_css_for_window_decorations,remove_deprecated_gtk4_option
 | 
				
			||||||
 | 
					mtime=1696145026
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[gwenview.upd]
 | 
				
			||||||
 | 
					ctime=1697117790
 | 
				
			||||||
 | 
					done=SideBar_StatusBar_Rename,ImageView_AlphaBackgroundMode_Update,DeleteThumbnailSetting_Rename
 | 
				
			||||||
 | 
					mtime=1697013456
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[icons_remove_effects.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=IconsRemoveEffects
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[katesession_migration.upd]
 | 
				
			||||||
 | 
					ctime=1697117790
 | 
				
			||||||
 | 
					done=migrate_kate_sessions_applet_to_kdeplasma-addons
 | 
				
			||||||
 | 
					mtime=1697020160
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kcalcrc.upd]
 | 
				
			||||||
 | 
					ctime=1697117790
 | 
				
			||||||
 | 
					mtime=1697020374
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kcm_rename_plasma_desktop.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=5.24PlasmaDesktopKCMRename
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kcminputrc_fix_botched_5_21_0.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=kcminputrc_fix_botched_5_21_0_pre,kcminputrc_fix_botched_5_21_0
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kcminputrc_repeat.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=kcminputrc_migrate_key_repeat
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kde4lightly.upd]
 | 
				
			||||||
 | 
					ctime=1694266410
 | 
				
			||||||
 | 
					done=5.0KDE4Lightly_2
 | 
				
			||||||
 | 
					mtime=1691947723
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kleopatra.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=kleopatra-15.08-kickoff
 | 
				
			||||||
 | 
					mtime=1697017823
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[konsole.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=konsole_globalaccel,add-hamburgermenu-to-toolbar
 | 
				
			||||||
 | 
					mtime=1697020908
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[krunnerglobalshortcuts2.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=5.22KRunnerGlobalShortcuts
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[krunnerhistory.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=5.21KRunnerHistory
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kscreenlocker.upd]
 | 
				
			||||||
 | 
					ctime=1696135728
 | 
				
			||||||
 | 
					done=0.1-autolock
 | 
				
			||||||
 | 
					mtime=1696111007
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ksmserver_update_loginMode_value.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=ksmserver_update_loginMode_value_default_enum
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kwin.upd]
 | 
				
			||||||
 | 
					ctime=1696756042
 | 
				
			||||||
 | 
					done=replace-scalein-with-scale,port-minimizeanimation-effect-to-js,port-scale-effect-to-js,port-dimscreen-effect-to-js,auto-bordersize,animation-speed,desktop-grid-click-behavior,no-swap-encourage,make-translucency-effect-disabled-by-default,remove-flip-switch-effect,remove-cover-switch-effect,remove-cubeslide-effect,remove-xrender-backend,enable-scale-effect-by-default,overview-group-plugin-id,animation-speed-cleanup,replace-cascaded-zerocornered
 | 
				
			||||||
 | 
					mtime=1696605783
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kwinrules.upd]
 | 
				
			||||||
 | 
					ctime=1696756042
 | 
				
			||||||
 | 
					done=replace-placement-string-to-enum,use-virtual-desktop-ids
 | 
				
			||||||
 | 
					mtime=1696605783
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kxkb.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=remove-empty-lists,add-back-resetoptions
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kxkb_variants.upd]
 | 
				
			||||||
 | 
					ctime=1696135731
 | 
				
			||||||
 | 
					done=split-variants
 | 
				
			||||||
 | 
					mtime=1696114932
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[okular.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=annotation-toolbar,builtin-annotations
 | 
				
			||||||
 | 
					mtime=1697013883
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[plasmashell-5.27-use-panel-thickness-in-default-group.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=plasmashell-5.27-use-panel-thickness-in-default-group
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[spectacle_clipboard.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=clipboard-settings-change
 | 
				
			||||||
 | 
					mtime=1697014081
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[spectacle_newConfig.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					mtime=1697014081
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[spectacle_rememberregion.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=spectacle-migrate-rememberregion
 | 
				
			||||||
 | 
					mtime=1697014081
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[spectacle_shortcuts.upd]
 | 
				
			||||||
 | 
					ctime=1697117793
 | 
				
			||||||
 | 
					done=spectacle-migrate-shortcuts
 | 
				
			||||||
 | 
					mtime=1697014081
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[style_widgetstyle_default_breeze.upd]
 | 
				
			||||||
 | 
					ctime=1696135729
 | 
				
			||||||
 | 
					done=StyleWidgetStyleDefaultBreeze
 | 
				
			||||||
 | 
					mtime=1696115357
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Module-device_automounter]
 | 
				
			||||||
 | 
					autoload=false
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Mouse]
 | 
				
			||||||
 | 
					cursorTheme=breeze_cursors
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,8 @@
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					ColorScheme=Melawy
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Icons]
 | 
				
			||||||
 | 
					Theme=breeze-dark
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[KDE]
 | 
				
			||||||
 | 
					widgetStyle=Breeze
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Greeter]
 | 
				
			||||||
 | 
					Theme=org.kde.breeze.desktop
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					[KSplash]
 | 
				
			||||||
 | 
					Engine=KSplashQML
 | 
				
			||||||
 | 
					Theme=org.kde.breeze.desktop
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,12 @@
 | 
				
			||||||
 | 
					[TabBox]
 | 
				
			||||||
 | 
					DesktopLayout=org.kde.breeze.desktop
 | 
				
			||||||
 | 
					DesktopListLayout=org.kde.breeze.desktop
 | 
				
			||||||
 | 
					LayoutName=org.kde.breeze.desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Windows]
 | 
				
			||||||
 | 
					Placement=Centered
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.kdecoration2]
 | 
				
			||||||
 | 
					NoPlugin=false
 | 
				
			||||||
 | 
					library=org.kde.breeze
 | 
				
			||||||
 | 
					theme=Breeze
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					org.kde.breezedark.desktop
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Theme]
 | 
				
			||||||
 | 
					name=default
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,167 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=filepicker.upd:filepicker-remove-old-previews-entry,fonts_global.upd:Fonts_Global,fonts_global_toolbar.upd:Fonts_Global_Toolbar,icons_remove_effects.upd:IconsRemoveEffects,kwin.upd:animation-speed,style_widgetstyle_default_breeze.upd:StyleWidgetStyleDefaultBreeze
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ColorEffects:Disabled]
 | 
				
			||||||
 | 
					ChangeSelectionColor=
 | 
				
			||||||
 | 
					Color=112,111,110
 | 
				
			||||||
 | 
					ColorAmount=0
 | 
				
			||||||
 | 
					ColorEffect=0
 | 
				
			||||||
 | 
					ContrastAmount=0.65
 | 
				
			||||||
 | 
					ContrastEffect=1
 | 
				
			||||||
 | 
					Enable=
 | 
				
			||||||
 | 
					IntensityAmount=0.1
 | 
				
			||||||
 | 
					IntensityEffect=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ColorEffects:Inactive]
 | 
				
			||||||
 | 
					ChangeSelectionColor=true
 | 
				
			||||||
 | 
					Color=112,111,110
 | 
				
			||||||
 | 
					ColorAmount=0.025
 | 
				
			||||||
 | 
					ColorEffect=2
 | 
				
			||||||
 | 
					ContrastAmount=0.1
 | 
				
			||||||
 | 
					ContrastEffect=2
 | 
				
			||||||
 | 
					Enable=true
 | 
				
			||||||
 | 
					IntensityAmount=0
 | 
				
			||||||
 | 
					IntensityEffect=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Button]
 | 
				
			||||||
 | 
					BackgroundAlternate=77,131,158
 | 
				
			||||||
 | 
					BackgroundNormal=80,80,80
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=80,180,206
 | 
				
			||||||
 | 
					ForegroundPositive=30,136,74
 | 
				
			||||||
 | 
					ForegroundVisited=206,128,255
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Complementary]
 | 
				
			||||||
 | 
					BackgroundAlternate=30,87,116
 | 
				
			||||||
 | 
					BackgroundNormal=60,60,60
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=252,252,252
 | 
				
			||||||
 | 
					ForegroundPositive=39,174,96
 | 
				
			||||||
 | 
					ForegroundVisited=155,89,182
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Header]
 | 
				
			||||||
 | 
					BackgroundAlternate=90,90,90
 | 
				
			||||||
 | 
					BackgroundNormal=60,60,60
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=200,200,200
 | 
				
			||||||
 | 
					ForegroundPositive=39,174,96
 | 
				
			||||||
 | 
					ForegroundVisited=155,89,182
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Header][Inactive]
 | 
				
			||||||
 | 
					BackgroundAlternate=49,54,59
 | 
				
			||||||
 | 
					BackgroundNormal=42,46,50
 | 
				
			||||||
 | 
					DecorationFocus=61,174,233
 | 
				
			||||||
 | 
					DecorationHover=61,174,233
 | 
				
			||||||
 | 
					ForegroundActive=61,174,233
 | 
				
			||||||
 | 
					ForegroundInactive=161,169,177
 | 
				
			||||||
 | 
					ForegroundLink=29,153,243
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=252,252,252
 | 
				
			||||||
 | 
					ForegroundPositive=39,174,96
 | 
				
			||||||
 | 
					ForegroundVisited=155,89,182
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Selection]
 | 
				
			||||||
 | 
					BackgroundAlternate=74,128,155
 | 
				
			||||||
 | 
					BackgroundNormal=74,128,155
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=255,255,255
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=255,255,255
 | 
				
			||||||
 | 
					ForegroundPositive=30,136,74
 | 
				
			||||||
 | 
					ForegroundVisited=206,128,255
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Tooltip]
 | 
				
			||||||
 | 
					BackgroundAlternate=60,60,60
 | 
				
			||||||
 | 
					BackgroundNormal=29,108,139
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=200,200,200
 | 
				
			||||||
 | 
					ForegroundPositive=30,136,74
 | 
				
			||||||
 | 
					ForegroundVisited=206,128,255
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:View]
 | 
				
			||||||
 | 
					BackgroundAlternate=75,75,75
 | 
				
			||||||
 | 
					BackgroundNormal=70,70,70
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=170,170,170
 | 
				
			||||||
 | 
					ForegroundPositive=30,136,74
 | 
				
			||||||
 | 
					ForegroundVisited=206,128,255
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors:Window]
 | 
				
			||||||
 | 
					BackgroundAlternate=60,60,60
 | 
				
			||||||
 | 
					BackgroundNormal=65,65,65
 | 
				
			||||||
 | 
					DecorationFocus=77,154,192
 | 
				
			||||||
 | 
					DecorationHover=77,154,192
 | 
				
			||||||
 | 
					ForegroundActive=77,154,192
 | 
				
			||||||
 | 
					ForegroundInactive=170,170,170
 | 
				
			||||||
 | 
					ForegroundLink=77,154,192
 | 
				
			||||||
 | 
					ForegroundNegative=218,68,83
 | 
				
			||||||
 | 
					ForegroundNeutral=246,116,0
 | 
				
			||||||
 | 
					ForegroundNormal=170,170,170
 | 
				
			||||||
 | 
					ForegroundPositive=30,136,74
 | 
				
			||||||
 | 
					ForegroundVisited=206,128,255
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					AccentColor=77,154,192
 | 
				
			||||||
 | 
					ColorSchemeHash=a0b6db6b94022a92715b668c12281ffe0e4e01b3
 | 
				
			||||||
 | 
					Name[ru_RU]=Breeze, светлый вариант
 | 
				
			||||||
 | 
					Name=Breeze Light
 | 
				
			||||||
 | 
					accentColorFromWallpaper=true
 | 
				
			||||||
 | 
					shadeSortColumn=true
 | 
				
			||||||
 | 
					widgetStyle=Breeze
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Icons]
 | 
				
			||||||
 | 
					Theme=Melawy-blue-dark
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[KDE]
 | 
				
			||||||
 | 
					ColorScheme=BreezeLight
 | 
				
			||||||
 | 
					LookAndFeelPackage=org.kde.breezedark.desktop
 | 
				
			||||||
 | 
					ShowDeleteCommand=false
 | 
				
			||||||
 | 
					SingleClick=false
 | 
				
			||||||
 | 
					contrast=4
 | 
				
			||||||
 | 
					widgetStyle=kvantum-dark
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[PreviewSettings]
 | 
				
			||||||
 | 
					MaximumRemoteSize=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[WM]
 | 
				
			||||||
 | 
					activeBackground=61,61,62
 | 
				
			||||||
 | 
					activeBlend=62,62,62
 | 
				
			||||||
 | 
					activeForeground=150,150,150
 | 
				
			||||||
 | 
					inactiveBackground=61,61,62
 | 
				
			||||||
 | 
					inactiveBlend=62,62,62
 | 
				
			||||||
 | 
					inactiveForeground=155,155,155
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,299 @@
 | 
				
			||||||
 | 
					[ActivityManager]
 | 
				
			||||||
 | 
					_k_friendly_name=Диспетчер комнат
 | 
				
			||||||
 | 
					switch-to-activity-357d5349-fd6a-4e36-8d43-33270dc1e4c5=none,none,Переключиться на комнату «Начальная комната»
 | 
				
			||||||
 | 
					switch-to-activity-84c85f49-02a4-464c-9302-b31556fcbbb7=none,none,Переключиться на комнату «Начальная комната»
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[KDE Keyboard Layout Switcher]
 | 
				
			||||||
 | 
					Switch to Next Keyboard Layout=Meta+Alt+K,none,Выбрать следующую раскладку клавиатуры
 | 
				
			||||||
 | 
					_k_friendly_name=Переключение раскладки клавиатуры
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kaccess]
 | 
				
			||||||
 | 
					Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Включить/выключить зачитывание с экрана
 | 
				
			||||||
 | 
					_k_friendly_name=Специальные возможности
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kcm_touchpad]
 | 
				
			||||||
 | 
					Disable Touchpad=Touchpad Off,Touchpad Off,Выключить сенсорную панель
 | 
				
			||||||
 | 
					Enable Touchpad=Touchpad On,Touchpad On,Включить сенсорную панель
 | 
				
			||||||
 | 
					Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Включить или выключить сенсорную панель
 | 
				
			||||||
 | 
					_k_friendly_name=Сенсорная панель
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kded5]
 | 
				
			||||||
 | 
					Show System Activity=Ctrl+Esc,Ctrl+Esc,Показать активность системы
 | 
				
			||||||
 | 
					_k_friendly_name=KDE Daemon
 | 
				
			||||||
 | 
					display=Display\tMeta+P,Display\tMeta+P,Сменить экран
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[khotkeys]
 | 
				
			||||||
 | 
					_k_friendly_name=Служба пользовательских комбинаций клавиш
 | 
				
			||||||
 | 
					{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Поиск
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kmix]
 | 
				
			||||||
 | 
					_k_friendly_name=Громкость
 | 
				
			||||||
 | 
					decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Уменьшить громкость микрофона
 | 
				
			||||||
 | 
					decrease_volume=Volume Down,Volume Down,Уменьшить громкость
 | 
				
			||||||
 | 
					increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Увеличить громкость микрофона
 | 
				
			||||||
 | 
					increase_volume=Volume Up,Volume Up,Увеличить громкость
 | 
				
			||||||
 | 
					mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Выключить микрофон
 | 
				
			||||||
 | 
					mute=Volume Mute,Volume Mute,Выключить звук
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ksmserver]
 | 
				
			||||||
 | 
					Halt Without Confirmation=none,,Выключить компьютер без подтверждения
 | 
				
			||||||
 | 
					Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Заблокировать сеанс
 | 
				
			||||||
 | 
					Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Завершить сеанс
 | 
				
			||||||
 | 
					Log Out Without Confirmation=none,,Завершить сеанс без подтверждения
 | 
				
			||||||
 | 
					Reboot Without Confirmation=none,,Перезагрузить компьютер без подтверждения
 | 
				
			||||||
 | 
					_k_friendly_name=Управление сеансами
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[kwin]
 | 
				
			||||||
 | 
					Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Активировать окно\\, требующее внимания
 | 
				
			||||||
 | 
					Decrease Opacity=none,,Уменьшить непрозрачность окна на 5%
 | 
				
			||||||
 | 
					Edit Tiles=Meta+T,Meta+T,Изменить раскладку мозаики окон
 | 
				
			||||||
 | 
					Expose=Ctrl+F9,Ctrl+F9,Показать все окна с текущего рабочего стола
 | 
				
			||||||
 | 
					ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Показать все окна со всех рабочих столов
 | 
				
			||||||
 | 
					ExposeClass=Ctrl+F7,Ctrl+F7,Показать окна одного класса
 | 
				
			||||||
 | 
					ExposeClassCurrentDesktop=none,none,Показать все окна одного класса с текущего рабочего стола
 | 
				
			||||||
 | 
					Increase Opacity=none,,Увеличить непрозрачность окна на 5%
 | 
				
			||||||
 | 
					Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Принудительно закрыть окно
 | 
				
			||||||
 | 
					MoveMouseToCenter=Meta+F6,Meta+F6,Переместить мышь в центр
 | 
				
			||||||
 | 
					MoveMouseToFocus=Meta+F5,Meta+F5,Переместить мышь в фокус ввода
 | 
				
			||||||
 | 
					MoveZoomDown=none,none,Переместить увеличенную область вниз
 | 
				
			||||||
 | 
					MoveZoomLeft=none,none,Переместить увеличенную область влево
 | 
				
			||||||
 | 
					MoveZoomRight=none,none,Переместить увеличенную область вправо
 | 
				
			||||||
 | 
					MoveZoomUp=none,none,Переместить увеличенную область вверх
 | 
				
			||||||
 | 
					Overview=Meta+W,Meta+W,Включить или отключить режим обзора
 | 
				
			||||||
 | 
					Setup Window Shortcut=none,,Задать комбинацию клавиш для переключения в это окно
 | 
				
			||||||
 | 
					Show Desktop=Meta+D,Meta+D,Взглянуть на рабочий стол
 | 
				
			||||||
 | 
					ShowDesktopGrid=Meta+F8,Meta+F8,Показать все рабочие столы
 | 
				
			||||||
 | 
					Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Приостановить композитное расширение
 | 
				
			||||||
 | 
					Switch One Desktop Down=none,Meta+Ctrl+Down,Переключиться на один рабочий стол вниз
 | 
				
			||||||
 | 
					Switch One Desktop Up=none,Meta+Ctrl+Up,Переключиться на один рабочий стол вверх
 | 
				
			||||||
 | 
					Switch One Desktop to the Left=none,Meta+Ctrl+Left,Переключиться на один рабочий стол влево
 | 
				
			||||||
 | 
					Switch One Desktop to the Right=none,Meta+Ctrl+Right,Переключиться на один рабочий стол вправо
 | 
				
			||||||
 | 
					Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Переключиться на окно снизу
 | 
				
			||||||
 | 
					Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Переключиться на окно слева
 | 
				
			||||||
 | 
					Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Переключиться на окно справа
 | 
				
			||||||
 | 
					Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Переключиться на окно сверху
 | 
				
			||||||
 | 
					Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Переключиться на рабочий стол 1
 | 
				
			||||||
 | 
					Switch to Desktop 10=none,,Переключиться на рабочий стол 10
 | 
				
			||||||
 | 
					Switch to Desktop 11=none,,Переключиться на рабочий стол 11
 | 
				
			||||||
 | 
					Switch to Desktop 12=none,,Переключиться на рабочий стол 12
 | 
				
			||||||
 | 
					Switch to Desktop 13=none,,Переключиться на рабочий стол 13
 | 
				
			||||||
 | 
					Switch to Desktop 14=none,,Переключиться на рабочий стол 14
 | 
				
			||||||
 | 
					Switch to Desktop 15=none,,Переключиться на рабочий стол 15
 | 
				
			||||||
 | 
					Switch to Desktop 16=none,,Переключиться на рабочий стол 16
 | 
				
			||||||
 | 
					Switch to Desktop 17=none,,Переключиться на рабочий стол 17
 | 
				
			||||||
 | 
					Switch to Desktop 18=none,,Переключиться на рабочий стол 18
 | 
				
			||||||
 | 
					Switch to Desktop 19=none,,Переключиться на рабочий стол 19
 | 
				
			||||||
 | 
					Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Переключиться на рабочий стол 2
 | 
				
			||||||
 | 
					Switch to Desktop 20=none,,Переключиться на рабочий стол 20
 | 
				
			||||||
 | 
					Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Переключиться на рабочий стол 3
 | 
				
			||||||
 | 
					Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Переключиться на рабочий стол 4
 | 
				
			||||||
 | 
					Switch to Desktop 5=none,,Переключиться на рабочий стол 5
 | 
				
			||||||
 | 
					Switch to Desktop 6=none,,Переключиться на рабочий стол 6
 | 
				
			||||||
 | 
					Switch to Desktop 7=none,,Переключиться на рабочий стол 7
 | 
				
			||||||
 | 
					Switch to Desktop 8=none,,Переключиться на рабочий стол 8
 | 
				
			||||||
 | 
					Switch to Desktop 9=none,,Переключиться на рабочий стол 9
 | 
				
			||||||
 | 
					Switch to Next Desktop=none,,Переключиться на следующий рабочий стол
 | 
				
			||||||
 | 
					Switch to Next Screen=none,,Переключиться на следующий экран
 | 
				
			||||||
 | 
					Switch to Previous Desktop=none,,Переключиться на предыдущий рабочий стол
 | 
				
			||||||
 | 
					Switch to Previous Screen=none,,Переключиться на предыдущий экран
 | 
				
			||||||
 | 
					Switch to Screen 0=none,,Переключиться на экран 0
 | 
				
			||||||
 | 
					Switch to Screen 1=none,,Переключиться на экран 1
 | 
				
			||||||
 | 
					Switch to Screen 2=none,,Переключиться на экран 2
 | 
				
			||||||
 | 
					Switch to Screen 3=none,,Переключиться на экран 3
 | 
				
			||||||
 | 
					Switch to Screen 4=none,,Переключиться на экран 4
 | 
				
			||||||
 | 
					Switch to Screen 5=none,,Переключиться на экран 5
 | 
				
			||||||
 | 
					Switch to Screen 6=none,,Переключиться на экран 6
 | 
				
			||||||
 | 
					Switch to Screen 7=none,,Переключиться на экран 7
 | 
				
			||||||
 | 
					Switch to Screen Above=none,,Переключиться на экран выше
 | 
				
			||||||
 | 
					Switch to Screen Below=none,,Переключиться на экран ниже
 | 
				
			||||||
 | 
					Switch to Screen to the Left=none,,Переключиться на экран слева
 | 
				
			||||||
 | 
					Switch to Screen to the Right=none,,Переключиться на экран справа
 | 
				
			||||||
 | 
					Toggle Night Color=none,none,Включить или отключить ночную цветовую схему
 | 
				
			||||||
 | 
					Toggle Window Raise/Lower=none,,Переключить передний/задний план
 | 
				
			||||||
 | 
					Walk Through Desktop List=none,,По списку рабочих столов вперёд
 | 
				
			||||||
 | 
					Walk Through Desktop List (Reverse)=none,,По списку рабочих столов назад
 | 
				
			||||||
 | 
					Walk Through Desktops=none,,На один рабочий стол вперёд
 | 
				
			||||||
 | 
					Walk Through Desktops (Reverse)=none,,На один рабочий стол назад
 | 
				
			||||||
 | 
					Walk Through Windows=Alt+Tab,Alt+Tab,На одно окно вперёд
 | 
				
			||||||
 | 
					Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Backtab,На одно окно назад
 | 
				
			||||||
 | 
					Walk Through Windows Alternative=none,,На одно окно вперёд (альтернативный режим)
 | 
				
			||||||
 | 
					Walk Through Windows Alternative (Reverse)=none,,На одно окно назад (альтернативный режим)
 | 
				
			||||||
 | 
					Walk Through Windows of Current Application=Alt+`,Alt+`,На одно окно вперёд текущего приложения
 | 
				
			||||||
 | 
					Walk Through Windows of Current Application (Reverse)=Alt+~,Alt+~,На одно окно назад текущего приложения
 | 
				
			||||||
 | 
					Walk Through Windows of Current Application Alternative=none,,На одно окно вперёд текущего приложения (альтернативный режим)
 | 
				
			||||||
 | 
					Walk Through Windows of Current Application Alternative (Reverse)=none,,На одно окно назад текущего приложения (альтернативный режим)
 | 
				
			||||||
 | 
					Window Above Other Windows=none,,Поместить окно на передний план
 | 
				
			||||||
 | 
					Window Below Other Windows=none,,Поместить окно на задний план
 | 
				
			||||||
 | 
					Window Close=Alt+F4,Alt+F4,Закрыть окно
 | 
				
			||||||
 | 
					Window Fullscreen=none,,Распахнуть окно на весь экран
 | 
				
			||||||
 | 
					Window Grow Horizontal=none,,Распахнуть окно по горизонтали
 | 
				
			||||||
 | 
					Window Grow Vertical=none,,Распахнуть окно по вертикали
 | 
				
			||||||
 | 
					Window Lower=none,,Опустить окно
 | 
				
			||||||
 | 
					Window Maximize=Meta+PgUp,Meta+PgUp,Распахнуть окно
 | 
				
			||||||
 | 
					Window Maximize Horizontal=none,,Распахнуть окно по горизонтали
 | 
				
			||||||
 | 
					Window Maximize Vertical=none,,Распахнуть окно по вертикали
 | 
				
			||||||
 | 
					Window Minimize=Meta+PgDown,Meta+PgDown,Свернуть окно
 | 
				
			||||||
 | 
					Window Move=none,,Переместить окно
 | 
				
			||||||
 | 
					Window Move Center=none,,Переместить окно в центр
 | 
				
			||||||
 | 
					Window No Border=none,,Скрыть или показать заголовок и границы окна
 | 
				
			||||||
 | 
					Window On All Desktops=none,,Поддерживать окно на всех рабочих столах
 | 
				
			||||||
 | 
					Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Окно на один рабочий стол вниз
 | 
				
			||||||
 | 
					Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Окно на один рабочий стол вверх
 | 
				
			||||||
 | 
					Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Окно на один рабочий стол влево
 | 
				
			||||||
 | 
					Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Окно на один рабочий стол вправо
 | 
				
			||||||
 | 
					Window One Screen Down=none,,Window One Screen Down
 | 
				
			||||||
 | 
					Window One Screen Up=none,,Window One Screen Up
 | 
				
			||||||
 | 
					Window One Screen to the Left=none,,Window One Screen to the Left
 | 
				
			||||||
 | 
					Window One Screen to the Right=none,,Window One Screen to the Right
 | 
				
			||||||
 | 
					Window Operations Menu=Alt+F3,Alt+F3,Меню действий с окном
 | 
				
			||||||
 | 
					Window Pack Down=none,,Переместить окно вниз
 | 
				
			||||||
 | 
					Window Pack Left=none,,Переместить окно влево
 | 
				
			||||||
 | 
					Window Pack Right=none,,Переместить окно вправо
 | 
				
			||||||
 | 
					Window Pack Up=none,,Переместить окно вверх
 | 
				
			||||||
 | 
					Window Quick Tile Bottom=Meta+Down,Meta+Down,Распахнуть окно на нижнюю половину экрана
 | 
				
			||||||
 | 
					Window Quick Tile Bottom Left=none,,Распахнуть окно на левую нижнюю четверть экрана
 | 
				
			||||||
 | 
					Window Quick Tile Bottom Right=none,,Распахнуть окно на правую нижнюю четверть экрана
 | 
				
			||||||
 | 
					Window Quick Tile Left=Meta+Left,Meta+Left,Распахнуть окно на левую половину экрана
 | 
				
			||||||
 | 
					Window Quick Tile Right=Meta+Right,Meta+Right,Распахнуть окно на правую половину экрана
 | 
				
			||||||
 | 
					Window Quick Tile Top=Meta+Up,Meta+Up,Распахнуть окно на верхнюю половину экрана
 | 
				
			||||||
 | 
					Window Quick Tile Top Left=none,,Распахнуть окно на левую верхнюю четверть экрана
 | 
				
			||||||
 | 
					Window Quick Tile Top Right=none,,Распахнуть окно на правую верхнюю четверть экрана
 | 
				
			||||||
 | 
					Window Raise=none,,Поднять окно
 | 
				
			||||||
 | 
					Window Resize=none,,Изменить размер окна
 | 
				
			||||||
 | 
					Window Shade=none,,Свернуть окно в заголовок
 | 
				
			||||||
 | 
					Window Shrink Horizontal=none,,Сжать окно по горизонтали
 | 
				
			||||||
 | 
					Window Shrink Vertical=none,,Сжать окно по вертикали
 | 
				
			||||||
 | 
					Window to Desktop 1=none,,Переместить окно на рабочий стол 1
 | 
				
			||||||
 | 
					Window to Desktop 10=none,,Переместить окно на рабочий стол 10
 | 
				
			||||||
 | 
					Window to Desktop 11=none,,Переместить окно на рабочий стол 11
 | 
				
			||||||
 | 
					Window to Desktop 12=none,,Переместить окно на рабочий стол 12
 | 
				
			||||||
 | 
					Window to Desktop 13=none,,Переместить окно на рабочий стол 13
 | 
				
			||||||
 | 
					Window to Desktop 14=none,,Переместить окно на рабочий стол 14
 | 
				
			||||||
 | 
					Window to Desktop 15=none,,Переместить окно на рабочий стол 15
 | 
				
			||||||
 | 
					Window to Desktop 16=none,,Переместить окно на рабочий стол 16
 | 
				
			||||||
 | 
					Window to Desktop 17=none,,Переместить окно на рабочий стол 17
 | 
				
			||||||
 | 
					Window to Desktop 18=none,,Переместить окно на рабочий стол 18
 | 
				
			||||||
 | 
					Window to Desktop 19=none,,Переместить окно на рабочий стол 19
 | 
				
			||||||
 | 
					Window to Desktop 2=none,,Переместить окно на рабочий стол 2
 | 
				
			||||||
 | 
					Window to Desktop 20=none,,Переместить окно на рабочий стол 20
 | 
				
			||||||
 | 
					Window to Desktop 3=none,,Переместить окно на рабочий стол 3
 | 
				
			||||||
 | 
					Window to Desktop 4=none,,Переместить окно на рабочий стол 4
 | 
				
			||||||
 | 
					Window to Desktop 5=none,,Переместить окно на рабочий стол 5
 | 
				
			||||||
 | 
					Window to Desktop 6=none,,Переместить окно на рабочий стол 6
 | 
				
			||||||
 | 
					Window to Desktop 7=none,,Переместить окно на рабочий стол 7
 | 
				
			||||||
 | 
					Window to Desktop 8=none,,Переместить окно на рабочий стол 8
 | 
				
			||||||
 | 
					Window to Desktop 9=none,,Переместить окно на рабочий стол 9
 | 
				
			||||||
 | 
					Window to Next Desktop=none,,Переместить окно на следующий рабочий стол
 | 
				
			||||||
 | 
					Window to Next Screen=Meta+Shift+Right,Meta+Shift+Right,Переместить окно на следующий экран
 | 
				
			||||||
 | 
					Window to Previous Desktop=none,,Переместить окно на предыдущий рабочий стол
 | 
				
			||||||
 | 
					Window to Previous Screen=Meta+Shift+Left,Meta+Shift+Left,Переместить окно на предыдущий экран
 | 
				
			||||||
 | 
					Window to Screen 0=none,,Переместить окно на экран 0
 | 
				
			||||||
 | 
					Window to Screen 1=none,,Переместить окно на экран 1
 | 
				
			||||||
 | 
					Window to Screen 2=none,,Переместить окно на экран 2
 | 
				
			||||||
 | 
					Window to Screen 3=none,,Переместить окно на экран 3
 | 
				
			||||||
 | 
					Window to Screen 4=none,,Переместить окно на экран 4
 | 
				
			||||||
 | 
					Window to Screen 5=none,,Переместить окно на экран 5
 | 
				
			||||||
 | 
					Window to Screen 6=none,,Переместить окно на экран 6
 | 
				
			||||||
 | 
					Window to Screen 7=none,,Переместить окно на экран 7
 | 
				
			||||||
 | 
					_k_friendly_name=KWin
 | 
				
			||||||
 | 
					view_actual_size=Meta+0,Meta+0,Фактический размер
 | 
				
			||||||
 | 
					view_zoom_in=Meta++\tMeta+=,Meta++,Увеличить
 | 
				
			||||||
 | 
					view_zoom_out=Meta+-,Meta+-,Уменьшить
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[mediacontrol]
 | 
				
			||||||
 | 
					_k_friendly_name=Управление медиапроигрывателем
 | 
				
			||||||
 | 
					mediavolumedown=none,none,Уменьшить громкость
 | 
				
			||||||
 | 
					mediavolumeup=none,none,Увеличить громкость
 | 
				
			||||||
 | 
					nextmedia=Media Next,Media Next,Перейти к следующей дорожке
 | 
				
			||||||
 | 
					pausemedia=Media Pause,Media Pause,Приостановить воспроизведение
 | 
				
			||||||
 | 
					playmedia=none,none,Начать воспроизведение
 | 
				
			||||||
 | 
					playpausemedia=Media Play,Media Play,Начать/приостановить воспроизведение
 | 
				
			||||||
 | 
					previousmedia=Media Previous,Media Previous,Перейти к предыдущей дорожке
 | 
				
			||||||
 | 
					stopmedia=Media Stop,Media Stop,Остановить воспроизведение
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.dolphin.desktop]
 | 
				
			||||||
 | 
					_k_friendly_name=Dolphin
 | 
				
			||||||
 | 
					_launch=Meta+E,Meta+E,Dolphin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.kcalc.desktop]
 | 
				
			||||||
 | 
					_k_friendly_name=KCalc
 | 
				
			||||||
 | 
					_launch=Launch (1),Launch (1),KCalc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.konsole.desktop]
 | 
				
			||||||
 | 
					NewTab=none,none,Открыть новую вкладку
 | 
				
			||||||
 | 
					NewWindow=none,none,Открыть новое окно
 | 
				
			||||||
 | 
					_k_friendly_name=Konsole
 | 
				
			||||||
 | 
					_launch=Ctrl+Alt+T,Ctrl+Alt+T,Konsole
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.krunner.desktop]
 | 
				
			||||||
 | 
					RunClipboard=Alt+Shift+F2,Alt+Shift+F2,Запустить команду из буфера обмена
 | 
				
			||||||
 | 
					_k_friendly_name=Открыть строку поиска и запуска KRunner
 | 
				
			||||||
 | 
					_launch=Alt+Space\tAlt+F2\tSearch,Alt+Space\tAlt+F2\tSearch,Открыть строку поиска и запуска KRunner
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.plasma.emojier.desktop]
 | 
				
			||||||
 | 
					_k_friendly_name=Панель выбора эмодзи
 | 
				
			||||||
 | 
					_launch=Meta+.\tMeta+Ctrl+Alt+Shift+Space,Meta+.\tMeta+Ctrl+Alt+Shift+Space,Панель выбора эмодзи
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.spectacle.desktop]
 | 
				
			||||||
 | 
					ActiveWindowScreenShot=Meta+Print,Meta+Print,Сделать снимок активного окна
 | 
				
			||||||
 | 
					CurrentMonitorScreenShot=none,none,Сделать снимок текущего экрана
 | 
				
			||||||
 | 
					FullScreenScreenShot=Shift+Print,Shift+Print,Сделать снимок всех экранов
 | 
				
			||||||
 | 
					OpenWithoutScreenshot=none,none,Запускать Spectacle без создания снимка
 | 
				
			||||||
 | 
					RectangularRegionScreenShot=Meta+Shift+Print,Meta+Shift+Print,Сделать снимок прямоугольной области экрана
 | 
				
			||||||
 | 
					WindowUnderCursorScreenShot=Meta+Ctrl+Print,Meta+Ctrl+Print,Создать снимок окна под курсором мыши
 | 
				
			||||||
 | 
					_k_friendly_name=Spectacle
 | 
				
			||||||
 | 
					_launch=Print,Print,Запустить Spectacle
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org_kde_powerdevil]
 | 
				
			||||||
 | 
					Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Уменьшить яркость подсветки клавиатуры
 | 
				
			||||||
 | 
					Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Уменьшить яркость экрана
 | 
				
			||||||
 | 
					Hibernate=Hibernate,Hibernate,Перейти в спящий режим
 | 
				
			||||||
 | 
					Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Увеличить яркость подсветки клавиатуры
 | 
				
			||||||
 | 
					Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Увеличить яркость экрана
 | 
				
			||||||
 | 
					PowerDown=Power Down,Power Down,Отключить питание
 | 
				
			||||||
 | 
					PowerOff=Power Off,Power Off,Выключить
 | 
				
			||||||
 | 
					Sleep=Sleep,Sleep,Перейти в ждущий режим
 | 
				
			||||||
 | 
					Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Сменить состояние подсветки клавиатуры
 | 
				
			||||||
 | 
					Turn Off Screen=none,none,Выключить монитор
 | 
				
			||||||
 | 
					_k_friendly_name=Управление питанием
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[plasmashell]
 | 
				
			||||||
 | 
					_k_friendly_name=Plasma
 | 
				
			||||||
 | 
					activate task manager entry 1=Meta+1,Meta+1,Открыть 1-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 10=none,Meta+0,Открыть 10-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 2=Meta+2,Meta+2,Открыть 2-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 3=Meta+3,Meta+3,Открыть 3-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 4=Meta+4,Meta+4,Открыть 4-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 5=Meta+5,Meta+5,Открыть 5-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 6=Meta+6,Meta+6,Открыть 6-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 7=Meta+7,Meta+7,Открыть 7-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 8=Meta+8,Meta+8,Открыть 8-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate task manager entry 9=Meta+9,Meta+9,Открыть 9-ю кнопку на панели задач
 | 
				
			||||||
 | 
					activate widget 23=Alt+F1,none,Сделать виджет «Menu11» активным
 | 
				
			||||||
 | 
					activate widget 25=none,none,Сделать виджет «Menu11» активным
 | 
				
			||||||
 | 
					clear-history=none,,Очистить журнал буфера обмена
 | 
				
			||||||
 | 
					clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Всплывающее меню автоматических действий
 | 
				
			||||||
 | 
					cycle-panels=Meta+Alt+P,Meta+Alt+P,Перемещение фокуса ввода с клавиатуры между панелями
 | 
				
			||||||
 | 
					cycleNextAction=none,,Следующая запись журнала
 | 
				
			||||||
 | 
					cyclePrevAction=none,,Предыдущая запись журнала
 | 
				
			||||||
 | 
					edit_clipboard=none,,Редактирование буфера обмена…
 | 
				
			||||||
 | 
					manage activities=Meta+Q,Meta+Q,Показать переключатель комнат
 | 
				
			||||||
 | 
					next activity=Meta+Tab,none,На одну комнату вперёд
 | 
				
			||||||
 | 
					previous activity=Meta+Shift+Tab,none,На одну комнату назад
 | 
				
			||||||
 | 
					repeat_action=Meta+Ctrl+R,Meta+Ctrl+R,Ручной выбор действия с буфером обмена
 | 
				
			||||||
 | 
					show dashboard=Ctrl+F12,Ctrl+F12,Показать рабочий стол
 | 
				
			||||||
 | 
					show-barcode=none,,Показать штрихкод…
 | 
				
			||||||
 | 
					show-on-mouse-pos=Meta+V,Meta+V,Показать записи на позиции указателя мыши
 | 
				
			||||||
 | 
					stop current activity=Meta+S,Meta+S,Прекратить выполнение текущей комнаты
 | 
				
			||||||
 | 
					switch to next activity=none,,Переключиться в следующую комнату
 | 
				
			||||||
 | 
					switch to previous activity=none,,Переключиться в предыдущую комнату
 | 
				
			||||||
 | 
					toggle do not disturb=none,,Включение и отключение режима «Не беспокоить»
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[systemsettings.desktop]
 | 
				
			||||||
 | 
					_k_friendly_name=Параметры системы
 | 
				
			||||||
 | 
					_launch=Tools,Tools,Параметры системы
 | 
				
			||||||
 | 
					kcm-kscreen=none,none,Настройка экранов
 | 
				
			||||||
 | 
					kcm-lookandfeel=none,none,Оформление рабочей среды
 | 
				
			||||||
 | 
					kcm-users=none,none,Пользователи
 | 
				
			||||||
 | 
					powerdevilprofilesconfig=none,none,Энергосбережение
 | 
				
			||||||
 | 
					screenlocker=none,none,Блокировка экрана
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					exportsFile=/etc/exports
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,26 @@
 | 
				
			||||||
 | 
					1920x1080 screen: Height=520
 | 
				
			||||||
 | 
					1920x1080 screen: Width=911
 | 
				
			||||||
 | 
					1920x1080 screen: XPosition=504
 | 
				
			||||||
 | 
					1920x1080 screen: YPosition=270
 | 
				
			||||||
 | 
					HDMI-1=HDMI-1
 | 
				
			||||||
 | 
					MenuBar=Disabled
 | 
				
			||||||
 | 
					State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAbcBAAAJ+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABQQEAAAkAAAOPAAAB3gAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAASP/////AAAAAAAAAAA=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Desktop Entry]
 | 
				
			||||||
 | 
					DefaultProfile=Melawy.profile
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					ConfigVersion=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[MainWindow]
 | 
				
			||||||
 | 
					1920x1080 screen: Height=677
 | 
				
			||||||
 | 
					1920x1080 screen: Width=1241
 | 
				
			||||||
 | 
					1920x1080 screen: XPosition=363
 | 
				
			||||||
 | 
					1920x1080 screen: YPosition=207
 | 
				
			||||||
 | 
					HDMI-0=HDMI-0
 | 
				
			||||||
 | 
					HDMI-1=HDMI-1
 | 
				
			||||||
 | 
					State=AAAA/wAAAAD9AAAAAQAAAAAAAAAAAAAAAPwCAAAAAvsAAAAiAFEAdQBpAGMAawBDAG8AbQBtAGEAbgBkAHMARABvAGMAawAAAAAA/////wAAAWgA////+wAAABwAUwBTAEgATQBhAG4AYQBnAGUAcgBEAG8AYwBrAAAAAAD/////AAABBAD///8AAATZAAACewAAAAQAAAAEAAAACAAAAAj8AAAAAQAAAAIAAAACAAAAFgBtAGEAaQBuAFQAbwBvAGwAQgBhAHIBAAAAAP////8AAAAAAAAAAAAAABwAcwBlAHMAcwBpAG8AbgBUAG8AbwBsAGIAYQByAQAAATn/////AAAAAAAAAAA=
 | 
				
			||||||
 | 
					ToolBarsMovable=Disabled
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[UiSettings]
 | 
				
			||||||
 | 
					ColorScheme=
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Global plugin config]
 | 
				
			||||||
 | 
					manageProfile=false
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,6 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=kscreenlocker.upd:0.1-autolock
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Greeter][Wallpaper][org.kde.image][General]
 | 
				
			||||||
 | 
					Image=/usr/share/wallpapers/Melawy Nier A2/
 | 
				
			||||||
 | 
					PreviewImage=/usr/share/wallpapers/Melawy Nier A2/
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[KSplash]
 | 
				
			||||||
 | 
					Theme=com.github.Melawy.Nier-A2.desktop
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,34 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=kwin.upd:replace-scalein-with-scale,kwin.upd:port-minimizeanimation-effect-to-js,kwin.upd:port-scale-effect-to-js,kwin.upd:port-dimscreen-effect-to-js,kwin.upd:auto-bordersize,kwin.upd:animation-speed,kwin.upd:desktop-grid-click-behavior,kwin.upd:no-swap-encourage,kwin.upd:make-translucency-effect-disabled-by-default,kwin.upd:remove-flip-switch-effect,kwin.upd:remove-cover-switch-effect,kwin.upd:remove-cubeslide-effect,kwin.upd:remove-xrender-backend,kwin.upd:enable-scale-effect-by-default,kwin.upd:overview-group-plugin-id,kwin.upd:animation-speed-cleanup,kwin.upd:replace-cascaded-zerocornered
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Desktops]
 | 
				
			||||||
 | 
					Id_1=3e66bd70-8fa9-433a-934b-8db93dd92ee1
 | 
				
			||||||
 | 
					Id_2=03bfae72-5df9-4e2c-afdc-81f275d019b2
 | 
				
			||||||
 | 
					Id_3=a390371f-2619-46de-a3e6-5acfe5cf41c3
 | 
				
			||||||
 | 
					Id_4=417c302c-dc8c-4a4e-a050-bcf11cceed4c
 | 
				
			||||||
 | 
					Number=4
 | 
				
			||||||
 | 
					Rows=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Plugins]
 | 
				
			||||||
 | 
					desktopchangeosdEnabled=true
 | 
				
			||||||
 | 
					kwin4_effect_fadedesktopEnabled=true
 | 
				
			||||||
 | 
					slideEnabled=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[TabBox]
 | 
				
			||||||
 | 
					LayoutName=coverswitch
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tiling]
 | 
				
			||||||
 | 
					padding=4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tiling][018d7cd5-b348-59b5-8b4e-b3739df928e6]
 | 
				
			||||||
 | 
					tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Tiling][e460f24c-0802-5ae0-b5a4-3e2eda27ed36]
 | 
				
			||||||
 | 
					tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Windows]
 | 
				
			||||||
 | 
					RollOverDesktops=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[org.kde.kdecoration2]
 | 
				
			||||||
 | 
					library=org.kde.kwin.aurorae
 | 
				
			||||||
 | 
					theme=__aurorae__svg__Fluent-round-dark
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=kwinrules.upd:replace-placement-string-to-enum,kwinrules.upd:use-virtual-desktop-ids
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[$Version]
 | 
				
			||||||
 | 
					update_info=kxkb.upd:remove-empty-lists,kxkb.upd:add-back-resetoptions,kxkb_variants.upd:split-variants
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					[Style]
 | 
				
			||||||
 | 
					DolphinSidebarOpacity=95
 | 
				
			||||||
 | 
					MenuOpacity=95
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,153 @@
 | 
				
			||||||
 | 
					[Midnight-Commander]
 | 
				
			||||||
 | 
					verbose=true
 | 
				
			||||||
 | 
					shell_patterns=true
 | 
				
			||||||
 | 
					auto_save_setup=true
 | 
				
			||||||
 | 
					preallocate_space=false
 | 
				
			||||||
 | 
					auto_menu=false
 | 
				
			||||||
 | 
					use_internal_view=true
 | 
				
			||||||
 | 
					use_internal_edit=true
 | 
				
			||||||
 | 
					clear_before_exec=true
 | 
				
			||||||
 | 
					confirm_delete=true
 | 
				
			||||||
 | 
					confirm_overwrite=true
 | 
				
			||||||
 | 
					confirm_execute=false
 | 
				
			||||||
 | 
					confirm_history_cleanup=true
 | 
				
			||||||
 | 
					confirm_exit=false
 | 
				
			||||||
 | 
					confirm_directory_hotlist_delete=false
 | 
				
			||||||
 | 
					confirm_view_dir=false
 | 
				
			||||||
 | 
					safe_delete=false
 | 
				
			||||||
 | 
					safe_overwrite=false
 | 
				
			||||||
 | 
					use_8th_bit_as_meta=false
 | 
				
			||||||
 | 
					mouse_move_pages_viewer=true
 | 
				
			||||||
 | 
					mouse_close_dialog=false
 | 
				
			||||||
 | 
					fast_refresh=false
 | 
				
			||||||
 | 
					drop_menus=false
 | 
				
			||||||
 | 
					wrap_mode=true
 | 
				
			||||||
 | 
					old_esc_mode=true
 | 
				
			||||||
 | 
					cd_symlinks=true
 | 
				
			||||||
 | 
					show_all_if_ambiguous=false
 | 
				
			||||||
 | 
					use_file_to_guess_type=true
 | 
				
			||||||
 | 
					alternate_plus_minus=false
 | 
				
			||||||
 | 
					only_leading_plus_minus=true
 | 
				
			||||||
 | 
					show_output_starts_shell=false
 | 
				
			||||||
 | 
					xtree_mode=false
 | 
				
			||||||
 | 
					file_op_compute_totals=true
 | 
				
			||||||
 | 
					classic_progressbar=true
 | 
				
			||||||
 | 
					use_netrc=true
 | 
				
			||||||
 | 
					ftpfs_always_use_proxy=false
 | 
				
			||||||
 | 
					ftpfs_use_passive_connections=true
 | 
				
			||||||
 | 
					ftpfs_use_passive_connections_over_proxy=false
 | 
				
			||||||
 | 
					ftpfs_use_unix_list_options=true
 | 
				
			||||||
 | 
					ftpfs_first_cd_then_ls=true
 | 
				
			||||||
 | 
					ignore_ftp_chattr_errors=true
 | 
				
			||||||
 | 
					editor_fill_tabs_with_spaces=false
 | 
				
			||||||
 | 
					editor_return_does_auto_indent=true
 | 
				
			||||||
 | 
					editor_backspace_through_tabs=false
 | 
				
			||||||
 | 
					editor_fake_half_tabs=true
 | 
				
			||||||
 | 
					editor_option_save_position=true
 | 
				
			||||||
 | 
					editor_option_auto_para_formatting=false
 | 
				
			||||||
 | 
					editor_option_typewriter_wrap=false
 | 
				
			||||||
 | 
					editor_edit_confirm_save=true
 | 
				
			||||||
 | 
					editor_syntax_highlighting=true
 | 
				
			||||||
 | 
					editor_persistent_selections=true
 | 
				
			||||||
 | 
					editor_drop_selection_on_copy=true
 | 
				
			||||||
 | 
					editor_cursor_beyond_eol=false
 | 
				
			||||||
 | 
					editor_cursor_after_inserted_block=false
 | 
				
			||||||
 | 
					editor_visible_tabs=true
 | 
				
			||||||
 | 
					editor_visible_spaces=true
 | 
				
			||||||
 | 
					editor_line_state=false
 | 
				
			||||||
 | 
					editor_simple_statusbar=false
 | 
				
			||||||
 | 
					editor_check_new_line=false
 | 
				
			||||||
 | 
					editor_show_right_margin=false
 | 
				
			||||||
 | 
					editor_group_undo=false
 | 
				
			||||||
 | 
					editor_state_full_filename=false
 | 
				
			||||||
 | 
					editor_ask_filename_before_edit=false
 | 
				
			||||||
 | 
					nice_rotating_dash=true
 | 
				
			||||||
 | 
					shadows=true
 | 
				
			||||||
 | 
					mcview_remember_file_position=false
 | 
				
			||||||
 | 
					auto_fill_mkdir_name=true
 | 
				
			||||||
 | 
					copymove_persistent_attr=true
 | 
				
			||||||
 | 
					pause_after_run=1
 | 
				
			||||||
 | 
					mouse_repeat_rate=100
 | 
				
			||||||
 | 
					double_click_speed=250
 | 
				
			||||||
 | 
					old_esc_mode_timeout=1000000
 | 
				
			||||||
 | 
					max_dirt_limit=10
 | 
				
			||||||
 | 
					num_history_items_recorded=60
 | 
				
			||||||
 | 
					vfs_timeout=60
 | 
				
			||||||
 | 
					ftpfs_directory_timeout=900
 | 
				
			||||||
 | 
					ftpfs_retry_seconds=30
 | 
				
			||||||
 | 
					editor_tab_spacing=8
 | 
				
			||||||
 | 
					editor_word_wrap_line_length=72
 | 
				
			||||||
 | 
					editor_option_save_mode=0
 | 
				
			||||||
 | 
					editor_backup_extension=~
 | 
				
			||||||
 | 
					editor_filesize_threshold=64M
 | 
				
			||||||
 | 
					editor_stop_format_chars=-+*\\,.;:&>
 | 
				
			||||||
 | 
					mcview_eof=
 | 
				
			||||||
 | 
					skin=modarcon16
 | 
				
			||||||
 | 
					filepos_max_saved_entries=1024
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fish_directory_timeout=900
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Layout]
 | 
				
			||||||
 | 
					output_lines=0
 | 
				
			||||||
 | 
					left_panel_size=75
 | 
				
			||||||
 | 
					top_panel_size=0
 | 
				
			||||||
 | 
					message_visible=true
 | 
				
			||||||
 | 
					keybar_visible=true
 | 
				
			||||||
 | 
					xterm_title=true
 | 
				
			||||||
 | 
					command_prompt=true
 | 
				
			||||||
 | 
					menubar_visible=true
 | 
				
			||||||
 | 
					free_space=true
 | 
				
			||||||
 | 
					horizontal_split=false
 | 
				
			||||||
 | 
					vertical_equal=true
 | 
				
			||||||
 | 
					horizontal_equal=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Misc]
 | 
				
			||||||
 | 
					timeformat_recent=%b %e %H:%M
 | 
				
			||||||
 | 
					timeformat_old=%b %e  %Y
 | 
				
			||||||
 | 
					ftp_proxy_host=gate
 | 
				
			||||||
 | 
					ftpfs_password=anonymous@
 | 
				
			||||||
 | 
					display_codepage=UTF-8
 | 
				
			||||||
 | 
					source_codepage=Other_8_bit
 | 
				
			||||||
 | 
					autodetect_codeset=
 | 
				
			||||||
 | 
					clipboard_store=
 | 
				
			||||||
 | 
					clipboard_paste=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					spell_language=en
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Colors]
 | 
				
			||||||
 | 
					base_color=
 | 
				
			||||||
 | 
					xterm-256color=
 | 
				
			||||||
 | 
					color_terminals=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					linux=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					alacritty=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Panels]
 | 
				
			||||||
 | 
					show_mini_info=true
 | 
				
			||||||
 | 
					kilobyte_si=false
 | 
				
			||||||
 | 
					mix_all_files=false
 | 
				
			||||||
 | 
					show_backups=true
 | 
				
			||||||
 | 
					show_dot_files=true
 | 
				
			||||||
 | 
					fast_reload=false
 | 
				
			||||||
 | 
					fast_reload_msg_shown=false
 | 
				
			||||||
 | 
					mark_moves_down=true
 | 
				
			||||||
 | 
					reverse_files_only=true
 | 
				
			||||||
 | 
					auto_save_setup_panels=true
 | 
				
			||||||
 | 
					navigate_with_arrows=false
 | 
				
			||||||
 | 
					panel_scroll_pages=true
 | 
				
			||||||
 | 
					panel_scroll_center=false
 | 
				
			||||||
 | 
					mouse_move_pages=true
 | 
				
			||||||
 | 
					filetype_mode=true
 | 
				
			||||||
 | 
					permission_mode=false
 | 
				
			||||||
 | 
					torben_fj_mode=false
 | 
				
			||||||
 | 
					quick_search_mode=2
 | 
				
			||||||
 | 
					select_flags=6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					simple_swap=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Panelize]
 | 
				
			||||||
 | 
					Изменённые файлы под контролем git=git ls-files --modified
 | 
				
			||||||
 | 
					Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print
 | 
				
			||||||
 | 
					Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print
 | 
				
			||||||
 | 
					Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,41 @@
 | 
				
			||||||
 | 
					[New Left Panel]
 | 
				
			||||||
 | 
					display=listing
 | 
				
			||||||
 | 
					reverse=false
 | 
				
			||||||
 | 
					case_sensitive=true
 | 
				
			||||||
 | 
					exec_first=false
 | 
				
			||||||
 | 
					sort_order=name
 | 
				
			||||||
 | 
					list_mode=full
 | 
				
			||||||
 | 
					brief_cols=2
 | 
				
			||||||
 | 
					user_format=half type name | size | mtime | mode | perm | owner | group
 | 
				
			||||||
 | 
					user_status0=half type name | size | perm
 | 
				
			||||||
 | 
					user_status1=half type name | size | mtime
 | 
				
			||||||
 | 
					user_mini_status=true
 | 
				
			||||||
 | 
					list_format=user
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					user_status2=half type name | size | perm
 | 
				
			||||||
 | 
					user_status3=half type name | size | perm
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					filter_flags=7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[New Right Panel]
 | 
				
			||||||
 | 
					display=listing
 | 
				
			||||||
 | 
					reverse=false
 | 
				
			||||||
 | 
					case_sensitive=true
 | 
				
			||||||
 | 
					exec_first=false
 | 
				
			||||||
 | 
					sort_order=name
 | 
				
			||||||
 | 
					list_mode=full
 | 
				
			||||||
 | 
					brief_cols=2
 | 
				
			||||||
 | 
					user_format=half type name | size | mtime | mode | perm | owner | group
 | 
				
			||||||
 | 
					user_status0=half type name | size | perm
 | 
				
			||||||
 | 
					user_status1=half type name | size | mtime
 | 
				
			||||||
 | 
					user_mini_status=true
 | 
				
			||||||
 | 
					list_format=user
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					user_status2=half type name | size | perm
 | 
				
			||||||
 | 
					user_status3=half type name | size | perm
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					filter_flags=7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Dirs]
 | 
				
			||||||
 | 
					current_is_left=true
 | 
				
			||||||
 | 
					other_dir=/home/liveuser
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,38 @@
 | 
				
			||||||
 | 
					[General]
 | 
				
			||||||
 | 
					Aur_Builddir=/var/tmp
 | 
				
			||||||
 | 
					Aur_No_Confirm_Param=true
 | 
				
			||||||
 | 
					Aur_No_Edit_Param=true
 | 
				
			||||||
 | 
					Aur_Tool_Name=paru
 | 
				
			||||||
 | 
					Backend=alpm
 | 
				
			||||||
 | 
					CheckUpdatesHour=-1
 | 
				
			||||||
 | 
					CheckUpdatesInterval=-2
 | 
				
			||||||
 | 
					Current_Tab_Index=4
 | 
				
			||||||
 | 
					Distro_RSS_Url=https://archlinux.org/feeds/news/
 | 
				
			||||||
 | 
					Instant_Search=true
 | 
				
			||||||
 | 
					LastCheckUpdatesTime=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x89\x80\x3\xc7\t\xa9\0)
 | 
				
			||||||
 | 
					OptionalDeps_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5\0\0\0\0\0\0\0\0\a\x80\0\0\x2\x9e\0\0\x1$\0\0\x5x\0\0\x2\xb5)
 | 
				
			||||||
 | 
					PackageList_Ordered_Col=1
 | 
				
			||||||
 | 
					PackageList_Sort_Order=0
 | 
				
			||||||
 | 
					Package_Build_Date_Column_Width=120
 | 
				
			||||||
 | 
					Package_Download_Size_Column_Width=795
 | 
				
			||||||
 | 
					Package_Icon_Column_Width=49
 | 
				
			||||||
 | 
					Package_Install_Date_Column_Width=140
 | 
				
			||||||
 | 
					Package_Install_Reason_Column_Width=120
 | 
				
			||||||
 | 
					Package_Installed_Size_Column_Width=120
 | 
				
			||||||
 | 
					Package_Licenses_Column_Width=250
 | 
				
			||||||
 | 
					Package_Name_Column_Width=400
 | 
				
			||||||
 | 
					Package_Repository_Column_Width=150
 | 
				
			||||||
 | 
					Package_Version_Column_Width=260
 | 
				
			||||||
 | 
					Panel_Organizing=30
 | 
				
			||||||
 | 
					Search_Outdated_Aur_Packages=true
 | 
				
			||||||
 | 
					Show_Groups_Panel=false
 | 
				
			||||||
 | 
					Show_Package_Build_Date_Column=true
 | 
				
			||||||
 | 
					Show_Package_Install_Date_Column=true
 | 
				
			||||||
 | 
					Show_Package_Install_Reason_Column=true
 | 
				
			||||||
 | 
					Show_Package_Installed_Size_Column=true
 | 
				
			||||||
 | 
					Show_Package_Licenses_Column=true
 | 
				
			||||||
 | 
					Splitter_Horizontal_State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc8\0\0\0\xeb\x1\xff\xff\xff\xff\x1\0\0\0\x2\0)
 | 
				
			||||||
 | 
					Transaction_Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l\0\0\0\0\0\0\0\0\a\x80\0\0\x1\b\0\0\x1\x3\0\0\x2\xf1\0\0\x2l)
 | 
				
			||||||
 | 
					Use_Alternate_Row_Color=true
 | 
				
			||||||
 | 
					Use_Default_App_Icon=true
 | 
				
			||||||
 | 
					Window_Size=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xc4\0\0\0\"\0\0\a{\0\0\x4\a)
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					[Formats]
 | 
				
			||||||
 | 
					LANG=ru_RU.UTF-8
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,191 @@
 | 
				
			||||||
 | 
					[ActionPlugins][0]
 | 
				
			||||||
 | 
					RightButton;NoModifier=org.kde.contextmenu
 | 
				
			||||||
 | 
					wheel:Vertical;NoModifier=org.kde.switchdesktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ActionPlugins][1]
 | 
				
			||||||
 | 
					RightButton;NoModifier=org.kde.contextmenu
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][1]
 | 
				
			||||||
 | 
					ItemGeometries-1920x1080=
 | 
				
			||||||
 | 
					ItemGeometriesHorizontal=
 | 
				
			||||||
 | 
					activityId=84c85f49-02a4-464c-9302-b31556fcbbb7
 | 
				
			||||||
 | 
					formfactor=0
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					lastScreen=0
 | 
				
			||||||
 | 
					location=0
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.folder
 | 
				
			||||||
 | 
					wallpaperplugin=org.kde.image
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][1][ConfigDialog]
 | 
				
			||||||
 | 
					DialogHeight=540
 | 
				
			||||||
 | 
					DialogWidth=720
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][1][General]
 | 
				
			||||||
 | 
					ToolBoxButtonState=topcenter
 | 
				
			||||||
 | 
					ToolBoxButtonX=304
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][1][Wallpaper][org.kde.image][General]
 | 
				
			||||||
 | 
					Image=/usr/share/wallpapers/Melawy Nier A2/
 | 
				
			||||||
 | 
					SlidePaths=/usr/share/wallpapers/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2]
 | 
				
			||||||
 | 
					activityId=
 | 
				
			||||||
 | 
					formfactor=2
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					lastScreen=0
 | 
				
			||||||
 | 
					location=4
 | 
				
			||||||
 | 
					plugin=org.kde.panel
 | 
				
			||||||
 | 
					wallpaperplugin=org.kde.image
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][20]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.digitalclock
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][21]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.showdesktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=com.github.adhec.Menu11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25][Configuration]
 | 
				
			||||||
 | 
					PreloadWeight=100
 | 
				
			||||||
 | 
					popupHeight=510
 | 
				
			||||||
 | 
					popupWidth=691
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25][Configuration][ConfigDialog]
 | 
				
			||||||
 | 
					DialogHeight=540
 | 
				
			||||||
 | 
					DialogWidth=720
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25][Configuration][General]
 | 
				
			||||||
 | 
					appNameFormat=2
 | 
				
			||||||
 | 
					downIconsLock=true
 | 
				
			||||||
 | 
					favoritesPortedToKAstats=true
 | 
				
			||||||
 | 
					menuPosition=1
 | 
				
			||||||
 | 
					numberColumns=7
 | 
				
			||||||
 | 
					numberRows=4
 | 
				
			||||||
 | 
					recentGridModel=1
 | 
				
			||||||
 | 
					reduceIconSizeFooter=true
 | 
				
			||||||
 | 
					reduceIconSizeUserProfile=false
 | 
				
			||||||
 | 
					showDescription=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25][Configuration][Shortcuts]
 | 
				
			||||||
 | 
					global=Alt+F1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][25][Shortcuts]
 | 
				
			||||||
 | 
					global=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][5]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.icontasks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][5][Configuration][ConfigDialog]
 | 
				
			||||||
 | 
					DialogHeight=540
 | 
				
			||||||
 | 
					DialogWidth=720
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][5][Configuration][General]
 | 
				
			||||||
 | 
					launchers=applications:melawy-welcome.desktop,applications:systemsettings.desktop,applications:org.manjaro.pamac.manager.desktop,preferred://filemanager,applications:org.kde.konsole.desktop,applications:org.kde.kcalc.desktop,applications:org.kde.kate.desktop,applications:code.desktop,applications:org.telegram.desktop.desktop,file:///usr/share/applications/discord.desktop,applications:Zoom.desktop,preferred://browser,applications:brave-browser.desktop,applications:google-chrome.desktop
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][6]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.marginsseparator
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][7]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.systemtray
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][Applets][7][Configuration]
 | 
				
			||||||
 | 
					PreloadWeight=90
 | 
				
			||||||
 | 
					SystrayContainmentId=8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][ConfigDialog]
 | 
				
			||||||
 | 
					DialogHeight=74
 | 
				
			||||||
 | 
					DialogWidth=1920
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][2][General]
 | 
				
			||||||
 | 
					AppletOrder=25;5;6;7;20;21
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8]
 | 
				
			||||||
 | 
					activityId=
 | 
				
			||||||
 | 
					formfactor=2
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					lastScreen=0
 | 
				
			||||||
 | 
					location=4
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.private.systemtray
 | 
				
			||||||
 | 
					popupHeight=432
 | 
				
			||||||
 | 
					popupWidth=432
 | 
				
			||||||
 | 
					wallpaperplugin=org.kde.image
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][10]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.clipboard
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][11]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.devicenotifier
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][12]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.manage-inputmethod
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][13]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.notifications
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][14]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.kscreen
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][15]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.keyboardlayout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][16]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.volume
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][16][Configuration][General]
 | 
				
			||||||
 | 
					migrated=true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][17]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.printmanager
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][18]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=com.github.Melawy.ArchUpdate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][18][Configuration]
 | 
				
			||||||
 | 
					PreloadWeight=80
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][19]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.keyboardindicator
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][22]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.nightcolorcontrol
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][23]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.networkmanagement
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][24]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.battery
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][26]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.plasma.bluetooth
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][Applets][9]
 | 
				
			||||||
 | 
					immutability=1
 | 
				
			||||||
 | 
					plugin=org.kde.kdeconnect
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[Containments][8][General]
 | 
				
			||||||
 | 
					extraItems=org.kde.plasma.bluetooth,org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,com.github.Melawy.ArchUpdate,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol
 | 
				
			||||||
 | 
					knownItems=org.kde.plasma.bluetooth,org.kde.kdeconnect,org.kde.plasma.battery,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.kscreen,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager,com.github.Melawy.ArchUpdate,org.kde.plasma.keyboardindicator,org.kde.plasma.nightcolorcontrol
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ScreenMapping]
 | 
				
			||||||
 | 
					itemsOnDisabledScreens=
 | 
				
			||||||