-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Settings schema is under data/ directory. Copy to either: - $HOME/.local/share/glib-2.0/schemas/ and run glib-compile-schemas $HOME/.local/share/glib-2.0/schemas/ - /usr/share/glib-2.0/schemas/ and run sudo glib-compile-schemas /usr/share/glib-2.0/schemas/ Fixes #6 ("[Feature request] add option to change ruler colour") Resolves: <#6> Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
- Loading branch information
Showing
3 changed files
with
223 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/target | ||
data/gschemas.compiled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<schemalist> | ||
<schema id="com.github.epilys.rlr" path="/com/github/epilys/rlr/"> | ||
<key name="window-opacity" type="d"> | ||
<range min="0.01" max="1"/> | ||
<default>0.8</default> | ||
<summary>Window opacity with the value of 1 being 100% opacity.</summary> | ||
</key> | ||
<key name="primary-color" type="s"> | ||
<default>'#453c0f'</default> | ||
<summary>Primary Color</summary> | ||
<description> | ||
Color used for drawing text, borders, ticks, etc. | ||
</description> | ||
</key> | ||
<key name="secondary-color" type="s"> | ||
<default>'#f6d32d'</default> | ||
<summary>Secondary Color</summary> | ||
<description> | ||
Color used for backgrounds. | ||
</description> | ||
</key> | ||
</schema> | ||
</schemalist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters