diff options
| author | 2019-08-16 15:08:42 +0200 | |
|---|---|---|
| committer | 2019-08-16 15:30:34 +0200 | |
| commit | f153cb2cfc6880985401bcdc7ff84d6faf2e0ce7 (patch) | |
| tree | 944f1aaa5adc2d1d2ea6c26aa7fe3d9698708a56 | |
Initial commit
Includes:
* MIT License
* Basic README
* template configuration
* vimiv style template
* gitignore file to ignore the builder directory
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | LICENSE | 19 | ||||
| -rw-r--r-- | README.md | 20 | ||||
| -rw-r--r-- | templates/config.yaml | 3 | ||||
| -rw-r--r-- | templates/default.mustache | 31 |
5 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..722e59f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +builder @@ -0,0 +1,19 @@ +Copyright (c) 2019 Christian Karl <karlch at protonmail dot com> + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..fc401b0 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +base16 themes for vimiv +======================= + +[Base16](https://github.com/chriskempson/base16) +color schemes for +[vimiv](https://karlch.github.io/vimiv-qt/). + +All files in this repository are generated by +[base16-builder-python](https://github.com/InspectorMustache/base16-builder-python). + +Usage +----- + +Pick your favorite theme from the `build/` directory, place the file in vimiv's styles +directory and set the `style` option in `vimiv.conf` to the name of your chosen file. + +License +------- + +MIT diff --git a/templates/config.yaml b/templates/config.yaml new file mode 100644 index 0000000..72aebe2 --- /dev/null +++ b/templates/config.yaml @@ -0,0 +1,3 @@ +default: + extension: + output: build diff --git a/templates/default.mustache b/templates/default.mustache new file mode 100644 index 0000000..7907b84 --- /dev/null +++ b/templates/default.mustache @@ -0,0 +1,31 @@ +; base16-{{scheme-slug}} +; +; base16: (https://github.com/chriskempson/base16) +; +; Scheme: {{scheme-author}} +; Template: Christian Karl <karlch at protonmail dot com> + +[STYLE] +; Colors +base00 = #{{base00-hex}} +base01 = #{{base01-hex}} +base02 = #{{base02-hex}} +base03 = #{{base03-hex}} +base04 = #{{base04-hex}} +base05 = #{{base05-hex}} +base06 = #{{base06-hex}} +base07 = #{{base07-hex}} +base08 = #{{base08-hex}} +base09 = #{{base09-hex}} +base0a = #{{base0A-hex}} +base0b = #{{base0B-hex}} +base0c = #{{base0C-hex}} +base0d = #{{base0D-hex}} +base0e = #{{base0E-hex}} +base0f = #{{base0F-hex}} + +; Additional custom overrides, e.g. +; font = 10pt Hack +; thumbnail.padding = 32 + +; vim:ft=dosini |
