From f153cb2cfc6880985401bcdc7ff84d6faf2e0ce7 Mon Sep 17 00:00:00 2001 From: karlch Date: Fri, 16 Aug 2019 15:08:42 +0200 Subject: Initial commit Includes: * MIT License * Basic README * template configuration * vimiv style template * gitignore file to ignore the builder directory --- templates/config.yaml | 3 +++ templates/default.mustache | 31 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 templates/config.yaml create mode 100644 templates/default.mustache (limited to 'templates') 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 + +[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 -- cgit