From 8f100960cf176f33a21cc207e87d4246dd25578e Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 4 Jul 2026 21:28:08 -0400 Subject: [PATCH] theme: fix gtk3 checkboxes in light mode fixes #1555 --- quickshell/Common/Theme.qml | 2 + .../matugen/gtk3-assets/LICENSE.adw-gtk3 | 504 ++++++++++++++++++ .../matugen/gtk3-assets/bullet-symbolic.svg | 1 + .../gtk3-assets/bullet-symbolic.symbolic.png | Bin 0 -> 165 bytes .../matugen/gtk3-assets/check-symbolic.svg | 1 + .../gtk3-assets/check-symbolic.symbolic.png | Bin 0 -> 244 bytes .../matugen/gtk3-assets/dash-symbolic.svg | 1 + .../gtk3-assets/dash-symbolic.symbolic.png | Bin 0 -> 130 bytes ...er-horz-scale-has-marks-above-disabled.png | Bin 0 -> 756 bytes ...-horz-scale-has-marks-above-disabled@2.png | Bin 0 -> 1574 bytes .../slider-horz-scale-has-marks-above.png | Bin 0 -> 834 bytes .../slider-horz-scale-has-marks-above@2.png | Bin 0 -> 1813 bytes ...er-horz-scale-has-marks-below-disabled.png | Bin 0 -> 745 bytes ...-horz-scale-has-marks-below-disabled@2.png | Bin 0 -> 1570 bytes .../slider-horz-scale-has-marks-below.png | Bin 0 -> 830 bytes .../slider-horz-scale-has-marks-below@2.png | Bin 0 -> 1851 bytes ...er-vert-scale-has-marks-above-disabled.png | Bin 0 -> 748 bytes ...-vert-scale-has-marks-above-disabled@2.png | Bin 0 -> 1485 bytes .../slider-vert-scale-has-marks-above.png | Bin 0 -> 826 bytes .../slider-vert-scale-has-marks-above@2.png | Bin 0 -> 1799 bytes ...er-vert-scale-has-marks-below-disabled.png | Bin 0 -> 750 bytes ...-vert-scale-has-marks-below-disabled@2.png | Bin 0 -> 1496 bytes .../slider-vert-scale-has-marks-below.png | Bin 0 -> 824 bytes .../slider-vert-scale-has-marks-below@2.png | Bin 0 -> 1837 bytes .../matugen/gtk3-assets/text-select-end.png | Bin 0 -> 790 bytes .../matugen/gtk3-assets/text-select-end@2.png | Bin 0 -> 1720 bytes .../matugen/gtk3-assets/text-select-start.png | Bin 0 -> 799 bytes .../gtk3-assets/text-select-start@2.png | Bin 0 -> 1747 bytes quickshell/scripts/gtk.sh | 50 +- 29 files changed, 558 insertions(+), 1 deletion(-) create mode 100644 quickshell/matugen/gtk3-assets/LICENSE.adw-gtk3 create mode 100644 quickshell/matugen/gtk3-assets/bullet-symbolic.svg create mode 100644 quickshell/matugen/gtk3-assets/bullet-symbolic.symbolic.png create mode 100644 quickshell/matugen/gtk3-assets/check-symbolic.svg create mode 100644 quickshell/matugen/gtk3-assets/check-symbolic.symbolic.png create mode 100644 quickshell/matugen/gtk3-assets/dash-symbolic.svg create mode 100644 quickshell/matugen/gtk3-assets/dash-symbolic.symbolic.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above-disabled.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above-disabled@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below.png create mode 100644 quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above-disabled.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above-disabled@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below-disabled.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below-disabled@2.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below.png create mode 100644 quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below@2.png create mode 100644 quickshell/matugen/gtk3-assets/text-select-end.png create mode 100644 quickshell/matugen/gtk3-assets/text-select-end@2.png create mode 100644 quickshell/matugen/gtk3-assets/text-select-start.png create mode 100644 quickshell/matugen/gtk3-assets/text-select-start@2.png diff --git a/quickshell/Common/Theme.qml b/quickshell/Common/Theme.qml index 82728ac5e..3f2ad3ea0 100644 --- a/quickshell/Common/Theme.qml +++ b/quickshell/Common/Theme.qml @@ -142,6 +142,8 @@ Singleton { Component.onCompleted: { Quickshell.execDetached(["mkdir", "-p", stateDir]); + if (typeof SessionData === "undefined" || !SessionData.isGreeterMode) + Quickshell.execDetached([shellDir + "/scripts/gtk.sh", configDir, "", shellDir, "assets-only"]); Proc.runCommand("matugenCheck", ["sh", "-c", "command -v matugen"], (output, code) => { matugenAvailable = (code === 0) && !envDisableMatugen; const isGreeterMode = (typeof SessionData !== "undefined" && SessionData.isGreeterMode); diff --git a/quickshell/matugen/gtk3-assets/LICENSE.adw-gtk3 b/quickshell/matugen/gtk3-assets/LICENSE.adw-gtk3 new file mode 100644 index 000000000..8000a6faa --- /dev/null +++ b/quickshell/matugen/gtk3-assets/LICENSE.adw-gtk3 @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser 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 Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY 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 +LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random + Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/quickshell/matugen/gtk3-assets/bullet-symbolic.svg b/quickshell/matugen/gtk3-assets/bullet-symbolic.svg new file mode 100644 index 000000000..291d5bae3 --- /dev/null +++ b/quickshell/matugen/gtk3-assets/bullet-symbolic.svg @@ -0,0 +1 @@ + diff --git a/quickshell/matugen/gtk3-assets/bullet-symbolic.symbolic.png b/quickshell/matugen/gtk3-assets/bullet-symbolic.symbolic.png new file mode 100644 index 0000000000000000000000000000000000000000..8e6925a5f851df0f65b8ec5ce0add05b88683463 GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@?$(*978lF zUY+2`)u15aB0u-=w1;;eU*_C3iFL9 zm?QMox$4H$87&g8k1xHt*DLIirc3GJ&-Ul8t$MPfy@U1jM7DFRx7Mg!-M>fV63`w7 MPgg&ebxsLQ0M~Ln!2kdN literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/check-symbolic.svg b/quickshell/matugen/gtk3-assets/check-symbolic.svg new file mode 100644 index 000000000..793ae5fa9 --- /dev/null +++ b/quickshell/matugen/gtk3-assets/check-symbolic.svg @@ -0,0 +1 @@ + diff --git a/quickshell/matugen/gtk3-assets/check-symbolic.symbolic.png b/quickshell/matugen/gtk3-assets/check-symbolic.symbolic.png new file mode 100644 index 0000000000000000000000000000000000000000..9144bcd1baf3d5de08611969d5eb875c208587fc GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xamSQK*5Dp-y;YjHK@>hGhIEH9U zJbTeFiz!f`{p0<0jzOKSJ^>pxofKSS(8gV;$^C+}PDDhP#0JqfD(NSp-b71q z=IlnB;6mKsQKgtuI_@E`wYVSMI%-`}wYYsoqz2eR@TTbz?yMR}WVeX_w pe`YR`zj}YGTKL`kd#+h$Wd$B+8r+P0mjQG(gQu&X%Q~loCIAouUJC#K literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/dash-symbolic.svg b/quickshell/matugen/gtk3-assets/dash-symbolic.svg new file mode 100644 index 000000000..f5a31053a --- /dev/null +++ b/quickshell/matugen/gtk3-assets/dash-symbolic.svg @@ -0,0 +1 @@ + diff --git a/quickshell/matugen/gtk3-assets/dash-symbolic.symbolic.png b/quickshell/matugen/gtk3-assets/dash-symbolic.symbolic.png new file mode 100644 index 0000000000000000000000000000000000000000..3afcfd6fa2b65e4fcdae11d780afd7115b140d23 GIT binary patch literal 130 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 M07*qoM6N<$f=YLTc>n+a literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above@2.png b/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-above@2.png new file mode 100644 index 0000000000000000000000000000000000000000..fcdebee93613c6ad2579dc3f6a57f03341a26b55 GIT binary patch literal 1813 zcmV+w2kQ8VP)elNpmHmo{y`$@jBAKA%sU z#J1~?GeRP@MxZjUSilD~Ub%ARdvkMh;pLzvv$M0IOP4Nv zSA%_d!2&MgnUxPPoDAquGdwYMFOePbnftn&R;R@JgW-z>W(SE_}zbtk`;>CYEJQoI^bLr7Bv-b0d@t0!QXBK)MRvYbO6`|yaI@|U^fA84h|0fd?TSI0|Ns; z26iqtLM#RK0NaloIr5%mSPI(2h?PAbo4jC zmv#4ZtOQ#H?Ck99JSG=bQ29#g;>C+cb$57S{LO|I1Fr$^gu~&#=NT%clrj>D{IjU2 zXb(^a6s7y-7sWyd0h9w3{r&w1eLmk?D_IZcI#pFwZ}#@~Hlrq@a_v${tEwB=3ha$W zqn{U|s%h2z6xgdh^OJ=G=Bw%fD$kue*H~Fu*^u9QW~QpDs`2dEvpZ1L^_c3KZcv26 zdfM9B4i?Cmk@oiXZvrJKmkTnnWk7Kt5cqmwc$xA0{a;1h@E-k&LqB=Cfb#bC_Ue+7 zl2;07oKHnX#kSqMcbB1VdY4FpIsi{=YwNax3ezHlaCUTbG@!bI09*#^1YEVXwJ#SE zn4Lf%P>b@p&{(HF98RaxSx8)V+-|p%V1!_pBMBQKw zn>TOvjE|51-r;Z*7Yb-%+xARNP0hDMq0lVwFCgVWbpacgd;0XLH90x?SwWRL;c)oV zP$-lHW>G%r&<%hDz@tZx{#qbkMn*rX1-00K@^hy1M?v!XHqm*q1L~{ zVSWc{(Dec}z#gD!Vq)Sig=;5pYkvDGK=+o^u zFsIuo^OR7E(r*FY1)3f|e*A|*R5ch3{ti{uceTfh-Z3}htfgOPfGEK6!(pweOo)c zK!wbH6i2Pby{HZ2H-LRW)4hB5ew7dG(9qB?HS}w!O}dw~XZ~?Kd*7g3zo8cOb_vSeQwP+WE^*?-iT3BupFhk6^x3m#pLBF|v}@=-eVsae zT`!AlE-$rF@9VsmtX$prP;R^VjL? z%@0-ChtRkeqQBiXj}#TUU8>tofX>d&#@5!>X20LRr>v~34z-HQjvbH3gHN73`S{MA zJ0G4obLMmX`xI&_oklHDzd%i?Nh#&jqNb&=8eEFnQxF>JNo$uIG(dfQy{E0MZHwRU zud1x9EQ!TpiC{1oxqbWg_{hk}OxkHvsF`URHA~KnXk7pO`}7S-^s5^bl3;X{8TGyBd1>tp=00000NkvXXu0mjf DX;gq4 literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled.png b/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled.png new file mode 100644 index 0000000000000000000000000000000000000000..edea584b721e2e6eca082871779631bb38c39207 GIT binary patch literal 745 zcmVpF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10(MD6 zK~zYIt=2zi6LA#4@$c`NG_g5b(>4ussO=zx;$Wa-CY3Hi5i(}#TFB&TrwRoH>Euv^ z;N;{G=uoX7NGF9lbSt5ToP_pfG}3^5dzgsfWYE!?z8?7_ZmsCzVPiYuon6 zR4SELN__`@iHN=eiO7Wne33|G*0QV(t#zqZt4XueT9xSeIabB9WMP z9A~!`dO01(`J6~3<^kWeI4~3p24@_{`P2>UI$(EtdU^&Jx(=Vn<#I22fg734W}gES z7jVG4va)ioTCF<$;9BcKGMS75UN=5=czF1%AGnd3OlA!j6A_HFq49@8p$AO|zKaNl z!}kF{aE^QZe*fJ;;Af8K9FN6fBZgs^gTM{L7>&hZ0RTfOrJ~VjU=VO4qS0tTDWyCj zA`1%(zkwS6_D5eKBGsLpouA^G@o=F~_%euTDHIA{fslJzO15o(==ZJxY}E zT$}?`vz6;hr_)PX>q?h9rMkVn9jDpKb+;#z$*gsQ9~>M!1#Y(dShx>yW_K*49$7Sp1ewryl`kCv~dTpCWfCrF=jTI1!ObM>U<|y@b*J blHTJlWuM>=A}IFP00000NkvXXu0mjfuUlIm literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled@2.png b/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below-disabled@2.png new file mode 100644 index 0000000000000000000000000000000000000000..a68374a264e6b13bdc79a13a4fec6eaf65e8a3f6 GIT binary patch literal 1570 zcmV+-2Hp9IP)Fw=p5=GIzy1JT}n3z!39m)Wx02Ibpyy%V@V+A(=^#FVTBmh!RPtSAr z?%nH`W%*lGRezzBCJe)1=|(AytE##n%krf=ckc9ecXvOVK9--yUR3`@K*e-NqoboQ zMU<1$!KstZ^{A-$~EtZ2^-&9roeQa#(AP2Vsu$6@6Biaf;x^d&i z(PH27Vy4FAgr?i_ z^71Gj-5u*~g82qP2&o6)Jay`nU9HyC+YcYy;rpo_~Gj+btnvI{&{#V{&?bW@P!I#MRf=*X;3l-l_#M9k18h)7#tI1i(!Q z$*euh)4&CQ3=9msK?reLE;NM@;u;tjcpa%lk}JL6jCBCOu3fvjEVkv0BuNMPW@g~B zu%ajmZnygdYgxJDcDp-7Q53)j5y-~Y4Gj&o3xd#OJ#AwIK@bNA2X_Lf%j^RHLWm6j z*}He|?i$&0X8->EdjJsb%Z#i503MIWTPs+um^?z}3;0Kq`ucizEl~O5a5x(HCIPbN zENnKL&2rHuvDs{O=I^tx$z-zhkGfTeVHgJA%q*}0zyJV6QC4e#$`@Id!+g^KIF>PH z07%Zw&HYv@SdOsEmoEna=;>NRW+6ie+2M3L-HM{j2!ha3OC-wW($BtbBpfbi1=AW$}SpbO6&(G`g^Yg>j@UnCF?%kp3>FGFt z==z`KEO`<_S^zY}VzKXBE|+EN+qJc|n~jZ)@4$4qGAGx_0;%6BdG+emPZ?vhszM&d zSmMHk3!fl$x7skO=@;dz$}|9wLZQ$XR@4g?7Z*Q6s$SqOwTif1lB6dTMY&x~sG=x8 ziK4h0Kub9#PXWNrKp?O$9*>8s0o63^QGb8`KBOv$q-3nA_SJUf%9S@MrD`Ril+wo+ zFJ3$ZpbZ6-?6<^nup59hH8pkIFbrBDsDA6#tv)_aodr1xc@YOU0+8ufVztGQ;CysumE5?0BLx5_(eWHTeiA| z7Sl?4guht`A=?0W07MyM>mT8lckW7KfznU;VwPYVCZ{I9V803Oz@ U^(&(@K>z>%07*qoM6N<$f}2z6q5uE@ literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below.png b/quickshell/matugen/gtk3-assets/slider-horz-scale-has-marks-below.png new file mode 100644 index 0000000000000000000000000000000000000000..b98da17b90f05ac86cb670ab4d117f276e45e14e GIT binary patch literal 830 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 literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above-disabled.png b/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above-disabled.png new file mode 100644 index 0000000000000000000000000000000000000000..31f4770d7557078289efa1782d8e12f5e5e40af7 GIT binary patch literal 748 zcmVpF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10(nV9 zK~zYIwboBalW`cp@$WC!-14=S6B#RVgNSx$C{75vCj=fmjShx~og+L2I}~0D%m^V5 z9`hod?9w5$AcQ(dAYCRK4Bi(79ZmM z{+!8V(#d2p2J``49f3gi$jHczd_MoeG|iHOG)>bqi@98G#_#uE2fS^8fU>f(@}O3$ z$a1;-B^r$m9&c|mEV#YBJ>MyGJoEYd zOCZ=3bg;K>V9r0SPESt{0~h}RfvcLPy>Sa`WHy_94qTB^aselV5Iq|k8xOfRIumgb3-n{?X_24ZDp2NGT1E$8%Fk zsWn=b@8rBceHv9YnWY&QGsJV4VlRlo+PuMS!fLM-m>?Ztw@ z;3GG|LZPq*)PTRI)QSDk(b1>HV)4COn3VExX=&+013YyEDT*>sC=}kgaR)U`n+N(^ zJ#9i!lmS&$U)i>8b&6Fgm2dHQJj$^d*=kx`UR_;H8iujkE>^8pzo$~EIN)!09{N(L zRBUHwXVJ1OqZMRX)`6yJ^N~m-0{A+b_|#vYz}(#2T~$?I>$?8)1ahS7`VUoAXVd9) zg8B+_>Z&1}f@caLL>Kj)=F;TkWPc)&2yAU_RTmZ(egP(M2xz^;t=LlcvP$tz3JJ*J=fk^W0ROa zx-b0X_>iV)$#fta8KqPVg+iaUwzeMPaCHDGiv|UKjko}KdV6~t;_>)! zN>|n}YfVv<$kf!-X+aPUa=6{#OQv8@e9hF=*Vn&z|Ni|xRaK>Yz^t|9<>jAydU{^r zV6Nxgj+?MEX$!nz?f}iWo14P2()pqeH%qA7oai#`vpNbD2n0*P1Dpu z1DQ9J;o;%8IoRI3Kmo7XrdAEE4Q>7WFwoInfU~IwCrgk z#WU=^Ua!}2{`~o`tyZh2INy72I&k1X6CVo3+%u0Jgpl2WAUGEm7QS*ioo^M>!Ca(i z+JenyYXqP$#uflP9VtSH1At?8cJ{;V00aQ#<>mW3IyxNC69WJyD84aNjf{-E?(uj| zmBPVX)zZ?k7y8N}z|)bc_W68{rlzJV&>ttZja)95oewRmf4Cl9zkWTLNF;tNzFV79 zGMQBPaCPg}Uon;dK-=2dKBtuaUJB=Ol_-k;0su4W8S9--eSLkeZN&^CO}doiPsTOt zo>QDOcIM2PxzW+l4;W)B#r@8+7o~KTQp%uLpa9_6!x8Dv1gC9e$%WYXL zE-wDUhpPctH}_+V$pDrb8XCSAMe#y0oXb_WZr%Ec52-P?VKI{sQU$;n4u`vIYHB_z zuzy*LQu>G8Zhsem${72{m`|If0{~-e34r8wyT6>DpTAsaC$rV$}kR(aJ4Gs<-HQjP)Ba}BN4rT>!=lK2pBaukt8%@*bW?*Dl z{&Qkt!f$HhxYDhmfbUBA)%hSkp9zy3h4bULyVgSK+85F nX|Gi*sA4Lk+;6+-e+l&;EmSWa=jc>b00000NkvXXu0mjfi`}in literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above.png b/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-above.png new file mode 100644 index 0000000000000000000000000000000000000000..6681b486000ff9a1532df5dd6df48456bf0b40dd GIT binary patch literal 826 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 literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below-disabled@2.png b/quickshell/matugen/gtk3-assets/slider-vert-scale-has-marks-below-disabled@2.png new file mode 100644 index 0000000000000000000000000000000000000000..7f1394185fce07f7f430bf4a6d982d41285baadd GIT binary patch literal 1496 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 bgk>`OnKC00000NkvXXu0mjf^ayii literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/text-select-end.png b/quickshell/matugen/gtk3-assets/text-select-end.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f217d7d0cf97d0dd36abee668de7d66efeaf2f GIT binary patch literal 790 zcmV+x1L^#UP)pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H10;5Sp zK~zYIt(L)R6Hyd~znLbnnN*u1Mr(^kg}P8u$f8y%wxBN3r7Isn=)xel?p86S58$Gd zx~PvJBr6vxwHpHwK{usDV~jOvn`CA(b6m`w64QvZ$$`r-%;o>iopbMht_Em82#5ed z;DmY)a5!3k4VXY3*cTC}%e;dK00Y38<>lqs`T6;KLqkL74Z|2U3}aN+^^iYNM4V=` zS#C5M-^=Cl=grN{_lt{*A2dzd0e*?d?!O=*U?QK-zmy|}ZQHecKL28FZtfOv5eSM1 z?E@eTT-)B>&K(ud2CA;Fucv_tAk+zn0Lf~#S~xC1M8tJndv$g75pWp@v;$58Q>JNF zdI6}F)Y9qnec&9RwF9PGt=3+z01=T=sq_|@1Pl>DSKCxqyQ$}h#bVP-OG{J0u%>Cc z?tjoUtuFw8R4R2BI0Xd!6^P?F`~3opkB=t-0|@GX08X>n{Mj!+I2?}QIfAYOE@0Q| z^&kBL=(;|LS69tnfmtjTKlKY>nq~zradf}|8XFrMANvKUR;yp}3{k*y(6iBK^macE zn}|p@n|%gc#Va&A5CxLQF}%*OEUS`8B<=vCK*;xt2oRr{nMqlewbKhAm&;{<1TYL} zJ|F~~29j%QYfoI)wT~mdwYBvcxS_Hi6cO5O^&~I`Os%Y}Jhp9n_o(9WczhPP&V@Tyj; zeX(u(x8pcgqtW0|03Xfmy6f@n?M8D zSI<4^xC9&mD2N6Owh0H-FZA8l#XF!r!~{&~BGwhq2GW&quq}H~28p`HbQAXD52ees U3b0774FCWD07*qoM6N<$f?hgVNB{r; literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/text-select-end@2.png b/quickshell/matugen/gtk3-assets/text-select-end@2.png new file mode 100644 index 0000000000000000000000000000000000000000..3d56eb198eb00db496afb6a10616bd9348a5b35f GIT binary patch literal 1720 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 literal 0 HcmV?d00001 diff --git a/quickshell/matugen/gtk3-assets/text-select-start@2.png b/quickshell/matugen/gtk3-assets/text-select-start@2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b5c42d6fd2334324a44cac5f6333a936ab8fbd3 GIT binary patch literal 1747 zcmV;^1}yoBP)a>8TVs@q7_H%W(#Rmsm|>{%E?JIQwVj>5F+Lv)ODm z@lP`S!Z6P=J2M}idFJ`e^E`%#@TO!KMii(8BD#f3HUI-K)wXr-s9gjKY8QY!V2Ma^ z*?nFI+Axd=uoXlMwXIB{ZYPfyPW&CSi7$z-y^ZESqd_F&8S=MwmoBhws%*@!>*x186ckX<9?%cWYXV0F+fjK>;h={Cd!}Ve# z&;@h@-Me@1?zw*b`ky8yCO$6~i&S@C;4BW^6T_6e=M~@!u z=USEEtAiRtpCcH*U8A@2Au0zFaOhy&fS@O;4UY`6ti|yr&KfR|8Js#_!Ja z=gnm>3cXXIW0j!mfHvTR zW5?InQv z#SEaSEebRMbyu%m{arjB?|5Tr;5F3J(o%=}o*BTBv=ze*jk+U8j{KmzyZcu`09H~{ zQ&Ws`XwA71AP&?XKYskzhGEnMhq+V@4GrD`W>Vtm2<|eyDV0iXYHx4f6A0ZJD!O;?-g8`F0mQ@wH-XTeJ$ssigsUXS zaSFr3!wV=dCC~;CYHDh#4-&AFEX$g(EX%>I8$qE#vxu&W|5wUpvrp9Y3S9BL>;TNn z%&b;qZn!2UCcaTKr+df5j}_iyhZbO8Tk&!P0;H#*yv9T}I z%%Lx$h}b56dnyY!0|Ns$M8vLejSbh8D_5?onMFg`JLa_s8i5qh`{>c5e*|2t$n5Ow zSGcv|PjP!L2_PmSm?Gje01IgAX>f4xGyJd#MAxoe`>UGs`0?!S#jgz$z&oh7M@L8h z7L=E#rl!8c^>Po;u56n{Yguna%;Uz41^gFq4jw%CXUnoC*W07zavY~{^5n@g`ZJ3r z2xW97ekC5m_x5(6_w?!0eYS1qH`2>DZ{9qOAIt5yO``;0F0#tQ@v!2)r zbm$}d(0f5ACnvvnRruN2*?Si*TsT$|4!eLKmH}@r4-0QwaZsdHdcAtSR>LNw7pn#6 z>+Ad8;lqc2(b3VdE167gU8%t%B2Ffg85tiRzkBiG#m`TjIyI_?93X?6)@-$lxal`5 z?!vd6Z6#<0_gV`kZf_)BVtW%U1E96FwdTNq1FbuD?06?0kH<{YH0S5%Up#p5;OWrN z(7#7UMy!%c+qf&;f`aGqzb_nMekI^lp%vWobPc}OWB4<{7;e^yvcgCX|6?bQyMTFB zh^^q>!chbkWEH42&k=QISPC1}-=$4V@0eG{d7dl(YAlw)3y>3$9Ba@^4L?iT!4ZW5 z_X&h`?{%xnh@HP02%W`?(UMW{DuO*PL7P~9n|5c!uT)
?7j?JGvDCTVAus_#eZ^x_9ZN#|Qub002ovPDHLkV1fo5Qknn& literal 0 HcmV?d00001 diff --git a/quickshell/scripts/gtk.sh b/quickshell/scripts/gtk.sh index 454b0f236..0c1e5a4c0 100755 --- a/quickshell/scripts/gtk.sh +++ b/quickshell/scripts/gtk.sh @@ -1,12 +1,49 @@ #!/usr/bin/env bash CONFIG_DIR="$1" +SHELL_DIR="$3" if [ -z "$CONFIG_DIR" ]; then - echo "Usage: $0 " >&2 + echo "Usage: $0 [is_light] [shell_dir]" >&2 exit 1 fi +# The light template references adw-gtk3 image assets relative to gtk.css +# (check/radio glyphs, slider knobs); without them checked boxes render as +# solid blocks. +link_gtk3_assets() { + local gtk3_dir="$1" + local assets_link="$gtk3_dir/assets" + + if [ -e "$assets_link" ] && [ ! -L "$assets_link" ]; then + echo "Leaving user-managed $assets_link in place" + return + fi + + local candidates=( + "$HOME/.local/share/themes/adw-gtk3/gtk-3.0/assets" + "$HOME/.themes/adw-gtk3/gtk-3.0/assets" + "/usr/share/themes/adw-gtk3/gtk-3.0/assets" + "/usr/local/share/themes/adw-gtk3/gtk-3.0/assets" + ) + local target="" + for c in "${candidates[@]}"; do + if [ -d "$c" ]; then + target="$c" + break + fi + done + if [ -z "$target" ] && [ -n "$SHELL_DIR" ] && [ -d "$SHELL_DIR/matugen/gtk3-assets" ]; then + target="$SHELL_DIR/matugen/gtk3-assets" + fi + if [ -z "$target" ]; then + return + fi + + ln -sfn "$target" "$assets_link" + echo "Linked GTK3 assets: $assets_link -> $target" +} + apply_gtk3_colors() { local config_dir="$1" @@ -29,6 +66,8 @@ apply_gtk3_colors() { ln -s "dank-colors.css" "$gtk_css" echo "Created symlink: $gtk_css -> dank-colors.css" + + link_gtk3_assets "$gtk3_dir" } apply_gtk4_colors() { @@ -58,6 +97,15 @@ apply_gtk4_colors() { echo "Updated GTK4 CSS import" } +# Repair pass for shells whose gtk.css was linked before asset handling +# existed; only acts when DMS already manages gtk.css. +if [ "$4" = "assets-only" ]; then + if [ -L "$CONFIG_DIR/gtk-3.0/gtk.css" ]; then + link_gtk3_assets "$CONFIG_DIR/gtk-3.0" + fi + exit 0 +fi + mkdir -p "$CONFIG_DIR/gtk-3.0" "$CONFIG_DIR/gtk-4.0" apply_gtk3_colors "$CONFIG_DIR"