adding theme and another related projects
|
@ -0,0 +1,33 @@
|
|||
# EditorConfig helps developers define and maintain consistent
|
||||
# coding styles between different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
|
||||
[*]
|
||||
|
||||
# change these settings to your own preference
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
# we recommend you to keep these unchanged
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.yml]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
|
||||
[*.sh]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
|
@ -0,0 +1,247 @@
|
|||
# Contributing to the Numix Project
|
||||
|
||||
:+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
|
||||
|
||||
The following is a set of guidelines for contributing to the Numix Project and its visual works, which are hosted in the [Numix Project Organization](https://github.com/numixproject) on GitHub.
|
||||
These are just guidelines, not rules, use your best judgment and feel free to propose changes to this document in a pull request.
|
||||
|
||||
#### Table Of Contents
|
||||
|
||||
[What should I know before I get started?](#what-should-i-know-before-i-get-started)
|
||||
* [Code of Conduct](#code-of-conduct)
|
||||
|
||||
[How Can I Contribute?](#how-can-i-contribute)
|
||||
* [Reporting Bugs](#reporting-bugs)
|
||||
* [Suggesting Enhancements](#suggesting-enhancements)
|
||||
* [Your First Code Contribution](#your-first-code-contribution)
|
||||
* [Pull Requests](#pull-requests)
|
||||
|
||||
[Style Guides](#styleguides)
|
||||
* [Git Commit Messages](#git-commit-messages)
|
||||
|
||||
[Additional Notes](#additional-notes)
|
||||
* [Issue and Pull Request Labels](#issue-and-pull-request-labels)
|
||||
|
||||
## What should I know before I get started?
|
||||
|
||||
### Code of Conduct
|
||||
|
||||
This project adheres to the Contributor Covenant [code of conduct](/CODE_OF_CONDUCT.md).
|
||||
By participating, you are expected to uphold this code.
|
||||
Please report unacceptable behavior to [numixproject@github.com](mailto:numixproject@github.com).
|
||||
|
||||
## How Can I Contribute?
|
||||
|
||||
### Reporting Bugs
|
||||
|
||||
This section guides you through submitting a bug report for a Numix product/project. Following these guidelines helps maintainers and the community understand your report :pencil:, reproduce the behavior :computer: :computer:, and find related reports :mag_right:.
|
||||
|
||||
Before creating bug reports, please check [this list](#before-submitting-a-bug-report) as you might find out that you don't need to create one. When you are creating a bug report, please [include as many details as possible](#how-do-i-submit-a-good-bug-report). Please try not to deviate away from the predefined issue template's format as doing so will delay the review of your issue.
|
||||
|
||||
#### Before Submitting A Bug Report
|
||||
|
||||
* **Most importantly**, check to see if you can reproduce the problem while using the latest version of the product/project from its [`master` branch](https://github.com/numixproject/numix-gtk-theme/tree/master).
|
||||
* **Perform a [cursory search](https://github.com/issues?q=+is%3Aissue+user%3Anumixproject)** to see if the problem has already been reported. If it has, add a *thumbs up* reaction to the existing issue instead of opening a new one. Only add comments to issues when you have new information to provide that is relevant to the issue.
|
||||
|
||||
#### How Do I Submit A (Good) Bug Report?
|
||||
|
||||
Bugs are tracked as [GitHub issues](https://guides.github.com/features/issues/). After you've determined [which repository](http://github.com/numixproject) your bug is related to, create an issue on that repository and provide the following information.
|
||||
|
||||
Explain the problem and include additional details to help maintainers reproduce the problem:
|
||||
|
||||
* **Use a clear and descriptive title** for the issue to identify the problem. The **preferred format for issue titles** is:
|
||||
* `General Scope :: Specialized Scope :: One-sentence description of the issue`
|
||||
* Example: `GTK 3.20 :: Nautilus :: Active tab is not easily distinguishable from other tabs`
|
||||
* **Describe the exact steps which reproduce the problem** in as many details as possible.
|
||||
* **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior.
|
||||
* **Explain which behavior you expected to see instead and why.**
|
||||
* **Include screenshots and, when applicable, animated GIFs** which clearly demonstrate the problem. You can use [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) to create animated GIFs on Linux.
|
||||
|
||||
Provide more context by answering these questions when applicable:
|
||||
|
||||
* **Did the problem start happening recently** (e.g. after updating to a new version of the product) or was this always a problem?
|
||||
* If the problem started happening recently, **can you reproduce the problem in an older version of the product?** What's the most recent version in which the problem doesn't happen? You can download older versions of the product from [its releases page](https://github.com/numixproject/).
|
||||
* **Can you reliably reproduce the issue?** If not, provide details about how often the problem happens and under which conditions it normally happens.
|
||||
|
||||
Include details about your configuration and environment:
|
||||
|
||||
* **Which version of the product are you using?**
|
||||
* **What's the name and version of the distribution you're using**?
|
||||
* **Which version of GTK do you have installed?**
|
||||
|
||||
#### Template For Submitting Bug Reports
|
||||
|
||||
When you create a new issue, you will see that a structured template has been pre-filled for you. Please try not to deviate away from the template.
|
||||
|
||||
### Suggesting Enhancements
|
||||
|
||||
This section guides you through submitting an enhancement suggestion for a Numix product/project, including completely new features/designs and minor improvements to existing features/designs. Following these guidelines helps maintainers and the community understand your suggestion :pencil: and find related suggestions :mag_right:.
|
||||
|
||||
Before creating enhancement suggestions, please check [this list](#before-submitting-an-enhancement-suggestion) as you might find out that you don't need to create one. When you are creating an enhancement suggestion, please [include as many details as possible](#how-do-i-submit-a-good-enhancement-suggestion). Try not to deviate away from the predefined issue template's format as doing so will delay the review of your issue.
|
||||
|
||||
#### Before Submitting An Enhancement Suggestion
|
||||
|
||||
* **Perform a [cursory search](https://github.com/issues?q=+is%3Aissue+user%3Anumixproject)** to see if the enhancement has already been suggested. If it has, add a *thumbs up* reaction to the existing issue instead of opening a new one.
|
||||
|
||||
#### How Do I Submit A (Good) Enhancement Suggestion?
|
||||
|
||||
Enhancement suggestions are tracked as [GitHub issues](https://guides.github.com/features/issues/). After you've determined [which repository](http://github.com/numixproject) your enhancement suggestions is related to, create an issue on that repository and provide the following information:
|
||||
|
||||
* **Use a clear and descriptive title** for the issue to identify the problem. The **preferred format for issue titles** is:
|
||||
* `General Scope :: Specialized Scope :: One-sentence description of the suggested enhancement`
|
||||
* Example: `MATE Desktop :: Panel :: Add support for MATE Panel`
|
||||
* **Provide a detailed description of the suggested enhancement**.
|
||||
* **Include screenshots and, where applicable, animated GIFs** which help you demonstrate the current vs. desired results or to point out the part of the product/project to which the suggestion relates. You can use [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) to create animated GIFs on Linux.
|
||||
* **Explain why this enhancement is needed**.
|
||||
* **Specify which version of the product/project you're using.**.
|
||||
* **Specify the name and version of the distribution you're using.**
|
||||
|
||||
#### Template For Submitting Enhancement Suggestions
|
||||
|
||||
When you create a new issue, you will see that a structured template has been pre-filled for you. Please try not to deviate away from the template.
|
||||
|
||||
### Your First Code Contribution
|
||||
|
||||
Unsure where to begin contributing to Numix? You can start by looking through these `beginner` and `help-wanted` issues:
|
||||
|
||||
* [Beginner issues][beginner] - issues that should only require a few lines of code.
|
||||
* [Help welcomed issues][help-welcomed] - issues that should be a bit more involved than `beginner` issues.
|
||||
|
||||
Both issue lists are sorted by total number of *thumbs up* reactions which is a reasonable proxy for the impact a given change will have.
|
||||
|
||||
### Pull Requests
|
||||
|
||||
* Every pull request should directly address at least one existing github issue. All activity related to the review of a pull request will be tracked on the github issue targeted by the pull request including comments, questions, feedback, etc.
|
||||
* If there is no existing github issue, you should create one prior to submitting your pull request.
|
||||
* Your commit message should directly reference the issue it addresses ("Fix \#123" or "Fixes \#123").
|
||||
* Pull requests should not include large scale changes. **Always** break up large scale changes into multiple pull requests.
|
||||
* Since most Numix products/projects are visual design oriented, **always** include before/after screenshots and, when applicable, animated GIFs in your pull requests.
|
||||
* Follow the [Sass](#sass-styleguide) and [CSS](https://github.com/styleguide/css) style guides.
|
||||
* End files with a newline.
|
||||
|
||||
## Style Guides
|
||||
|
||||
### Git Commit Messages
|
||||
|
||||
* Use the present tense ("Add feature" not "Added feature")
|
||||
* Limit the first line to 72 characters or less
|
||||
* Reference issues and other pull requests liberally
|
||||
|
||||
## Additional Notes
|
||||
|
||||
### Issue and Pull Request Labels
|
||||
|
||||
This section lists the labels we use to help us track and manage issues and pull requests. Most labels are used across all Numix repositories, but some are specific to `numixproject/numix-gtk-theme`.
|
||||
|
||||
[GitHub search](https://help.github.com/articles/searching-issues/) makes it easy to use labels for finding groups of issues or pull requests you're interested in. For example, you might be interested in [open issues across `numixproject/numix-gtk-theme` and all Numix products/projects which are labeled as bugs, but still need to be confirmed (reliably reproduced)](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Abug+label%3Aneeds-confirmation) or perhaps [open pull requests in `numixproject/numix-gtk-theme` which haven't been reviewed yet](https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+repo%3Anumixproject%2Fnumix-gtk-theme+comments%3A0).
|
||||
|
||||
To help you find issues and pull requests, each label is listed with search links for finding open items with that label in `numixproject/numix-gtk-theme` only as well as across all Numix repositories. We encourage you to read about [other search filters](https://help.github.com/articles/searching-issues/) which will help you write more focused queries.
|
||||
|
||||
The labels are loosely grouped by their purpose, but it's not required that every issue have a label from every group nor that an issue can't have more than one label from the same group.
|
||||
|
||||
Please open an issue on numixproject/numix-gtk-theme if you have suggestions for new labels, and if you notice some labels are missing on some repositories, then please open an issue on that repository.
|
||||
|
||||
#### Type of Issue and Issue State
|
||||
|
||||
| Label name | `numix-gtk-theme` :mag_right: | `numixproject`‑org :mag_right: | Description |
|
||||
| --- | --- | --- | --- |
|
||||
| `enhancement` | [search][search-numix-gtk-theme-repo-label-enhancement] | [search][search-numixproject-org-label-enhancement] | Feature requests. |
|
||||
| `bug` | [search][search-numix-gtk-theme-repo-label-bug] | [search][search-numixproject-org-label-bug] | Confirmed bugs or reports that are very likely to be bugs. |
|
||||
| `help-welcomed` | [search][search-numix-gtk-theme-repo-label-help-welcomed] | [search][search-numixproject-org-label-help-welcomed] | The Nunmix Project core team would appreciate help from the community in resolving these issues. |
|
||||
| `beginner` | [search][search-numix-gtk-theme-repo-label-beginner] | [search][search-numixproject-org-label-beginner] | Less complex issues which would be good first issues to work on for users who want to contribute to Numix. |
|
||||
| `needs-more-information` | [search][search-numix-gtk-theme-repo-label-needs-more-information] | [search][search-numixproject-org-label-needs-more-information] | More information needs to be collected about these problems or feature requests (e.g. steps to reproduce). |
|
||||
| `needs-confirmation` | [search][search-numix-gtk-theme-repo-label-needs-confirmation] | [search][search-numixproject-org-label-needs-confirmation] | Likely bugs, but haven't been reliably reproduced. |
|
||||
| `duplicate` | [search][search-numix-gtk-theme-repo-label-duplicate] | [search][search-numixproject-org-label-duplicate] | Issues which are duplicates of other issues, i.e. they have been reported before. |
|
||||
| `wontfix` | [search][search-numix-gtk-theme-repo-label-wontfix] | [search][search-numixproject-org-label-wontfix] | The Numix Project core team has decided not to fix these issues for now, either because they're working as intended or for some other reason. |
|
||||
| `invalid` | [search][search-numix-gtk-theme-repo-label-invalid] | [search][search-numixproject-org-label-invalid] | Issues which aren't valid (e.g. user errors). |
|
||||
|
||||
#### Topic Categories
|
||||
|
||||
| Label name | `numix-gtk-theme` :mag_right: | `numixproject`‑org :mag_right: | Description |
|
||||
| --- | --- | --- | --- |
|
||||
| `GTK` | [search][search-numix-gtk-theme-repo-label-gtk] | [search][search-numixproject-org-label-gtk] | Related to GTK. |
|
||||
| `KDE` | [search][search-numix-gtk-theme-repo-label-kde] | [search][search-numixproject-org-label-kde] | Related to KDE. |
|
||||
| `Xfce` | [search][search-numix-gtk-theme-repo-label-xfce] | [search][search-numixproject-org-label-xfce] | Related to Xfce. |
|
||||
| `Openbox` | [search][search-numix-gtk-theme-repo-label-openbox] | [search][search-numixproject-org-label-openbox] | Related to Openbox. |
|
||||
| `Unity` | [search][search-numix-gtk-theme-repo-label-unity] | [search][search-numixproject-org-label-unity] | Related to Unity. |
|
||||
| `Cinnamon` | [search][search-numix-gtk-theme-repo-label-cinnamon] | [search][search-numixproject-org-label-cinnamon] | Related to Cinnamon. |
|
||||
| `GNOME Shell` | [search][search-numix-gtk-theme-repo-label-gnome-shell] | [search][search-numixproject-org-label-gnome-shell] | Related to GNOME Shell. |
|
||||
| `GTK 2.0` | [search][search-numix-gtk-theme-repo-label-gtk-2.0] | [search][search-numixproject-org-label-gtk-2.0] | Related to GTK 2.0. |
|
||||
| `GTK 3.16` | [search][search-numix-gtk-theme-repo-label-gtk-3.16] | [search][search-numixproject-org-label-gtk-3.16] | Related to GTK 3.16. |
|
||||
| `GTK 3.18` | [search][search-numix-gtk-theme-repo-label-gtk-3.18] | [search][search-numixproject-org-label-gtk-3.18] | Related to GTK 3.18. |
|
||||
| `GTK 3.20` | [search][search-numix-gtk-theme-repo-label-gtk-3.20] | [search][search-numixproject-org-label-gtk-3.20] | Related to GTK 3.20. |
|
||||
| `GTK 3.22` | [search][search-numix-gtk-theme-repo-label-gtk-3.22] | [search][search-numixproject-org-label-gtk-3.22] | Related to GTK 3.22. |
|
||||
| `metacity/mutter` | [search][search-numix-gtk-theme-repo-label-metacity-mutter] | [search][search-numixproject-org-label-metacity-mutter] | Related to Metacity/Mutter. |
|
||||
|
||||
#### Pull Request Labels
|
||||
|
||||
| Label name | `numix-gtk-theme` :mag_right: | `numixproject`‑org :mag_right: | Description
|
||||
| --- | --- | --- | --- |
|
||||
| `work-in-progress` | [search][search-numix-gtk-theme-repo-label-work-in-progress] | [search][search-numixproject-org-label-work-in-progress] | Pull requests which are still being worked on, more changes will follow. |
|
||||
| `needs-review` | [search][search-numix-gtk-theme-repo-label-needs-review] | [search][search-numixproject-org-label-needs-review] | Pull requests which need code review, and approval from maintainers or Numix Project core team. |
|
||||
| `acknowledged` | [search][search-numix-gtk-theme-repo-label-acknowledged] | [search][search-numixproject-org-label-acknowledged] | Pull requests that have been acknowledged/claimed by a maintainer or Numix Project core team member for later review. |
|
||||
| `under-review` | [search][search-numix-gtk-theme-repo-label-under-review] | [search][search-numixproject-org-label-under-review] | Pull requests being reviewed by maintainers or Numix Project core team. |
|
||||
| `requires-changes` | [search][search-numix-gtk-theme-repo-label-requires-changes] | [search][search-numixproject-org-label-requires-changes] | Pull requests which need to be updated based on review comments and then reviewed again. |
|
||||
| `needs-testing` | [search][search-numix-gtk-theme-repo-label-needs-testing] | [search][search-numixproject-org-label-needs-testing] | Pull requests which need manual testing. |
|
||||
|
||||
|
||||
[search-numix-gtk-theme-repo-label-enhancement]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aenhancement
|
||||
[search-numixproject-org-label-enhancement]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aenhancement
|
||||
[search-numix-gtk-theme-repo-label-bug]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Abug
|
||||
[search-numixproject-org-label-bug]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Abug
|
||||
[search-numix-gtk-theme-repo-label-help-welcomed]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Ahelp-welcomed
|
||||
[search-numixproject-org-label-help-welcomed]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Ahelp-welcomed
|
||||
[search-numix-gtk-theme-repo-label-beginner]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Abeginner
|
||||
[search-numixproject-org-label-beginner]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Abeginner
|
||||
[search-numix-gtk-theme-repo-label-needs-more-information]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aneeds-more-information
|
||||
[search-numixproject-org-label-needs-more-information]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aneeds-more-information
|
||||
[search-numix-gtk-theme-repo-label-needs-confirmation]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aneeds-confirmation
|
||||
[search-numixproject-org-label-needs-confirmation]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aneeds-confirmation
|
||||
[search-numix-gtk-theme-repo-label-duplicate]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aduplicate
|
||||
[search-numixproject-org-label-duplicate]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aduplicate
|
||||
[search-numix-gtk-theme-repo-label-wontfix]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Awontfix
|
||||
[search-numixproject-org-label-wontfix]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Awontfix
|
||||
[search-numix-gtk-theme-repo-label-invalid]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Ainvalid
|
||||
[search-numixproject-org-label-invalid]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Ainvalid
|
||||
|
||||
[search-numix-gtk-theme-repo-label-gtk]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk
|
||||
[search-numixproject-org-label-gtk]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk
|
||||
[search-numix-gtk-theme-repo-label-kde]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Akde
|
||||
[search-numixproject-org-label-kde]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Akde
|
||||
[search-numix-gtk-theme-repo-label-xfce]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Axfce
|
||||
[search-numixproject-org-label-xfce]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Axfce
|
||||
[search-numix-gtk-theme-repo-label-openbox]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aopenbox
|
||||
[search-numixproject-org-label-openbox]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aopenbox
|
||||
[search-numix-gtk-theme-repo-label-unity]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aunity
|
||||
[search-numixproject-org-label-unity]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aunity
|
||||
[search-numix-gtk-theme-repo-label-cinnamon]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Acinnamon
|
||||
[search-numixproject-org-label-cinnamon]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Acinnamon
|
||||
[search-numix-gtk-theme-repo-label-gnome-shell]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agnome-shell
|
||||
[search-numixproject-org-label-gnome-shell]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agnome-shell
|
||||
[search-numix-gtk-theme-repo-label-gtk-2.0]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk-2.0
|
||||
[search-numixproject-org-label-gtk-2.0]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk-2.0
|
||||
[search-numix-gtk-theme-repo-label-gtk-3.16]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk-3.16
|
||||
[search-numixproject-org-label-gtk-3.16]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk-3.16
|
||||
[search-numix-gtk-theme-repo-label-gtk-3.18]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk-3.18
|
||||
[search-numixproject-org-label-gtk-3.18]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk-3.18
|
||||
[search-numix-gtk-theme-repo-label-gtk-3.20]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk-3.20
|
||||
[search-numixproject-org-label-gtk-3.20]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk-3.20
|
||||
[search-numix-gtk-theme-repo-label-gtk-3.22]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Agtk-3.22
|
||||
[search-numixproject-org-label-gtk-3.22]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Agtk-3.22
|
||||
[search-numix-gtk-theme-repo-label-metacity-mutter]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Ametacity-mutter
|
||||
[search-numixproject-org-label-metacity-mutter]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Ametacity-mutter
|
||||
[search-numix-gtk-theme-repo-label-work-in-progress]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Awork-in-progress
|
||||
[search-numixproject-org-label-work-in-progress]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Awork-in-progress
|
||||
[search-numix-gtk-theme-repo-label-needs-review]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aneeds-review
|
||||
[search-numixproject-org-label-needs-review]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aneeds-review
|
||||
[search-numix-gtk-theme-repo-label-acknowledged]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aacknowledged
|
||||
[search-numixproject-org-label-acknowledged]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aacknowledged
|
||||
[search-numix-gtk-theme-repo-label-under-review]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aunder-review
|
||||
[search-numixproject-org-label-under-review]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aunder-review
|
||||
[search-numix-gtk-theme-repo-label-requires-changes]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Arequires-changes
|
||||
[search-numixproject-org-label-requires-changes]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Arequires-changes
|
||||
[search-numix-gtk-theme-repo-label-needs-testing]: https://github.com/issues?q=is%3Aopen+is%3Aissue+repo%3Anumixproject%2Fnumix-gtk-theme+label%3Aneeds-testing
|
||||
[search-numixproject-org-label-needs-testing]: https://github.com/issues?q=is%3Aopen+is%3Aissue+user%3Anumixproject+label%3Aneeds-testing
|
||||
|
||||
[beginner]:https://github.com/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3Abeginner+label%3Ahelp-wanted+user%3Anumixproject+sort%3Acomments-desc
|
||||
[help-wanted]:https://github.com/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp-wanted+user%3Anumixproject+sort%3Acomments-desc
|
|
@ -0,0 +1,11 @@
|
|||
# Ignore Backup Copies from Text Editor
|
||||
*~
|
||||
|
||||
# Ignore SASS files
|
||||
.sass-cache
|
||||
gtk.gresource
|
||||
dist
|
||||
|
||||
# Jetbrains IDEs
|
||||
.idea
|
||||
*.iml
|
|
@ -0,0 +1,2 @@
|
|||
scss:
|
||||
config_file: .scss-lint.yml
|
|
@ -0,0 +1,196 @@
|
|||
linters:
|
||||
|
||||
BangFormat:
|
||||
enabled: true
|
||||
space_before_bang: true
|
||||
space_after_bang: false
|
||||
|
||||
BorderZero:
|
||||
enabled: true
|
||||
|
||||
ColorKeyword:
|
||||
enabled: true
|
||||
|
||||
ColorVariable:
|
||||
enabled: true
|
||||
|
||||
Comment:
|
||||
enabled: false
|
||||
|
||||
DebugStatement:
|
||||
enabled: true
|
||||
|
||||
DeclarationOrder:
|
||||
enabled: true
|
||||
|
||||
DisableLinterReason:
|
||||
enabled: false
|
||||
|
||||
DuplicateProperty:
|
||||
enabled: true
|
||||
|
||||
ElsePlacement:
|
||||
enabled: true
|
||||
style: same_line
|
||||
|
||||
EmptyLineBetweenBlocks:
|
||||
enabled: true
|
||||
ignore_single_line_blocks: false
|
||||
|
||||
EmptyRule:
|
||||
enabled: true
|
||||
|
||||
ExtendDirective:
|
||||
enabled: false
|
||||
|
||||
FinalNewline:
|
||||
enabled: true
|
||||
present: true
|
||||
|
||||
HexLength:
|
||||
enabled: true
|
||||
style: short
|
||||
|
||||
HexNotation:
|
||||
enabled: true
|
||||
style: lowercase
|
||||
|
||||
HexValidation:
|
||||
enabled: true
|
||||
|
||||
IdSelector:
|
||||
enabled: false
|
||||
|
||||
ImportantRule:
|
||||
enabled: true
|
||||
|
||||
ImportPath:
|
||||
enabled: true
|
||||
leading_underscore: false
|
||||
filename_extension: false
|
||||
|
||||
Indentation:
|
||||
enabled: true
|
||||
character: space
|
||||
width: 4
|
||||
|
||||
LeadingZero:
|
||||
enabled: true
|
||||
style: exclude_zero
|
||||
|
||||
MergeableSelector:
|
||||
enabled: false
|
||||
|
||||
NameFormat:
|
||||
enabled: false
|
||||
convention: hyphenated_lowercase
|
||||
|
||||
NestingDepth:
|
||||
enabled: true
|
||||
max_depth: 5
|
||||
|
||||
PlaceholderInExtend:
|
||||
enabled: false
|
||||
|
||||
PropertyCount:
|
||||
enabled: false
|
||||
|
||||
PropertySortOrder:
|
||||
enabled: false
|
||||
|
||||
PropertySpelling:
|
||||
enabled: true
|
||||
extra_properties: [ "icon-shadow", "outline-radius" ]
|
||||
|
||||
PropertyUnits:
|
||||
enabled: true
|
||||
global: [ "px", "%", "s", "ms" ]
|
||||
|
||||
PseudoElement:
|
||||
enabled: false
|
||||
|
||||
QualifyingElement:
|
||||
enabled: false
|
||||
allow_element_with_attribute: false
|
||||
allow_element_with_class: false
|
||||
allow_element_with_id: false
|
||||
|
||||
SelectorDepth:
|
||||
enabled: true
|
||||
max_depth: 5
|
||||
|
||||
SelectorFormat:
|
||||
enabled: false
|
||||
convention: hyphenated_lowercase
|
||||
|
||||
Shorthand:
|
||||
enabled: true
|
||||
|
||||
SingleLinePerProperty:
|
||||
enabled: true
|
||||
allow_single_line_rule_sets: true
|
||||
|
||||
SingleLinePerSelector:
|
||||
enabled: false
|
||||
|
||||
SpaceAfterComma:
|
||||
enabled: true
|
||||
|
||||
SpaceAfterPropertyColon:
|
||||
enabled: true
|
||||
style: one_space
|
||||
|
||||
SpaceAfterPropertyName:
|
||||
enabled: true
|
||||
|
||||
SpaceAfterVariableName:
|
||||
enabled: true
|
||||
|
||||
SpaceAroundOperator:
|
||||
enabled: true
|
||||
|
||||
SpaceBeforeBrace:
|
||||
enabled: true
|
||||
style: space
|
||||
allow_single_line_padding: true
|
||||
|
||||
SpaceBetweenParens:
|
||||
enabled: true
|
||||
spaces: 0
|
||||
|
||||
StringQuotes:
|
||||
enabled: true
|
||||
style: double_quotes
|
||||
|
||||
TrailingSemicolon:
|
||||
enabled: true
|
||||
|
||||
TrailingZero:
|
||||
enabled: true
|
||||
|
||||
UnnecessaryMantissa:
|
||||
enabled: true
|
||||
|
||||
UnnecessaryParentReference:
|
||||
enabled: true
|
||||
|
||||
UrlFormat:
|
||||
enabled: false
|
||||
|
||||
UrlQuotes:
|
||||
enabled: true
|
||||
|
||||
VariableForProperty:
|
||||
enabled: false
|
||||
|
||||
VendorPrefix:
|
||||
enabled: false
|
||||
identifier_list: base
|
||||
include: []
|
||||
exclude: []
|
||||
|
||||
ZeroUnit:
|
||||
enabled: true
|
||||
|
||||
Compass::*:
|
||||
enabled: false
|
|
@ -0,0 +1,165 @@
|
|||
-------------->>>> 2.6.7 <<<<-------------------------->>>> 2.6.7 <<<<-------------------------->>>> 2.6.7 <<<<--------------
|
||||
[2017-10-14 13:52:32 +0530] Gtk-3.20: Add message summary and popover-list styles for geary Khurshid Alam {fd8e657}
|
||||
[2017-10-14 13:49:06 +0530] Update readme for Ubuntu and Debian Khurshid Alam {5d031a3}
|
||||
[2017-10-05 10:27:02 -0500] Update README.md Dustin Falgout {8d99a96}
|
||||
[2017-10-05 10:23:02 -0500] Update urls for distro logo images in README.md Dustin Falgout {a0bd7d1}
|
||||
[2017-08-30 00:16:16 +0100] Xfwm4: improve accessibility (wider bottom edge) Andrew Chadwick {6057a2d}
|
||||
[2017-07-26 02:03:28 -0500] Update CONTRIBUTING.md Dustin Falgout {858e629}
|
||||
[2017-07-26 02:01:53 -0500] Delete CODE_OF_CONDUCT.md Dustin Falgout {68d01fe}
|
||||
[2017-07-26 02:01:29 -0500] Create CODE_OF_CONDUCT.md Dustin Falgout {88632d8}
|
||||
[2017-06-15 14:27:30 +0530] [Gnome-Panel-3.24] Add style for tasklist-button Khurshid Alam {f2425ca}
|
||||
[2017-06-13 20:10:05 +0530] [Gtk-2.0] Set inkscape-decoration & gtk--small-toolbar icon to 16px.. Khurshid Alam {abf6111}
|
||||
[2017-06-13 02:39:50 +0530] [Gtk-3.20] Tilix: Do not bottom-border color Khurshid Alam {06be2fa}
|
||||
[2017-06-13 02:34:23 +0530] [Gtk-3.20] Tilix: Add bottom border for active titlebar. Fixes #657 Khurshid Alam {82568c7}
|
||||
[2017-06-06 12:53:28 +0530] [Gtk-3.20] Metacity: Use normal geometry-style for nautilus dialogs.. Khurshid Alam {deed3fb}
|
||||
[2017-05-14 21:20:12 -0500] Update README.md Dustin Falgout {30ae59b}
|
||||
[2017-05-10 20:03:46 +0530] Fix syntax error in previous commit Khurshid Alam {402fd48}
|
||||
[2017-05-10 14:05:55 +0530] [Gtk-3.18] Fix white border on tilix. Fixes #655 Khurshid Alam {4289b97}
|
||||
[2017-04-16 19:49:09 -0400] README: update Arch package name (#663) Ronan Jouchet {582f09f}
|
||||
[2017-04-14 22:11:26 +0530] [Gtk-3.22] Tweaks in popover.events list for gnome-calendar Khurshid Alam {487d8e6}
|
||||
[2017-04-08 22:58:43 +0530] Use darker background for solid-csd window. Fixes #659 Khurshid Alam {bf8f3b0}
|
||||
[2017-03-29 21:44:29 +0530] Fix indentation Khurshid Alam {35e5463}
|
||||
[2017-03-29 21:30:13 +0530] [Gtk-3.22] Re-Introduce disabled state under treeview.progressbar Khurshid Alam {ab172c2}
|
||||
[2017-03-29 19:35:48 +0530] [Gtk-3.22] Progressbar under Treeview: Minor fixes Khurshid Alam {c8828c7}
|
||||
[2017-03-21 01:23:40 -0500] Update README.md Dustin Falgout {deddc89}
|
||||
[2017-03-21 01:22:27 -0500] Update README.md Dustin Falgout {f55b6a7}
|
||||
[2017-03-13 22:38:18 +0530] [Gtk-3.22] Use box-shadow to draw border on Notebook tab Khurshid Alam {d99f46c}
|
||||
[2017-02-15 13:29:13 +0530] [Gtk-3.22] Separate titlebar mixin from toolbar Khurshid Alam {f25d7e0}
|
||||
[2017-02-15 12:46:53 +0530] Attempting to fix >1px height in linked combobox-button Khurshid Alam {f52633e}
|
||||
[2017-02-09 22:15:04 +0530] [Gtk-3.22] Provide gap between buttons in message dialog. 3.22 fix .. Khurshid Alam {ec299d4}
|
||||
[2017-02-09 22:06:13 +0530] [Gtk-3.22] Fixing & adjusting menu & modelbutton padding Khurshid Alam {653556d}
|
||||
[2017-02-08 20:20:55 +0530] [Gtk-3.20][Gtk-3.22] GtkCalendar under popover menu Khurshid Alam {0220883}
|
||||
[2017-02-07 16:06:37 +0530] [Gtk-3.22][Switches] Make slider to fall in-line with the text Khurshid Alam {23f1543}
|
||||
[2017-02-06 20:15:39 +0530] [Button-Redesign] Lighten active a checked state button color for l.. Khurshid Alam {d2f201b}
|
||||
[2017-02-06 18:25:09 +0530] Fixinng notebook-tab-active color and close button style Khurshid Alam {777d586}
|
||||
[2017-02-05 10:39:36 +0530] [Gtk-3.22][Button-Redesign] Spinbutton: Fixing color and entry border Khurshid Alam {85138a0}
|
||||
[2017-02-04 14:32:13 +0530] [Gtk-3.22][Button-Redesign] Fixed spinbutton hover-state color Khurshid Alam {8670cc0}
|
||||
[2017-02-04 00:44:26 +0530] [Gtk-3.22] Redesign-Buttons (Phase1) Khurshid Alam {9e4844a}
|
||||
[2017-01-30 22:22:09 +0530] Flatter button. More prominent shadow on hover. Fixing #370 Khurshid Alam {2363312}
|
||||
[2017-01-30 22:09:37 +0530] [Gtk-3.22] Normalize Switches. Fixes #396 Khurshid Alam {3be320f}
|
||||
[2017-01-23 12:43:55 +0100] [Gtk-3.22][Gtk-3.20] Fix iconview background for Unity-Control-Cent.. Csaba Jakosa {1a8c9bf}
|
||||
[2017-01-22 19:20:32 +0100] [GTK 3.22] Add hover effect for menuitem under Unity-LIM. Fixes #632 Csaba Jakosa {45210ca}
|
||||
[2017-01-12 21:39:54 +0530] Set Numix as default icon theme for MATE's theme picker. Fixes #488 Khurshid Alam {92b576f}
|
||||
[2016-11-19 16:36:45 -0600] Update README.md Dustin Falgout {0e4a840}
|
||||
[2016-11-19 23:34:56 +0100] Add Debian and Ubuntu official distro package, remove Ubuntu PPA. (.. Léo Andrès {b24ed9e}
|
||||
-------------->>>> 2.6.6 <<<<-------------------------->>>> 2.6.6 <<<<-------------------------->>>> 2.6.6 <<<<--------------
|
||||
[2016-11-14 16:22:11 -0600] update utils.sh script Dustin Falgout {795932a}
|
||||
[2016-11-10 05:37:27 +0100] [Gtk-3.20] Fixed gnome-terminal scrollbar color. Disable backdrop m.. Csaba Jakosa {9574a02}
|
||||
[2016-11-01 18:10:06 +0100] Disable box-shadow for osd button in fine-tune mode. Fixes #561. Csaba Jakosa {ad37d7f}
|
||||
[2016-11-01 19:08:14 +0200] [Gtk-3.20] Fix for volume OSD slider. Fixes #623 Nazar Mokrynskyi {14d2a48}
|
||||
[2016-11-01 13:58:47 +0530] GTKHEADERB 3.22 :: Create global OSD file (#628) Khurshid Alam {9ec47ab}
|
||||
[2016-11-01 09:21:28 +0100] * Fixed code. Megax {4d33256}
|
||||
[2016-11-01 09:18:25 +0100] * Create global OSD file. Megax {b3ba2ee}
|
||||
[2016-11-01 09:18:18 +0100] [Gtk-3.20] Fixed xfce4 code. Csaba Jakosa {a4cefd6}
|
||||
[2016-10-31 18:58:14 +0100] [GTK-3.20] Code Cleanup Csaba Jakosa {6d54958}
|
||||
[2016-10-30 18:30:58 +0200] [GTK-3.20] Added styling to Raven components of Budgie panel. Fixes.. Nazar Mokrynskyi {bbf9dd6}
|
||||
[2016-10-28 21:19:49 +0200] [GTK 3.20] Optimized sidebar padding Csaba Jakosa {30132a0}
|
||||
[2016-10-27 21:13:29 +0530] Fix syntax in previous commit Khurshid Alam {1d1d3a2}
|
||||
[2016-10-27 21:09:47 +0530] Fix discrete filled block inside levelbar. Fixes #619 Khurshid Alam {32f0fec}
|
||||
[2016-10-27 20:35:00 +0530] Tweak do_install in utils.sh Khurshid Alam {588a875}
|
||||
[2016-10-25 12:43:37 +0200] [GTK 3.20] Fixed notebook asymmetrical padding Csaba Jakosa {2f94d4c}
|
||||
[2016-10-24 08:39:15 +0200] [Gtk-3.20] Optimized notebook padding Csaba Jakosa {023bd6f}
|
||||
[2016-10-23 16:33:14 -0500] fix notebook tab padding issues for some applications. Fixes #588 Dustin Falgout {7ac68f6}
|
||||
[2016-10-23 17:15:11 +0200] * Nemo statusbar button padding fix. (#611) Csaba Jakosa {aea6d16}
|
||||
[2016-10-23 02:14:28 -0500] also support Numix-Frost-Light Dustin Falgout {05e6198}
|
||||
[2016-10-23 02:11:45 -0500] update zip task in Makefile to support both Numix and Numix-Frost Dustin Falgout {95fe512}
|
||||
[2016-10-23 00:11:17 -0500] utils.sh :: support Numix and Numix Frost when generating CHANGES f.. Dustin Falgout {ee50385}
|
||||
-------------->>>> 2.6.5 <<<<-------------------------->>>> 2.6.5 <<<<-------------------------->>>> 2.6.5 <<<<--------------
|
||||
[2016-10-22 20:36:07 -0500] add zip task to Makefile Dustin Falgout {5ccc199}
|
||||
[2016-10-22 20:18:42 -0500] utils.sh :: fix errors in do_install function Dustin Falgout {5f85cec}
|
||||
[2016-10-22 19:29:07 -0500] update utils.sh Dustin Falgout {b30fb3b}
|
||||
[2016-10-22 19:04:32 -0500] add missing version marker to CHANGES file Dustin Falgout {64cccd8}
|
||||
[2016-10-21 20:26:22 +0200] WebkitGtk Workaround. Fixes #572 Csaba Jakosa {7254e08}
|
||||
[2016-10-21 20:14:48 +0200] [GTK-3.20] Fix backdrop mode in Ubuntu. Fixes #585 Csaba Jakosa {a457b8f}
|
||||
[2016-10-21 17:19:04 +0200] Fixed openbox theme color. Fixes #369 Csaba Jakosa {25fa93c}
|
||||
[2016-10-20 21:49:56 +0200] Fix title-bar padding in gnome-builder. Fixes #605 Csaba Jakosa {f14b4d4}
|
||||
[2016-10-18 17:00:24 +0200] Optimized modelbutton code. Csaba Jakosa {690532b}
|
||||
[2016-10-18 16:59:38 +0200] Create and Restructure all assets Adwaita and Arc-theme style. Csaba Jakosa {f1c11cd}
|
||||
[2016-10-18 16:57:12 +0200] [Gtk-3.20] Fixed infobar structure and adding entry error and warn.. Csaba Jakosa {ed3e728}
|
||||
[2016-10-18 16:39:39 +0200] [Gtk-3.20] Porting gnome-panel code. Fixes #550 Csaba Jakosa {9962ab9}
|
||||
[2016-10-17 01:23:38 +0200] * Add a background to cellrendertext. Reference code: https://githu.. Csaba Jakosa {7304425}
|
||||
[2016-10-17 01:23:04 +0200] * Fixed scrollbar horizontal icon name. Reference code: https://git.. Csaba Jakosa {dd13e3b}
|
||||
[2016-10-16 20:03:53 +0200] [Gtk-3.20] Fix Combobox menu padding. Fixes #575 Csaba Jakosa {e4cb539}
|
||||
[2016-10-16 20:00:35 +0200] Remove duplicated code. Csaba Jakosa {51f1578}
|
||||
[2016-10-16 18:30:26 +0200] [Gtk-3.20] Optimized popover padding. Csaba Jakosa {16840bb}
|
||||
[2016-10-16 07:27:34 +0200] Adding monospace code. Csaba Jakosa {e3fa52a}
|
||||
[2016-10-16 07:27:02 +0200] Add conflict-row styling for nautilus. Fixes #576 Csaba Jakosa {fa648c5}
|
||||
[2016-10-16 07:24:44 +0200] [Gtk-3.22] Changed font syntax from Pango-style to CSS-style. Fixes.. Csaba Jakosa {49943fb}
|
||||
[2016-10-01 18:53:38 -0500] Update README.md Dustin Falgout {c138b78}
|
||||
[2016-10-01 18:00:30 -0500] remove old svg files (part of #508) Dustin Falgout {1d56b33}
|
||||
[2016-10-02 00:57:50 +0200] Adding single SVG asset file ready for batch export to PNG (#579) Set Hallstrom {f030e61}
|
||||
[2016-09-25 15:48:37 +0200] * Fixes #548 (#568) Csaba Jakosa {df38463}
|
||||
[2016-09-22 06:35:32 -0500] Update README.md Dustin Falgout {5a0ec95}
|
||||
[2016-09-21 23:13:08 -0500] update utils.sh. fix missing new line in CHANGES file. Dustin Falgout {776e3f1}
|
||||
-------------->>>> 2.6.4 <<<<-------------------------->>>> 2.6.4 <<<<-------------------------->>>> 2.6.4 <<<<--------------
|
||||
[2016-09-21 22:06:03 -0500] update install script for what should be the last time (at least fo.. Dustin Falgout {f8c7f0c}
|
||||
[2016-09-21 22:05:08 -0500] move assets into src directory Dustin Falgout {8df9804}
|
||||
[2016-09-21 22:04:17 -0500] move assets into src directory Dustin Falgout {c769c23}
|
||||
[2016-09-21 22:01:55 -0500] move assets into src directory Dustin Falgout {a0f0e73}
|
||||
[2016-09-22 01:21:54 +0530] Fix code in utils.sh Khurshid Alam {a50dee0}
|
||||
[2016-09-21 13:13:52 -0500] reenable old xfce styles in 3.20 until we can rewrite them. Dustin Falgout {3dc0bbe}
|
||||
[2016-09-21 21:43:04 +0530] Copy proper gtk.css in utils.sh. Fixes #569 Khurshid Alam {679bb1d}
|
||||
[2016-09-20 22:12:57 +0530] [Gtk-3.18] Re-enable xfce style. Fixes #566 Khurshid Alam {a0263e7}
|
||||
[2016-09-18 06:01:08 -0500] fix errors in do_install function Dustin Falgout {a3ab032}
|
||||
[2016-09-18 05:50:46 -0500] update Makefile (moved install commands to utils script) Dustin Falgout {a8205ba}
|
||||
[2016-09-18 05:15:06 -0500] move source files into subdirectory instead of being at repo root Dustin Falgout {62b93af}
|
||||
[2016-09-18 05:02:05 -0500] Update README.md Dustin Falgout {75bebed}
|
||||
[2016-09-18 04:59:57 -0500] Update README.md Dustin Falgout {2dccff1}
|
||||
[2016-09-18 04:31:07 -0500] Update CHANGES Dustin Falgout {539076b}
|
||||
[2016-09-18 04:23:37 -0500] add emacs mode string to CHANGES file (so hopefully, links to issue.. Dustin Falgout {ecfd664}
|
||||
[2016-09-18 04:15:02 -0500] RELEASE PREP :: Update CHANGES file. Dustin Falgout {df8e66d}
|
||||
[2016-09-18 04:14:33 -0500] add task to makefile for generating/updating CHANGES file before re.. Dustin Falgout {0e6c45b}
|
||||
[2016-09-18 03:15:15 -0500] RELEASE PREP :: Update CHANGES file. Dustin Falgout {840c1ff}
|
||||
[2016-09-18 02:57:43 -0500] add task to makefile for generating/updating CHANGES file before re.. Dustin Falgout {040b869}
|
||||
[2016-09-18 02:26:56 -0500] add osd color variables to compiled css output Dustin Falgout {44d407e}
|
||||
[2016-09-18 02:26:03 -0500] disable some unused styles for xfce Dustin Falgout {7e617ce}
|
||||
[2016-09-18 02:24:17 -0500] move gtk3 styles for xfce4-notifyd into sass Dustin Falgout {30b14f7}
|
||||
[2016-09-11 14:01:44 -0500] Updating readme to specifically list package names. Fixes #555 & #493 Naren Dasan {dbf231b}
|
||||
[2016-09-11 20:59:22 +0200] Implement combobox vertical code. Csaba Jakosa {a6f9a10}
|
||||
[2016-09-05 20:38:51 +0200] GTK 3.20 :: Fix #560 (#563) Csaba Jakosa {f7f927a}
|
||||
[2016-09-05 15:40:39 +0200] [Gtk-3.20] Fix for default osd button color. Csaba Jakosa {69b3706}
|
||||
[2016-09-04 08:37:08 +0200] [Gtk-3.18] Use icon-shadow instead of -gtk-icon-shadow. Fixes #558 Csaba Jakosa {90d74c5}
|
||||
[2016-09-03 11:00:42 +0200] GTK 3.20 :: Clean code (#553) Csaba Jakosa {67bf7e2}
|
||||
[2016-09-03 10:32:19 +0200] * Fixes #137 (#554) Csaba Jakosa {c997dd3}
|
||||
[2016-09-03 10:31:53 +0200] * Removed osd duplicated code and fixed flowbox selected code. (#543) Csaba Jakosa {1c2185a}
|
||||
[2016-09-03 10:31:24 +0200] * [GTK 3.20] Selection mode rewrite. Fixed #545 (#546) Csaba Jakosa {f8354bd}
|
||||
[2016-09-03 10:29:40 +0200] * [GTK 3.20] Fixed #540 (#541) Csaba Jakosa {ae7ff0d}
|
||||
[2016-09-02 17:21:19 +0200] [Gtk-3.20] Paned separator in the headerbar. Fixes #551 marmis85 {cb3e031}
|
||||
[2016-09-02 17:19:32 +0200] [Gtk-3.20] Refactor toolbar code. Fixes #486 Csaba Jakosa {e2658ff}
|
||||
[2016-08-31 20:08:31 +0200] [Gtk-3.20] Redecorate osd toolbar & fix volume slider. Fixes #463 Csaba Jakosa {ff98d44}
|
||||
[2016-08-31 21:26:48 +0530] [Gtk-3.20] Re-adjust titlebar(for Unity), headerbar and toolbar hei.. Khurshid Alam {03bb8b3}
|
||||
[2016-08-31 20:03:05 +0530] Merge pull request #542 from megax/patch15 Khurshid Alam {9c07db4}
|
||||
[2016-08-31 13:42:27 +0200] * Minimal fix #452 Megax {8547acc}
|
||||
[2016-08-31 15:47:06 +0530] [Gtk-3.20] Redecorate OSD: Implement spinbutton and entry. Fixes #457 Khurshid Alam {23fca70}
|
||||
[2016-08-31 11:51:50 +0200] * Fixed #457 and implement spinbutton and entry osd style. Megax {644e633}
|
||||
[2016-08-30 03:23:11 +0530] Optimize buttons. Fixes #452 Khurshid Alam {6cb9d03}
|
||||
[2016-08-29 20:01:21 +0200] * [GTK 3.20] Fixed #430 (#523) Csaba Jakosa {4c2cf03}
|
||||
[2016-08-29 08:55:26 +0200] Fix Firefox menu item separator color & optimize separator margin. .. Csaba Jakosa {cd2b2df}
|
||||
[2016-08-29 08:02:56 +0200] [Gtk-3.20] Reduce menubar height to match gtk2 theme. Fixes #453 Csaba Jakosa {e86ef11}
|
||||
[2016-08-28 18:43:49 +0200] Use predefined fg & bg color for backdrop windows. Fixes #447 Csaba Jakosa {c961b4d}
|
||||
[2016-08-28 18:37:43 +0200] [GTK 3.20] Fixed unity-panel calendar color. Csaba Jakosa {9909cec}
|
||||
[2016-08-28 18:36:10 +0200] [GTK 3.20] Unity-greeter rewrite sass format. Csaba Jakosa {27b4ce7}
|
||||
[2016-08-28 15:46:08 +0200] * [GTK 3.20] Fixes #392 (#533) Csaba Jakosa {5e9ab2e}
|
||||
[2016-08-28 15:35:09 +0200] Implement basic Gtk3 support for xfce4-notifyd. Fixes #511 Samuel Čavoj {245c355}
|
||||
[2016-08-26 22:12:37 +0530] [Gtk-3.20] 3.20 port for Unity Khurshid Alam {57cb0b4}
|
||||
[2016-08-25 17:57:29 +0200] [GTK 3.20] Do not use space among sub-menus. Fixes #439 Csaba Jakosa {d24e294}
|
||||
[2016-08-25 17:46:51 +0200] [GTK 3.20] Fixed Circular button radius bug. Csaba Jakosa {622b1a2}
|
||||
[2016-08-25 17:34:08 +0200] Fix selection checkboxes for Gnome apps. Fixes #304 Csaba Jakosa {5ea55ab}
|
||||
[2016-08-25 17:12:59 +0200] [Gtk-3.20] Remove deprecated GtkStatusbar:shadow-type. Fixes #506 Csaba Jakosa {70dec4c}
|
||||
[2016-08-25 17:04:46 +0200] [GTK 3.20] Use homogeneous margin on both side of headerbar separat.. Csaba Jakosa {85b5247}
|
||||
[2016-08-24 15:52:29 +0200] * Readme update. (#519) Csaba Jakosa {ea2a171}
|
||||
[2016-08-24 00:37:45 +0200] * Fixed button disabled. (#517) Csaba Jakosa {0612667}
|
||||
[2016-08-23 06:24:23 -0500] Fixes #403 and Fixes #509 Dustin Falgout {d56f32f}
|
||||
[2016-08-23 13:00:16 +0200] GTK 3.20 :: Color chooser rewirte (#423) Csaba Jakosa {bbf00f2}
|
||||
[2016-08-23 12:25:38 +0200] * Removed run attribute. (#515) Csaba Jakosa {0bc870b}
|
||||
[2016-08-23 12:21:26 +0200] GTK 3.20 :: Lightdm rewrite (#516) Csaba Jakosa {caa0540}
|
||||
[2016-08-22 19:28:35 +0200] [GTK 3.20] Issue #484 fixed Csaba Jakosa {b1c1fe6}
|
||||
[2016-08-22 11:02:05 +0200] [GTK 3.20] Use old link color. Fixes #499 Csaba Jakosa {220dc21}
|
||||
[2016-07-27 23:47:11 +0530] [Gtk-3.18] Use old link color. Fixes #499 Khurshid Alam {c65721b}
|
||||
[2016-07-27 11:49:25 -0400] Restore and fix Xfce desktop icon shadows. Fix #492 Jeremy Bicha {d2fecfd}
|
||||
[2016-07-26 03:06:35 -0400] Don't install GTK3 source files. Fixes #503 (#504) Jeremy Bicha {b0aaf84}
|
||||
[2016-07-21 01:20:28 +0530] [Gtk-3.18] Use dark mode tabs in gnometerminal (by default). Fixes .. Khurshid Alam {749cfa3}
|
||||
[2016-07-20 00:37:58 +0530] Drop support for Gtk-3.16 Khurshid Alam {c565223}
|
||||
[2016-07-20 00:21:53 +0530] [Gtk-3.18] Provide gap between buttons in message dialog. Fixes #498 Khurshid Alam {58642c3}
|
||||
[2016-07-15 08:59:15 +0300] Fix for issue #492 (#496) Alexey Donoga {76321bb}
|
||||
[2016-07-02 07:44:33 +0200] GTK 3.20 :: Optimized Nemo and Nautilus design and update searchbar.. Csaba Jakosa {bd780f0}
|
|
@ -0,0 +1,4 @@
|
|||
Simon Steinbeiß <simon.steinbeiss@univie.ac.at>
|
||||
Joern Konopka <cldx3000@googlemail.com>
|
||||
Georgi Karavasilev <motorslav@gmail.com>
|
||||
David Barr <dpbarr@gmail.com>
|
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
|
@ -0,0 +1,63 @@
|
|||
SASS=scss
|
||||
SASSFLAGS=--sourcemap=none
|
||||
GLIB_COMPILE_RESOURCES=glib-compile-resources
|
||||
RES_DIR=src/gtk-3.0
|
||||
SCSS_DIR=$(RES_DIR)/scss
|
||||
DIST_DIR=$(RES_DIR)/dist
|
||||
RES_DIR320=src/gtk-3.20
|
||||
SCSS_DIR320=$(RES_DIR320)/scss
|
||||
DIST_DIR320=$(RES_DIR320)/dist
|
||||
INSTALL_DIR=$(DESTDIR)/usr/share/themes/Numix
|
||||
ROOT_DIR=${PWD}
|
||||
UTILS=scripts/utils.sh
|
||||
|
||||
all: clean gresource
|
||||
|
||||
css:
|
||||
$(SASS) --update $(SASSFLAGS) $(SCSS_DIR):$(DIST_DIR)
|
||||
$(SASS) --update $(SASSFLAGS) $(SCSS_DIR320):$(DIST_DIR320)
|
||||
|
||||
gresource: css
|
||||
$(GLIB_COMPILE_RESOURCES) --sourcedir=$(RES_DIR) $(RES_DIR)/gtk.gresource.xml
|
||||
$(GLIB_COMPILE_RESOURCES) --sourcedir=$(RES_DIR320) $(RES_DIR320)/gtk.gresource.xml
|
||||
|
||||
watch: clean
|
||||
while true; do \
|
||||
make gresource; \
|
||||
inotifywait @gtk.gresource -qr -e modify -e create -e delete $(RES_DIR); \
|
||||
done
|
||||
|
||||
clean:
|
||||
rm -rf $(DIST_DIR)
|
||||
rm -f $(RES_DIR)/gtk.gresource
|
||||
rm -rf $(DIST_DIR320)
|
||||
rm -f $(RES_DIR320)/gtk.gresource
|
||||
rm -rf $(ROOT_DIR)/dist
|
||||
|
||||
install: all
|
||||
$(UTILS) install $(INSTALL_DIR)
|
||||
|
||||
uninstall:
|
||||
rm -rf $(INSTALL_DIR)
|
||||
|
||||
changes:
|
||||
$(UTILS) changes
|
||||
|
||||
zip: all
|
||||
mkdir $(ROOT_DIR)/dist
|
||||
$(UTILS) install $(ROOT_DIR)/dist/$$(basename $(INSTALL_DIR))
|
||||
cd $(ROOT_DIR)/dist && zip --symlinks -rq $$(basename $(INSTALL_DIR)) $$(basename $(INSTALL_DIR))
|
||||
|
||||
|
||||
.PHONY: all
|
||||
.PHONY: css
|
||||
.PHONY: watch
|
||||
.PHONY: gresource
|
||||
.PHONY: clean
|
||||
.PHONY: install
|
||||
.PHONY: uninstall
|
||||
.PHONY: changes
|
||||
|
||||
.DEFAULT_GOAL := all
|
||||
|
||||
# vim: set ts=4 sw=4 tw=0 noet :
|
|
@ -0,0 +1,87 @@
|
|||
## Numix
|
||||
##### A modern flat theme with a combination of light and dark elements. It supports GNOME, Unity, Xfce and Openbox.
|
||||
[](https://numixproject.org/) [](https://circleci.com/gh/numixproject/numix-gtk-theme/tree/master) [](https://github.com/numixproject/numix-gtk-theme/releases/latest)  
|
||||
|
||||
## Install It
|
||||
|
||||
### Distro Packages
|
||||
|Distro|Install Command/Links|
|
||||
|:----:|:----:|
|
||||
|![arch][arch] ![antergos][antergos]|`sudo pacman -S numix-gtk-theme`|
|
||||
|![opensuse][opensuse]|[1 Click Install](http://software.opensuse.org/ymp/openSUSE:Factory/standard/numix-gtk-theme.ymp) \| [OBS Repo](http://software.opensuse.org/download.html?project=openSUSE%3AFactory&package=numix-gtk-theme)|
|
||||
|![fedora][fedora]|`sudo dnf install numix-gtk-theme`|
|
||||
|![debian][debian] ![ubuntu][ubuntu]|`sudo apt install numix-gtk-theme`|
|
||||
|
||||
## Build It
|
||||
|
||||
First, you need to compile the theme using the [Sass](http://sass-lang.com/) compiler.
|
||||
|
||||
To install Sass, install Ruby and the gem command using your distribution's package manager. Then install `sass` with the `gem` command,
|
||||
|
||||
`gem install sass` (not needed for Ubuntu/Debian)
|
||||
|
||||
You'll also need the ```glib-compile-schemas``` and ```gdk-pixbuf-pixdata``` commands in your path to generate the gresource binary. Install them using your distribution's package manager.
|
||||
|
||||
|Distro|Commands|
|
||||
|:----:|:----:|
|
||||
|![arch][arch] ![antergos][antergos]|`sudo pacman -S glib2 gdk-pixbuf2`|
|
||||
|![opensuse][opensuse]|`sudo zypper install glib2-devel gdk-pixbuf-devel`|
|
||||
|![fedora][fedora]|`sudo dnf install glib2-devel gdk-pixbuf2-devel`|
|
||||
|![debian][debian] ![ubuntu][ubuntu]|`sudo apt-get install ruby-sass libglib2.0-dev libgdk-pixbuf2.0-dev libxml2-utils`|
|
||||
|
||||
After installing all the dependencies, change to the cloned directory and, run the following in Terminal,
|
||||
|
||||
```sh
|
||||
sudo make install
|
||||
```
|
||||
|
||||
To set the theme in GNOME, run the following commands in Terminal,
|
||||
|
||||
```sh
|
||||
gsettings set org.gnome.desktop.interface gtk-theme "Numix"
|
||||
gsettings set org.gnome.desktop.wm.preferences theme "Numix"
|
||||
```
|
||||
|
||||
To set the theme in Xfce, run the following commands in Terminal,
|
||||
|
||||
```sh
|
||||
xfconf-query -c xsettings -p /Net/ThemeName -s "Numix"
|
||||
xfconf-query -c xfwm4 -p /general/theme -s "Numix"
|
||||
```
|
||||
|
||||
In Openbox you can set the theme with [ObConf](http://openbox.org/wiki/ObConf:About) tool. Alternatively, you can set the theme by changing the `<name> `key value to `Numix` in the `<theme>` section of your rc.xml file.
|
||||
|
||||
### For contributors
|
||||
Start by reviewing the [guidelines for contributing](https://github.com/numixproject/numix-gtk-theme/blob/master/.github/CONTRIBUTING.md).
|
||||
|
||||
#### For developers
|
||||
If you want to hack on the theme, make sure you have the `inotifywait` command available, which is used for watching and automatically building the files.
|
||||
|
||||
To start watching for changes, run the following,
|
||||
|
||||
```sh
|
||||
make watch
|
||||
```
|
||||
|
||||
If you change any assets, you'll need to regenerate the `gtk.gresource.xml` and `gtk.gresource` files. You can use [grrr](https://github.com/satya164/grrr) to do it easily.
|
||||
|
||||
### Requirements
|
||||
|
||||
GTK+ 3.18 or above
|
||||
|
||||
Murrine theme engine
|
||||
|
||||
### Code and license
|
||||
|
||||
Report bugs or contribute at [GitHub](https://github.com/numixproject/numix-gtk-theme)
|
||||
|
||||
License: GPL-3.0+
|
||||
|
||||
|
||||
[antergos]: https://antergos.com/distro-logos/logo-square26x26.png "antergos"
|
||||
[arch]: https://antergos.com/distro-logos/archlogo26x26.png "arch"
|
||||
[fedora]: https://antergos.com/distro-logos/fedora-logo.png "fedora"
|
||||
[openSUSE]: https://antergos.com/distro-logos/Geeko-button-bling7.png "openSUSE"
|
||||
[ubuntu]: https://antergos.com/distro-logos/ubuntu_orange_hex.png "ubuntu"
|
||||
[debian]: https://antergos.com/distro-logos/openlogo-nd-25.png "debian"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
machine:
|
||||
ruby:
|
||||
version: 2.3.0
|
|
@ -0,0 +1,34 @@
|
|||
#! /bin/bash
|
||||
|
||||
INKSCAPE="/usr/bin/inkscape"
|
||||
OPTIPNG="/usr/bin/optipng"
|
||||
|
||||
SRC_FILE="../src/assets/all-assets.svg"
|
||||
ASSETS_DIR="../src/assets"
|
||||
INDEX="../src/assets/all-assets.txt"
|
||||
|
||||
for i in `cat $INDEX`
|
||||
do
|
||||
if [ -f $ASSETS_DIR/$i.png ]; then
|
||||
echo $ASSETS_DIR/$i.png exists.
|
||||
else
|
||||
echo
|
||||
echo Rendering $ASSETS_DIR/$i.png
|
||||
$INKSCAPE --export-id=$i \
|
||||
--export-id-only \
|
||||
--export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null #\
|
||||
# && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png
|
||||
fi
|
||||
if [ -f $ASSETS_DIR/$i@2.png ]; then
|
||||
echo $ASSETS_DIR/$i@2.png exists.
|
||||
else
|
||||
echo
|
||||
echo Rendering $ASSETS_DIR/$i@2.png
|
||||
$INKSCAPE --export-id=$i \
|
||||
--export-dpi=180 \
|
||||
--export-id-only \
|
||||
--export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null #\
|
||||
# && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png
|
||||
fi
|
||||
done
|
||||
exit 0
|
|
@ -0,0 +1,109 @@
|
|||
#!/bin/bash
|
||||
|
||||
do_install() {
|
||||
local GTKDIR GTK320DIR GTKVER INSTALL_DIR
|
||||
INSTALL_DIR="$1"
|
||||
GTKDIR="${INSTALL_DIR}/gtk-3.0"
|
||||
GTK320DIR="${INSTALL_DIR}/gtk-3.20"
|
||||
|
||||
install -dm755 "${INSTALL_DIR}"
|
||||
|
||||
cd src
|
||||
|
||||
cp index.theme "${INSTALL_DIR}"
|
||||
|
||||
cp -rt "${INSTALL_DIR}" \
|
||||
assets gtk-2.0 metacity-1 openbox-3 xfce-notify-4.0 xfwm4 unity
|
||||
|
||||
for _DIR in "${GTKDIR}" "${GTK320DIR}"
|
||||
do
|
||||
GTKVER="${_DIR##*/}"
|
||||
|
||||
mkdir -p "${_DIR}"
|
||||
|
||||
cp -t "${_DIR}" \
|
||||
"${GTKVER}/gtk.css" \
|
||||
"${GTKVER}/gtk-dark.css" \
|
||||
"${GTKVER}/gtk.gresource" \
|
||||
"${GTKVER}/thumbnail.png"
|
||||
|
||||
cd "${_DIR}"
|
||||
ln -srf ../assets assets
|
||||
cd -
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
output_changes_file_version_marker() {
|
||||
|
||||
line() {
|
||||
dashes="$(printf '%0.s-' $(seq 1 13))"
|
||||
echo "${dashes}>>>> $1 <<<<${dashes}"
|
||||
}
|
||||
|
||||
tag_line="$(line $1)"
|
||||
|
||||
echo "-${tag_line}${tag_line}${tag_line}-"
|
||||
}
|
||||
|
||||
|
||||
update_changes_file() {
|
||||
LAST_STABLE_RELEASE=$(git describe --abbrev=0 --tags $(git rev-list --tags --max-count=1))
|
||||
LAST_MAJOR_MINOR="${LAST_STABLE_RELEASE%.*}"
|
||||
|
||||
LAST_MAJOR="${LAST_STABLE_RELEASE%%.*}"
|
||||
LAST_MINOR="${LAST_MAJOR_MINOR#*.}"
|
||||
LAST_PATCH="${LAST_STABLE_RELEASE##*.}"
|
||||
|
||||
case "${PWD##*/}" in
|
||||
numix-gtk-theme)
|
||||
NEXT_PATCH=$(($LAST_PATCH + 1))
|
||||
|
||||
NEXT_STABLE_RELEASE="${LAST_MAJOR_MINOR}.${NEXT_PATCH}"
|
||||
;;
|
||||
|
||||
Numix-Frost)
|
||||
LAST_MAJOR=$(($LAST_MAJOR + 1))
|
||||
NEXT_STABLE_RELEASE="${LAST_MAJOR}.${LAST_MINOR}.${LAST_PATCH}"
|
||||
LAST_PATCH=$(($LAST_PATCH - 1))
|
||||
|
||||
LAST_STABLE_RELEASE="${LAST_MAJOR}.${LAST_MINOR}.${LAST_PATCH}"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo 'Unknown directory!' && exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
[[ -f CHANGES ]] && mv CHANGES CHANGES.old
|
||||
|
||||
output_changes_file_version_marker "${NEXT_STABLE_RELEASE}" > CHANGES
|
||||
|
||||
{ git log \
|
||||
--pretty=format:"[%ai] %<(69,trunc) %s %><(15) %aN {%h}" \
|
||||
--cherry-pick "${LAST_STABLE_RELEASE}...HEAD"; } >> CHANGES
|
||||
|
||||
|
||||
[[ -f CHANGES.old ]] && echo "" >> CHANGES && cat CHANGES.old >> CHANGES && rm CHANGES.old
|
||||
|
||||
git add CHANGES
|
||||
git commit -m 'RELEASE PREP :: Update CHANGES file.'
|
||||
git push
|
||||
}
|
||||
|
||||
|
||||
|
||||
case $1 in
|
||||
changes)
|
||||
update_changes_file
|
||||
exit $?
|
||||
;;
|
||||
|
||||
install)
|
||||
do_install "$2"
|
||||
;;
|
||||
|
||||
*)
|
||||
exit 0
|
||||
;;
|
||||
esac
|
After Width: | Height: | Size: 154 KiB |
|
@ -0,0 +1,38 @@
|
|||
checkbox-checked-dark
|
||||
checkbox-checked-insensitive-dark
|
||||
checkbox-checked-insensitive
|
||||
checkbox-checked
|
||||
checkbox-mixed-dark
|
||||
checkbox-mixed-insensitive-dark
|
||||
checkbox-mixed-insensitive
|
||||
checkbox-mixed
|
||||
checkbox-unchecked-dark
|
||||
checkbox-unchecked-insensitive-dark
|
||||
checkbox-unchecked-insensitive
|
||||
checkbox-unchecked
|
||||
grid-selection-checked-dark
|
||||
grid-selection-checked
|
||||
grid-selection-unchecked-dark
|
||||
grid-selection-unchecked
|
||||
menuitem-checkbox-checked-hover
|
||||
menuitem-checkbox-checked-insensitive
|
||||
menuitem-checkbox-checked
|
||||
menuitem-checkbox-mixed-hover
|
||||
menuitem-checkbox-mixed-insensitive
|
||||
menuitem-checkbox-mixed
|
||||
menuitem-radio-checked-hover
|
||||
menuitem-radio-checked-insensitive
|
||||
menuitem-radio-checked
|
||||
pane-handle
|
||||
radio-checked-dark
|
||||
radio-checked-insensitive-dark
|
||||
radio-checked-insensitive
|
||||
radio-checked
|
||||
radio-mixed-dark
|
||||
radio-mixed-insensitive-dark
|
||||
radio-mixed-insensitive
|
||||
radio-mixed
|
||||
radio-unchecked-dark
|
||||
radio-unchecked-insensitive-dark
|
||||
radio-unchecked-insensitive
|
||||
radio-unchecked
|
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 797 B |
After Width: | Height: | Size: 416 B |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 334 B |
After Width: | Height: | Size: 551 B |
After Width: | Height: | Size: 461 B |
After Width: | Height: | Size: 823 B |
After Width: | Height: | Size: 331 B |
After Width: | Height: | Size: 585 B |
After Width: | Height: | Size: 238 B |
After Width: | Height: | Size: 354 B |
After Width: | Height: | Size: 235 B |
After Width: | Height: | Size: 363 B |
After Width: | Height: | Size: 331 B |
After Width: | Height: | Size: 585 B |
After Width: | Height: | Size: 237 B |
After Width: | Height: | Size: 376 B |
After Width: | Height: | Size: 197 B |
After Width: | Height: | Size: 262 B |
After Width: | Height: | Size: 204 B |
After Width: | Height: | Size: 294 B |
After Width: | Height: | Size: 281 B |
After Width: | Height: | Size: 506 B |
After Width: | Height: | Size: 736 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 736 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 308 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 425 B |
After Width: | Height: | Size: 881 B |
After Width: | Height: | Size: 249 B |
After Width: | Height: | Size: 320 B |
After Width: | Height: | Size: 300 B |
After Width: | Height: | Size: 455 B |
After Width: | Height: | Size: 333 B |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 166 B |
After Width: | Height: | Size: 201 B |
After Width: | Height: | Size: 176 B |
After Width: | Height: | Size: 226 B |
After Width: | Height: | Size: 179 B |
After Width: | Height: | Size: 233 B |
After Width: | Height: | Size: 209 B |
After Width: | Height: | Size: 291 B |
After Width: | Height: | Size: 247 B |
After Width: | Height: | Size: 378 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 362 B |
After Width: | Height: | Size: 150 B |
After Width: | Height: | Size: 161 B |
After Width: | Height: | Size: 640 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 399 B |
After Width: | Height: | Size: 763 B |
After Width: | Height: | Size: 472 B |
After Width: | Height: | Size: 916 B |
After Width: | Height: | Size: 640 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 593 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 322 B |
After Width: | Height: | Size: 574 B |
After Width: | Height: | Size: 426 B |
After Width: | Height: | Size: 809 B |
After Width: | Height: | Size: 593 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 385 B |
After Width: | Height: | Size: 774 B |
After Width: | Height: | Size: 292 B |
After Width: | Height: | Size: 491 B |
After Width: | Height: | Size: 399 B |
After Width: | Height: | Size: 747 B |
After Width: | Height: | Size: 551 B |
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,808 @@
|
|||
# Numix GTK Theme
|
||||
|
||||
gtk-color-scheme = "bg_color:#eeeeee\nfg_color:#555555\nbase_color:#ffffff\ntext_color:#333333\nselected_bg_color:#f0544c\nselected_fg_color:#ffffff\ntooltip_bg_color:#444444\ntooltip_fg_color:#eeeeee\ntitlebar_bg_color:#444444\ntitlebar_fg_color:#dddddd\nmenubar_bg_color:#444444\nmenubar_fg_color:#dddddd\ntoolbar_bg_color:#eeeeee\ntoolbar_fg_color:#555555\nmenu_bg_color:#444444\nmenu_fg_color:#dddddd\npanel_bg_color:#444444\npanel_fg_color:#dddddd\nlink_color:#f06860"
|
||||
|
||||
gtk-icon-sizes = "inkscape-decoration=16,16:gtk-small-toolbar=16,16"
|
||||
|
||||
# Default Style
|
||||
|
||||
style "murrine-default" {
|
||||
GtkArrow::arrow-scaling= 0.6
|
||||
|
||||
GtkButton::child-displacement-x = 0
|
||||
GtkButton::child-displacement-y = 0
|
||||
|
||||
GtkButton::default-border = { 0, 0, 0, 0 }
|
||||
|
||||
GtkButtonBox::child-min-height = 26
|
||||
|
||||
GtkCheckButton::indicator-size = 16
|
||||
|
||||
# The following line hints to gecko (and possibly other appliations)
|
||||
# that the entry should be drawn transparently on the canvas.
|
||||
# Without this, gecko will fill in the background of the entry.
|
||||
GtkEntry::honors-transparent-bg-hint = 1
|
||||
GtkEntry::state-hint = 0
|
||||
|
||||
GtkExpander::expander-size = 16
|
||||
|
||||
GtkImage::x-ayatana-indicator-dynamic = 1
|
||||
|
||||
GtkMenu::horizontal-padding = 0
|
||||
GtkMenu::vertical-padding = 0
|
||||
|
||||
GtkMenuBar::internal-padding = 0
|
||||
GtkMenuBar::window-dragging = 1
|
||||
|
||||
GtkMenuItem::arrow-scaling= 0.5
|
||||
|
||||
GtkPaned::handle-size = 1
|
||||
|
||||
GtkProgressBar::min-horizontal-bar-height = 12
|
||||
GtkProgressBar::min-vertical-bar-width = 12
|
||||
|
||||
GtkRange::trough-border = 0
|
||||
GtkRange::slider-width = 12
|
||||
GtkRange::stepper-size = 12
|
||||
GtkRange::stepper_spacing = 0
|
||||
GtkRange::trough-under-steppers = 1
|
||||
|
||||
GtkScale::slider-length = 16
|
||||
GtkScale::slider-width = 16
|
||||
GtkScale::trough-side-details = 1
|
||||
|
||||
GtkScrollbar::activate-slider = 1
|
||||
GtkScrollbar::has-backward-stepper = 0
|
||||
GtkScrollbar::has-forward-stepper = 0
|
||||
GtkScrollbar::has-secondary-backward-stepper = 0
|
||||
GtkScrollbar::has-secondary-forward-stepper = 0
|
||||
GtkScrollbar::min-slider-length = 80
|
||||
GtkScrollbar::slider-width = 12
|
||||
GtkScrollbar::trough-border = 0
|
||||
|
||||
GtkScrolledWindow::scrollbar-spacing = 0
|
||||
GtkScrolledWindow::scrollbars-within-bevel = 1
|
||||
|
||||
GtkSeparatorMenuItem::horizontal-padding = 0
|
||||
|
||||
GtkToolbar::internal-padding = 0
|
||||
|
||||
GtkTreeView::expander-size = 11
|
||||
GtkTreeView::vertical-separator = 0
|
||||
|
||||
GtkWidget::focus-line-width = 1
|
||||
# The following line prevents the Firefox tabs
|
||||
# from jumping a few pixels when you create a new tab
|
||||
GtkWidget::focus-padding = 0
|
||||
|
||||
GtkWidget::wide-separators = 1
|
||||
GtkWidget::separator-width = 1
|
||||
GtkWidget::separator-height = 1
|
||||
|
||||
GtkWindow::resize-grip-height = 0
|
||||
GtkWindow::resize-grip-width = 0
|
||||
|
||||
WnckTasklist::fade-overlay-rect = 0
|
||||
|
||||
GnomeHRef::link_color = @link_color
|
||||
GtkHTML::link-color = @link_color
|
||||
GtkIMHtmlr::hyperlink-color = @link_color
|
||||
GtkIMHtml::hyperlink-color = @link_color
|
||||
GtkWidget::link-color = @link_color
|
||||
GtkWidget::visited-link-color = @text_color
|
||||
|
||||
GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified
|
||||
GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified
|
||||
|
||||
xthickness = 1
|
||||
ythickness = 1
|
||||
|
||||
fg[NORMAL] = @fg_color
|
||||
fg[PRELIGHT] = @fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||
|
||||
bg[NORMAL] = @bg_color
|
||||
bg[PRELIGHT] = shade (1.02, @bg_color)
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[ACTIVE] = shade (0.9, @bg_color)
|
||||
bg[INSENSITIVE] = @bg_color
|
||||
|
||||
base[NORMAL] = @base_color
|
||||
base[PRELIGHT] = shade (0.95, @base_color)
|
||||
base[SELECTED] = @selected_bg_color
|
||||
base[ACTIVE] = @selected_bg_color
|
||||
base[INSENSITIVE] = shade (0.85, @base_color)
|
||||
|
||||
text[NORMAL] = @text_color
|
||||
text[PRELIGHT] = @text_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
|
||||
|
||||
engine "murrine" {
|
||||
animation = FALSE
|
||||
arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows
|
||||
border_shades = { 1.0, 1.0 } # gradient to draw on border
|
||||
colorize_scrollbar = FALSE
|
||||
comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow
|
||||
contrast = 0.8 # overal contrast with borders
|
||||
focusstyle = 1 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow
|
||||
glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight
|
||||
glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides
|
||||
glow_shade = 1.0 # amount of glow
|
||||
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets
|
||||
highlight_shade = 1.0 # amount of highlight
|
||||
lightborder_shade = 1.0 # amount of inset light border
|
||||
lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides
|
||||
listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised
|
||||
listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line
|
||||
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
|
||||
menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
|
||||
menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped
|
||||
menustyle = 0 # 0 = none, 1 = vertical striped
|
||||
progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped
|
||||
reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient
|
||||
roundness = 2 # roundness of widgets
|
||||
scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
|
||||
sliderstyle = 0 # 0 = none, 1 = handles
|
||||
stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles
|
||||
toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-wide" {
|
||||
xthickness = 2
|
||||
ythickness = 2
|
||||
}
|
||||
|
||||
style "murrine-wider" {
|
||||
xthickness = 3
|
||||
ythickness = 3
|
||||
}
|
||||
|
||||
style "murrine-thin" {
|
||||
xthickness = 0
|
||||
ythickness = 0
|
||||
}
|
||||
|
||||
# Notebook
|
||||
|
||||
style "murrine-notebook-bg" {
|
||||
bg[NORMAL] = @base_color
|
||||
bg[ACTIVE] = shade (0.87, @base_color)
|
||||
}
|
||||
|
||||
style "murrine-notebook" = "murrine-notebook-bg" {
|
||||
xthickness = 2
|
||||
ythickness = 2
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 2
|
||||
}
|
||||
}
|
||||
|
||||
# Various Standard Widgets
|
||||
|
||||
style "murrine-button" = "murrine-wider" {
|
||||
bg[NORMAL] = shade (1.08, @bg_color)
|
||||
bg[PRELIGHT] = shade (1.10, @bg_color)
|
||||
bg[ACTIVE] = shade (0.95, @bg_color)
|
||||
bg[INSENSITIVE] = shade (0.85, @bg_color)
|
||||
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-scrollbar" {
|
||||
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||
bg[ACTIVE] = @selected_bg_color
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
contrast = 0.0
|
||||
border_shades = { 0.9, 0.9 }
|
||||
trough_shades = { 0.97, 0.97 }
|
||||
trough_border_shades = { 1.0, 1.0 }
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-overlay-scrollbar" {
|
||||
bg[ACTIVE] = shade (0.8, @bg_color)
|
||||
bg[INSENSITIVE] = shade (0.97, @bg_color)
|
||||
|
||||
base[SELECTED] = shade (0.6, @base_color)
|
||||
base[INSENSITIVE] = shade (0.85, @base_color)
|
||||
}
|
||||
|
||||
style "murrine-scale" = "murrine-thin" {
|
||||
bg[NORMAL] = @bg_color
|
||||
bg[ACTIVE] = @bg_color
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[INSENSITIVE] = shade (0.95, @bg_color)
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 8
|
||||
gradient_shades = { 1.08, 1.08, 1.08, 1.08 }
|
||||
border_shades = { 1.0, 1.0 }
|
||||
trough_shades = { 1.08, 1.08 }
|
||||
trough_border_shades = { 0.8, 0.8 }
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-progressbar" = "murrine-thin" {
|
||||
bg[NORMAL] = @bg_color
|
||||
bg[ACTIVE] = shade (1.08, @bg_color)
|
||||
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 2
|
||||
border_shades = { 1.2, 1.2 }
|
||||
trough_border_shades = { 0.8, 0.8 }
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-treeview-header" = "murrine-button" {
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-treeview" {
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-frame-title" {
|
||||
fg[NORMAL] = lighter (@fg_color)
|
||||
}
|
||||
|
||||
style "murrine-tooltips" {
|
||||
xthickness = 5
|
||||
ythickness = 5
|
||||
|
||||
bg[NORMAL] = @tooltip_bg_color
|
||||
bg[SELECTED] = @tooltip_bg_color
|
||||
|
||||
fg[NORMAL] = @tooltip_fg_color
|
||||
|
||||
engine "murrine" {
|
||||
textstyle = 0
|
||||
roundness = 2
|
||||
rgba = FALSE
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-spinbutton" = "murrine-button" {
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-radiocheck" = "murrine-default" {
|
||||
bg[SELECTED] = @base_color
|
||||
|
||||
text[NORMAL] = @selected_bg_color
|
||||
text[PRELIGHT] = @selected_bg_color
|
||||
}
|
||||
|
||||
style "murrine-entry" = "murrine-wider" {
|
||||
engine "murrine" {
|
||||
border_shades = { 1.15, 1.15 }
|
||||
}
|
||||
}
|
||||
|
||||
style "metacity-frame" = "murrine-default" {
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
}
|
||||
|
||||
style "murrine-statusbar" { }
|
||||
style "murrine-comboboxentry" = "murrine-entry" { }
|
||||
style "murrine-hscale" = "murrine-scale" { }
|
||||
style "murrine-vscale" = "murrine-scale" { }
|
||||
style "murrine-hscrollbar" = "murrine-scrollbar" { }
|
||||
style "murrine-vscrollbar" = "murrine-scrollbar" { }
|
||||
|
||||
# Menus
|
||||
|
||||
style "murrine-menu" = "murrine-thin" {
|
||||
bg[NORMAL] = @menu_bg_color
|
||||
bg[PRELIGHT] = @selected_bg_color
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[ACTIVE] = @menu_bg_color
|
||||
bg[INSENSITIVE] = @menu_bg_color
|
||||
|
||||
fg[NORMAL] = @menu_fg_color
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||
|
||||
text[NORMAL] = @menu_fg_color
|
||||
text[PRELIGHT] = @selected_fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-menu-item" = "murrine-wider" {
|
||||
bg[PRELIGHT] = @selected_bg_color
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[ACTIVE] = @selected_bg_color
|
||||
|
||||
fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
textstyle = 0
|
||||
border_shades = { 1.2, 1.2 }
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-separator-menu-item" = "murrine-thin" { }
|
||||
|
||||
style "murrine-menubar" {
|
||||
bg[NORMAL] = @menubar_bg_color
|
||||
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||
bg[INSENSITIVE] = @menubar_bg_color
|
||||
|
||||
fg[NORMAL] = @menubar_fg_color
|
||||
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||
fg[ACTIVE] = @menubar_fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-menubaritem" {
|
||||
bg[NORMAL] = @menubar_bg_color
|
||||
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
|
||||
bg[INSENSITIVE] = @menubar_bg_color
|
||||
|
||||
fg[NORMAL] = @menubar_fg_color
|
||||
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
|
||||
fg[SELECTED] = shade (1.08, @menubar_fg_color)
|
||||
fg[ACTIVE] = @menubar_fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
# Toolbars
|
||||
|
||||
style "murrine-toolbar" = "murrine-thin" {
|
||||
bg[NORMAL] = @bg_color
|
||||
bg[PRELIGHT] = shade (1.02, @bg_color)
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[ACTIVE] = shade (0.9, @bg_color)
|
||||
bg[INSENSITIVE] = @bg_color
|
||||
|
||||
fg[NORMAL] = @fg_color
|
||||
fg[PRELIGHT] = @fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
style "murrine-toolbutton" = "murrine-button" {
|
||||
bg[NORMAL] = shade (1.08, @bg_color)
|
||||
bg[PRELIGHT] = shade (1.10, @bg_color)
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
bg[ACTIVE] = shade (0.95, @bg_color)
|
||||
bg[INSENSITIVE] = shade (0.85, @bg_color)
|
||||
|
||||
fg[NORMAL] = @fg_color
|
||||
fg[PRELIGHT] = @fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[ACTIVE] = @fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
class "GtkToolbar" style "murrine-toolbar"
|
||||
class "GtkHandleBox" style "murrine-toolbar"
|
||||
widget_class "*Toolbar*.*Separator*" style "murrine-toolbar"
|
||||
|
||||
# Panels
|
||||
|
||||
style "murrine-panel" = "murrine-thin" {
|
||||
xthickness = 2
|
||||
|
||||
bg[NORMAL] = @panel_bg_color
|
||||
bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||
bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||
bg[ACTIVE] = shade (0.8, @panel_bg_color)
|
||||
bg[INSENSITIVE] = @panel_bg_color
|
||||
|
||||
fg[NORMAL] = @panel_fg_color
|
||||
fg[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||
fg[SELECTED] = shade (1.08, @panel_fg_color)
|
||||
fg[ACTIVE] = @panel_fg_color
|
||||
fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||
|
||||
base[NORMAL] = @panel_bg_color
|
||||
base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||
base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
|
||||
base[ACTIVE] = shade (0.9, @panel_bg_color)
|
||||
base[INSENSITIVE] = @panel_bg_color
|
||||
|
||||
text[NORMAL] = @panel_fg_color
|
||||
text[PRELIGHT] = shade (1.08, @panel_fg_color)
|
||||
text[SELECTED] = shade (1.08, @panel_fg_color)
|
||||
text[ACTIVE] = @panel_fg_color
|
||||
text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
contrast = 0.0
|
||||
}
|
||||
}
|
||||
|
||||
widget "*PanelWidget*" style "murrine-panel"
|
||||
widget "*PanelApplet*" style "murrine-panel"
|
||||
widget "*fast-user-switch*" style "murrine-panel"
|
||||
widget "*CPUFreq*Applet*" style "murrine-panel"
|
||||
widget "*indicator-applet*" style "murrine-panel"
|
||||
class "PanelApp*" style "murrine-panel"
|
||||
class "PanelToplevel*" style "murrine-panel"
|
||||
widget_class "*PanelToplevel*" style "murrine-panel"
|
||||
widget_class "*notif*" style "murrine-panel"
|
||||
widget_class "*Notif*" style "murrine-panel"
|
||||
widget_class "*Tray*" style "murrine-panel"
|
||||
widget_class "*tray*" style "murrine-panel"
|
||||
widget_class "*computertemp*" style "murrine-panel"
|
||||
widget_class "*Applet*Tomboy*" style "murrine-panel"
|
||||
widget_class "*Applet*Netstatus*" style "murrine-panel"
|
||||
widget "*gdm-user-switch-menubar*" style "murrine-panel"
|
||||
|
||||
# LXPanel (code based on Lubuntu-default theme's gtkrc file)
|
||||
widget "*.tclock.*" style "murrine-panel"
|
||||
widget "*.taskbar.*" style "murrine-panel"
|
||||
widget_class "*GtkBgbox*" style "murrine-panel"
|
||||
|
||||
style "bold-panel-item" {
|
||||
font_name = "Bold"
|
||||
|
||||
engine "murrine" {
|
||||
roundness = 0
|
||||
}
|
||||
}
|
||||
|
||||
widget "*Panel*MenuBar*" style "bold-panel-item"
|
||||
widget "*gimmie*" style "bold-panel-item"
|
||||
|
||||
# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug
|
||||
# class "*Panel*" style "murrine-panel" # Disabled to fix bug
|
||||
|
||||
# XFCE Styles
|
||||
|
||||
style "workspace-switcher" = "murrine-panel" {
|
||||
bg[ACTIVE] = @selected_bg_color
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
}
|
||||
|
||||
style "xfce-header" {
|
||||
bg[NORMAL] = shade (0.9, @bg_color)
|
||||
base[NORMAL] = shade (1.18, @bg_color)
|
||||
}
|
||||
|
||||
style "xfdesktop-windowlist" {
|
||||
bg[NORMAL] = @base_color
|
||||
fg[INSENSITIVE] = shade (0.95, @base_color)
|
||||
text[INSENSITIVE] = shade (0.95, @base_color)
|
||||
}
|
||||
|
||||
style "xfdesktop-icon-view" {
|
||||
XfdesktopIconView::label-alpha = 0
|
||||
XfdesktopIconView::selected-label-alpha = 60
|
||||
XfdesktopIconView::shadow-x-offset = 0
|
||||
XfdesktopIconView::shadow-y-offset = 1
|
||||
XfdesktopIconView::selected-shadow-x-offset = 0
|
||||
XfdesktopIconView::selected-shadow-y-offset = 1
|
||||
XfdesktopIconView::shadow-color = "#000000"
|
||||
XfdesktopIconView::selected-shadow-color = "#000000"
|
||||
XfdesktopIconView::shadow-blur-radius = 2
|
||||
XfdesktopIconView::cell-spacing = 2
|
||||
XfdesktopIconView::cell-padding = 6
|
||||
XfdesktopIconView::cell-text-width-proportion = 1.9
|
||||
|
||||
fg[NORMAL] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
|
||||
}
|
||||
|
||||
style "xfwm-tabwin" {
|
||||
Xfwm4TabwinWidget::border-width = 1
|
||||
Xfwm4TabwinWidget::border-alpha = 1.0
|
||||
Xfwm4TabwinWidget::icon-size = 64
|
||||
Xfwm4TabwinWidget::alpha = 1.0
|
||||
Xfwm4TabwinWidget::border-radius = 2
|
||||
|
||||
bg[NORMAL] = @menu_bg_color
|
||||
bg[SELECTED] = @menu_bg_color
|
||||
|
||||
fg[NORMAL] = @menu_fg_color
|
||||
|
||||
engine "murrine" {
|
||||
contrast = 0.0
|
||||
border_shades = { 0.9, 0.9 }
|
||||
}
|
||||
}
|
||||
|
||||
style "xfwm-tabwin-button" {
|
||||
font_name = "bold"
|
||||
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
}
|
||||
|
||||
style "xfsm-logout" {
|
||||
bg[NORMAL] = @menu_bg_color
|
||||
bg[ACTIVE] = @menu_bg_color
|
||||
bg[PRELIGHT] = shade (1.1, @menu_bg_color)
|
||||
bg[SELECTED] = shade (0.5, @menu_bg_color)
|
||||
bg[INSENSITIVE] = shade (1.3, @menu_bg_color)
|
||||
|
||||
fg[NORMAL] = @menu_fg_color
|
||||
fg[PRELIGHT] = @menu_fg_color
|
||||
|
||||
text[NORMAL] = @menu_fg_color
|
||||
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
style "xfsm-logout-button" {
|
||||
bg[NORMAL] = shade (1.2, @menu_bg_color)
|
||||
bg[PRELIGHT] = shade (1.4, @menu_bg_color)
|
||||
|
||||
engine "murrine" {
|
||||
}
|
||||
}
|
||||
|
||||
widget "*Pager*" style "workspace-switcher"
|
||||
|
||||
widget "*Xfce*Panel*" style "murrine-panel"
|
||||
class "*Xfce*Panel*" style "murrine-panel"
|
||||
|
||||
# Thunar Styles
|
||||
|
||||
style "sidepane" {
|
||||
base[NORMAL] = @bg_color
|
||||
base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color))
|
||||
bg[NORMAL] = @bg_color
|
||||
text[NORMAL] = mix (0.9, @fg_color, @bg_color)
|
||||
}
|
||||
|
||||
widget_class "*ThunarShortcutsView*" style "sidepane"
|
||||
widget_class "*ThunarTreeView*" style "sidepane"
|
||||
widget_class "*ThunarLocationEntry*" style "murrine-entry"
|
||||
|
||||
style "whiskermenu" {
|
||||
bg[NORMAL] = @menu_bg_color
|
||||
bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
|
||||
bg[PRELIGHT] = @selected_bg_color
|
||||
|
||||
fg[NORMAL] = @menu_fg_color
|
||||
fg[ACTIVE] = @menu_fg_color
|
||||
fg[PRELIGHT] = @menu_fg_color
|
||||
}
|
||||
|
||||
style "whiskermenu-scrollbar" = "murrine-scrollbar" {
|
||||
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
|
||||
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
|
||||
bg[ACTIVE] = @selected_bg_color
|
||||
|
||||
engine "murrine" {
|
||||
trough_shades = { 4.97, 4.97 }
|
||||
trough_border_shades = { 5.0, 5.0 }
|
||||
}
|
||||
}
|
||||
|
||||
widget "whiskermenu-window*" style "whiskermenu"
|
||||
widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar"
|
||||
|
||||
# Gtk2 Open-File Dialog
|
||||
|
||||
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
|
||||
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||
|
||||
# Google Chrome/Chromium Styles (requires 9.0.597 or newer)
|
||||
|
||||
style "chromium-toolbar-button" {
|
||||
engine "murrine" {
|
||||
roundness = 2
|
||||
textstyle = 0
|
||||
}
|
||||
}
|
||||
|
||||
style "chrome-gtk-frame" {
|
||||
ChromeGtkFrame::frame-color = @titlebar_bg_color
|
||||
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
|
||||
|
||||
ChromeGtkFrame::frame-gradient-size = 0
|
||||
ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color
|
||||
|
||||
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
|
||||
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
|
||||
|
||||
ChromeGtkFrame::incognito-frame-gradient-size = 0
|
||||
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color
|
||||
|
||||
ChromeGtkFrame::scrollbar-trough-color = @bg_color
|
||||
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color)
|
||||
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color)
|
||||
}
|
||||
|
||||
class "ChromeGtkFrame" style "chrome-gtk-frame"
|
||||
|
||||
widget_class "*Chrom*Button*" style "chromium-toolbar-button"
|
||||
|
||||
# General Styles
|
||||
|
||||
class "GtkWidget" style "murrine-default"
|
||||
|
||||
class "GtkFrame" style "murrine-wide"
|
||||
class "MetaFrames" style "metacity-frame"
|
||||
class "GtkWindow" style "metacity-frame"
|
||||
|
||||
class "GtkSeparator" style "murrine-wide"
|
||||
class "GtkCalendar" style "murrine-wide"
|
||||
|
||||
class "GtkSpinButton" style "murrine-spinbutton"
|
||||
|
||||
class "GtkScale" style "murrine-scale"
|
||||
class "GtkVScale" style "murrine-vscale"
|
||||
class "GtkHScale" style "murrine-hscale"
|
||||
class "GtkScrollbar" style "murrine-scrollbar"
|
||||
class "GtkVScrollbar" style "murrine-vscrollbar"
|
||||
class "GtkHScrollbar" style "murrine-hscrollbar"
|
||||
|
||||
class "GtkRadio*" style "murrine-radiocheck"
|
||||
class "GtkCheck*" style "murrine-radiocheck"
|
||||
|
||||
class "GtkEntry" style "murrine-entry"
|
||||
|
||||
widget_class "*<GtkNotebook>" style "murrine-notebook"
|
||||
widget_class "*<GtkNotebook>*<GtkEventBox>" style "murrine-notebook-bg"
|
||||
widget_class "*<GtkNotebook>*<GtkDrawingArea>" style "murrine-notebook-bg"
|
||||
widget_class "*<GtkNotebook>*<GtkLayout>" style "murrine-notebook-bg"
|
||||
widget_class "*.GtkNotebook.*.GtkViewport" style "murrine-notebook"
|
||||
|
||||
widget_class "*<GtkButton>" style "murrine-button"
|
||||
widget_class "*<GtkStatusbar>*" style "murrine-statusbar"
|
||||
widget_class "*<GtkProgress>" style "murrine-progressbar"
|
||||
widget_class "*<GtkProgressBar>" style "murrine-progressbar"
|
||||
|
||||
widget_class "*<GtkComboBoxEntry>*" style "murrine-comboboxentry"
|
||||
widget_class "*<GtkCombo>*" style "murrine-comboboxentry"
|
||||
|
||||
widget_class "*<GtkMenu>*" style "murrine-menu"
|
||||
widget_class "*<GtkMenuItem>*" style "murrine-menu-item"
|
||||
widget_class "*<GtkSeparatorMenuItem>*" style "murrine-separator-menu-item"
|
||||
widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item"
|
||||
widget_class "*<GtkMenuBar>*" style "murrine-menubar"
|
||||
widget_class "*<GtkMenuBar>*<GtkMenuItem>*" style "murrine-menubaritem"
|
||||
|
||||
widget_class "*GtkToolButton*" style "murrine-toolbutton"
|
||||
widget_class "*GtkToggleToolButton*" style "murrine-toolbutton"
|
||||
widget_class "*GtkMenuToolButton*" style "murrine-toolbutton"
|
||||
widget_class "*GtkToolbar*Button" style "murrine-toolbutton"
|
||||
|
||||
widget_class "*.<GtkFrame>.<GtkLabel>" style "murrine-frame-title"
|
||||
|
||||
widget_class "*.<GtkTreeView>*" style "murrine-treeview"
|
||||
widget_class "*.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
|
||||
widget_class "*.<GtkCTree>.<GtkButton>" style "murrine-treeview-header"
|
||||
widget_class "*.<GtkList>.<GtkButton>" style "murrine-treeview-header"
|
||||
widget_class "*.<GtkCList>.<GtkButton>" style "murrine-treeview-header"
|
||||
|
||||
widget "gtk-tooltip*" style "murrine-tooltips"
|
||||
|
||||
widget_class "*<GtkScrolledWindow>*<OsScrollbar>" style "murrine-overlay-scrollbar"
|
||||
|
||||
# Workarounds and Non-Standard Styling
|
||||
|
||||
style "text-is-fg-color-workaround" {
|
||||
text[NORMAL] = @text_color
|
||||
text[PRELIGHT] = @fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
text[ACTIVE] = @fg_color
|
||||
text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
|
||||
}
|
||||
|
||||
widget_class "*.<GtkComboBox>.<GtkCellView>" style "text-is-fg-color-workaround"
|
||||
|
||||
style "fg-is-text-color-workaround" {
|
||||
fg[NORMAL] = @text_color
|
||||
fg[PRELIGHT] = @text_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
fg[INSENSITIVE] = darker (@fg_color)
|
||||
}
|
||||
|
||||
widget_class "*<GtkListItem>*" style "fg-is-text-color-workaround"
|
||||
widget_class "*<GtkCList>" style "fg-is-text-color-workaround"
|
||||
widget_class "*<EelEditableLabel>" style "fg-is-text-color-workaround"
|
||||
|
||||
style "murrine-evo-new-button-workaround" {
|
||||
engine "murrine" {
|
||||
toolbarstyle = 0
|
||||
}
|
||||
}
|
||||
|
||||
widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround"
|
||||
|
||||
style "inkscape-toolbar-fix" {
|
||||
engine "murrine" {
|
||||
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
|
||||
highlight_shade = 1.0
|
||||
}
|
||||
}
|
||||
|
||||
#widget "*GtkHandleBox*" style "inkscape-toolbar-fix"
|
||||
#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix"
|
||||
#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix"
|
||||
widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix"
|
||||
|
||||
# Performance Fixes
|
||||
|
||||
style "performance-fix" {
|
||||
engine "murrine" {
|
||||
textstyle = 0
|
||||
}
|
||||
}
|
||||
|
||||
widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape
|
||||
widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp
|
||||
widget_class "*GimpToolbox*" style "performance-fix"
|
||||
widget_class "*GimpMenuDock*" style "performance-fix"
|
||||
widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice
|
||||
widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.)
|
||||
|
||||
widget_class "*XfceHeading*" style "xfce-header"
|
||||
widget_class "*XfceDesktop*" style "xfdesktop-windowlist"
|
||||
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
|
||||
widget "xfwm4-tabwin*" style "xfwm-tabwin"
|
||||
widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button"
|
||||
widget_class "*XfsmLogoutDialog*" style "xfsm-logout"
|
||||
widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button"
|
|
@ -0,0 +1 @@
|
|||
../assets
|
|
@ -0,0 +1 @@
|
|||
@import url("resource:///org/numixproject/gtk/dist/gtk-dark.css");
|
|
@ -0,0 +1 @@
|
|||
@import url("resource:///org/numixproject/gtk/dist/gtk.css");
|
|
@ -0,0 +1,83 @@
|
|||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gresources>
|
||||
<gresource prefix='/org/bonerbonerboner/gtk'>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-checked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-mixed@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/checkbox-unchecked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-checked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-checked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-checked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-checked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-unchecked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-unchecked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-unchecked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/grid-selection-unchecked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked-hover.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked-hover@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-checked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed-hover.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed-hover@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-checkbox-mixed@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked-hover.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked-hover@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/menuitem-radio-checked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/pane-handle.png</file>
|
||||
<file preprocess='to-pixdata'>assets/pane-handle@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-checked@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-mixed@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-insensitive-dark.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-insensitive-dark@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-insensitive.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked-insensitive@2.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked.png</file>
|
||||
<file preprocess='to-pixdata'>assets/radio-unchecked@2.png</file>
|
||||
<file>dist/gtk.css</file>
|
||||
<file>dist/gtk-dark.css</file>
|
||||
</gresource>
|
||||
</gresources>
|
|
@ -0,0 +1,67 @@
|
|||
@import "global";
|
||||
|
||||
/* dark color scheme */
|
||||
@define-color dark_bg_color #{"" + $dark_bg_color};
|
||||
@define-color dark_fg_color #{"" + $dark_fg_color};
|
||||
|
||||
/* colormap actually used by the theme, to be overridden in other css files */
|
||||
@define-color theme_bg_color #{"" + $bg_color};
|
||||
@define-color theme_fg_color #{"" + $fg_color};
|
||||
@define-color theme_base_color #{"" + $base_color};
|
||||
@define-color theme_text_color #{"" + $text_color};
|
||||
@define-color theme_selected_bg_color #{"" + $selected_bg_color};
|
||||
@define-color theme_selected_fg_color #{"" + $selected_fg_color};
|
||||
@define-color theme_tooltip_bg_color #{"" + $tooltip_bg_color};
|
||||
@define-color theme_tooltip_fg_color #{"" + $tooltip_fg_color};
|
||||
|
||||
/* shadow effects */
|
||||
@define-color light_shadow #{"" + $light_shadow};
|
||||
@define-color dark_shadow #{"" + $dark_shadow};
|
||||
|
||||
/* misc colors used by gtk+ */
|
||||
@define-color info_fg_color #{"" + $info_fg_color};
|
||||
@define-color info_bg_color #{"" + $info_bg_color};
|
||||
@define-color warning_fg_color #{"" + $warning_fg_color};
|
||||
@define-color warning_bg_color #{"" + $warning_bg_color};
|
||||
@define-color question_fg_color #{"" + $question_fg_color};
|
||||
@define-color question_bg_color #{"" + $question_bg_color};
|
||||
@define-color error_fg_color #{"" + $error_fg_color};
|
||||
@define-color error_bg_color #{"" + $error_bg_color};
|
||||
@define-color link_color #{"" + $link_color};
|
||||
@define-color success_color #{"" + $success_color};
|
||||
@define-color warning_color #{"" + $warning_color};
|
||||
@define-color error_color #{"" + $error_color};
|
||||
|
||||
/* widget colors */
|
||||
@define-color titlebar_bg_color @dark_bg_color;
|
||||
@define-color titlebar_fg_color @dark_fg_color;
|
||||
@define-color menubar_bg_color @dark_bg_color;
|
||||
@define-color menubar_fg_color @dark_fg_color;
|
||||
@define-color toolbar_bg_color @theme_bg_color;
|
||||
@define-color toolbar_fg_color @theme_fg_color;
|
||||
@define-color menu_bg_color @dark_bg_color;
|
||||
@define-color menu_fg_color @dark_fg_color;
|
||||
@define-color panel_bg_color @dark_bg_color;
|
||||
@define-color panel_fg_color @dark_fg_color;
|
||||
|
||||
/* osd */
|
||||
@define-color osd_base #{"" + $osd_base};
|
||||
@define-color osd_bg #{"" + $osd_bg};
|
||||
@define-color osd_fg #{"" + $osd_fg};
|
||||
|
||||
/* lightdm greeter colors */
|
||||
@define-color lightdm_bg_color #{"" + $lightdm_bg_color};
|
||||
@define-color lightdm_fg_color #{"" + $lightdm_fg_color};
|
||||
|
||||
/* window manager colors */
|
||||
@define-color wm_bg #{"" + $wm_bg};
|
||||
@define-color wm_border_focused #{"" + $wm_border_focused};
|
||||
@define-color wm_border_unfocused #{"" + $wm_border_unfocused};
|
||||
@define-color wm_title_focused #{"" + $wm_title_focused};
|
||||
@define-color wm_title_unfocused #{"" + $wm_title_unfocused};
|
||||
@define-color wm_icons_focused #{"" + $wm_icons_focused};
|
||||
@define-color wm_icons_focused_prelight #{"" + $wm_icons_focused_prelight};
|
||||
@define-color wm_icons_focused_pressed #{"" + $wm_icons_unfocused_pressed};
|
||||
@define-color wm_icons_unfocused #{"" + $wm_icons_unfocused};
|
||||
@define-color wm_icons_unfocused_prelight #{"" + $wm_icons_unfocused_prelight};
|
||||
@define-color wm_icons_unfocused_pressed #{"" + $wm_icons_unfocused_pressed};
|
|
@ -0,0 +1,79 @@
|
|||
$modules: () !default;
|
||||
|
||||
@mixin exports($name) {
|
||||
@if (not index($modules, $name)) {
|
||||
$modules: append($modules, $name) !global;
|
||||
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@function alpha($color, $amount) {
|
||||
@if type-of($color) == "color" {
|
||||
@return fade-out($color, (1 - $amount));
|
||||
} @else {
|
||||
@return unquote("alpha(#{$color},#{$amount})");
|
||||
}
|
||||
}
|
||||
|
||||
@function shade($color, $amount) {
|
||||
@if type-of($color) == "color" {
|
||||
@if ($amount > 1) {
|
||||
@return lighten($color, ($amount - 1) * lightness($color))
|
||||
} @else {
|
||||
@return darken($color, (1 - $amount) * lightness($color))
|
||||
}
|
||||
} @else {
|
||||
@return unquote("shade(#{$color},#{$amount})");
|
||||
}
|
||||
}
|
||||
|
||||
@function mix($color1, $color2, $amount) {
|
||||
@return unquote("mix(#{$color1},#{$color2},#{$amount})");
|
||||
}
|
||||
|
||||
@function border_normal($color) {
|
||||
@return shade($color, $contrast);
|
||||
}
|
||||
|
||||
@function border_focus($color) {
|
||||
@return shade($color, ($contrast - .05));
|
||||
}
|
||||
|
||||
@function border_active($color) {
|
||||
@return shade($color, ($contrast - .1));
|
||||
}
|
||||
|
||||
@function border_insensitive($color) {
|
||||
@return shade($color, ($contrast + .05));
|
||||
}
|
||||
|
||||
@mixin linear-gradient($color, $direction: to bottom) {
|
||||
@if $gradient == 0 {
|
||||
background-color: $color;
|
||||
background-image: none;
|
||||
} @else {
|
||||
$amount: $gradient / 2;
|
||||
|
||||
background-color: $color;
|
||||
background-image: linear-gradient($direction,
|
||||
shade($color, (1 + $amount)),
|
||||
shade($color, (1 - $amount))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin border($color) {
|
||||
border-color: border_normal($color);
|
||||
|
||||
&:focus, &:hover { border-color: border_focus($color); }
|
||||
|
||||
&:active, &:active:hover,
|
||||
&:active:focus, &:active:hover:focus,
|
||||
&:checked, &:checked:hover,
|
||||
&:checked:focus, &:checked:hover:focus { border-color: border_active($color); }
|
||||
|
||||
&:insensitive { border-color: border_insensitive($color); }
|
||||
|
||||
&:active:insensitive, &:checked:insensitive { border-color: border_normal($color); }
|
||||
}
|
|
@ -0,0 +1,79 @@
|
|||
// scss-lint:disable ColorVariable
|
||||
|
||||
@import "functions";
|
||||
|
||||
// default color scheme
|
||||
$bg_color: if($variant == "dark", #444, #eee);
|
||||
$fg_color: if($variant == "dark", #ddd, #555);
|
||||
$base_color: if($variant == "dark", #333, #fff);
|
||||
$text_color: if($variant == "dark", #eee, #333);
|
||||
$selected_bg_color: #f0544c;
|
||||
$selected_fg_color: #fff;
|
||||
$tooltip_bg_color: #444;
|
||||
$tooltip_fg_color: #eee;
|
||||
|
||||
// dark colors
|
||||
$dark_bg_color: #444;
|
||||
$dark_fg_color: #eee;
|
||||
|
||||
// shadows
|
||||
$dark_shadow: #000;
|
||||
$light_shadow: #fff;
|
||||
|
||||
// white and black
|
||||
$black: #000;
|
||||
$white: #fff;
|
||||
|
||||
// misc colors used by gtk+
|
||||
$info_fg_color: #fff;
|
||||
$info_bg_color: #03a9f4;
|
||||
$warning_fg_color: #fff;
|
||||
$warning_bg_color: #ef6c00;
|
||||
$question_fg_color: #fff;
|
||||
$question_bg_color: #673ab7;
|
||||
$error_fg_color: #fff;
|
||||
$error_bg_color: #f44336;
|
||||
$link_color: #fc6f5d;
|
||||
$success_color: #4caf50;
|
||||
$warning_color: #ef6c00;
|
||||
$error_color: #f44336;
|
||||
|
||||
$toolbar_bg_color: $bg_color;
|
||||
$toolbar_fg_color: $fg_color;
|
||||
|
||||
$titlebar_bg_color: $dark_bg_color;
|
||||
$titlebar_fg_color: $dark_fg_color;
|
||||
|
||||
$menu_bg_color: $dark_bg_color;
|
||||
$menu_fg_color: $dark_fg_color;
|
||||
|
||||
$menubar_bg_color: $dark_bg_color;
|
||||
$menubar_fg_color: $dark_fg_color;
|
||||
|
||||
$panel_bg_color: $dark_bg_color;
|
||||
$panel_fg_color: $dark_fg_color;
|
||||
|
||||
$osd_base: $dark_bg_color;
|
||||
$osd_fg: $dark_fg_color;
|
||||
$osd_bg: alpha($osd_base, 0.8);
|
||||
|
||||
$lightdm_bg_color: $dark_bg_color;
|
||||
$lightdm_fg_color: $dark_fg_color;
|
||||
|
||||
$wm_bg: $titlebar_bg_color;
|
||||
$wm_border_focused: transparent;
|
||||
$wm_border_unfocused: transparent;
|
||||
$wm_title_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
|
||||
$wm_title_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
|
||||
$wm_icons_focused: mix($titlebar_fg_color, $titlebar_bg_color, .1);
|
||||
$wm_icons_focused_prelight: $selected_bg_color;
|
||||
$wm_icons_focused_pressed: shade($selected_bg_color, .8);
|
||||
$wm_icons_unfocused: mix($titlebar_fg_color, $titlebar_bg_color, .4);
|
||||
$wm_icons_unfocused_prelight: $selected_bg_color;
|
||||
$wm_icons_unfocused_pressed: shade($selected_bg_color, .8);
|
||||
|
||||
// widget styles
|
||||
$roundness: 2px;
|
||||
$spacing: 5px;
|
||||
$gradient: 0;
|
||||
$contrast: .8;
|
|
@ -0,0 +1,38 @@
|
|||
@import "functions";
|
||||
@import "global";
|
||||
@import "colors";
|
||||
|
||||
|
||||
@import "widgets/base";
|
||||
@import "widgets/button";
|
||||
@import "widgets/entry";
|
||||
@import "widgets/actionbar";
|
||||
@import "widgets/calendar";
|
||||
@import "widgets/choosers";
|
||||
@import "widgets/grid";
|
||||
@import "widgets/infobar";
|
||||
@import "widgets/menu";
|
||||
@import "widgets/misc";
|
||||
@import "widgets/notebook";
|
||||
@import "widgets/osd";
|
||||
@import "widgets/overshoot";
|
||||
@import "widgets/progress";
|
||||
@import "widgets/scrollbar";
|
||||
@import "widgets/sidebar";
|
||||
@import "widgets/spinner";
|
||||
@import "widgets/toggle";
|
||||
@import "widgets/toolbar";
|
||||
@import "widgets/view";
|
||||
@import "widgets/window";
|
||||
|
||||
@import "apps/unity-greeter";
|
||||
@import "apps/gedit";
|
||||
@import "apps/nautilus";
|
||||
@import "apps/nemo";
|
||||
@import "apps/panel";
|
||||
@import "apps/synaptic";
|
||||
@import "apps/xfce";
|
||||
@import "apps/unity";
|
||||
@import "apps/lightdm";
|
||||
@import "apps/gnome-terminal";
|
||||
@import "apps/gnome-applications";
|