From ce5b6caafa7d21a3846ef978437b6c5adfaff54a Mon Sep 17 00:00:00 2001 From: Jamy Golden Date: Sun, 15 Sep 2024 12:02:36 +0200 Subject: [PATCH] Add base24 template and rename repo to tinted-termite --- README.md | 24 +++++++++----- .../{default.mustache => base16.mustache} | 5 +-- templates/base24.mustache | 33 +++++++++++++++++++ templates/config.yaml | 8 ++++- 4 files changed, 56 insertions(+), 14 deletions(-) rename templates/{default.mustache => base16.mustache} (96%) create mode 100644 templates/base24.mustache diff --git a/README.md b/README.md index b50b759..3217bf5 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,21 @@ -# base16-termite +# tinted-termite -This repository is meant to work with -[tinted-theming/home](https://github.com/tinted-theming/home). -It provides a simple template that can be used with the base16 color schemes to -generate a functional config file for -[thestinger/termite](https://github.com/thestinger/termite), -a keyboard-centric VTE-based terminal. + +A [Tinted Theming](https://github.com/tinted-theming/home). template repository for [Termite]. + +tinted-termite provides a simple template that can be used with the +base16 and base24 color schemes to generate a functional config file for +[thestinger/termite](https://github.com/thestinger/termite), a +keyboard-centric VTE-based terminal. To use, you can copy one of the config files in themes/ or use curl: -``` +```sh mkdir -p ~/.config/termite -curl https://raw.githubusercontent.com/tinted-theming/base16-termite/master/themes/base16-default-dark.config >> ~/.config/termite/config +curl https://raw.githubusercontent.com/tinted-theming/tinted-termite/main/themes/base16-default-dark.config >> ~/.config/termite/config ``` + +[Tinted Theming]: https://github.com/tinted-theming/home +[Termite]: https://github.com/thestinger/termite +[base16]: https://github.com/tinted-theming/home +[base24]: https://github.com/tinted-theming/base24 diff --git a/templates/default.mustache b/templates/base16.mustache similarity index 96% rename from templates/default.mustache rename to templates/base16.mustache index dd1ddde..a144478 100644 --- a/templates/default.mustache +++ b/templates/base16.mustache @@ -1,7 +1,7 @@ [colors] # {{scheme-system}} {{scheme-name}} # Scheme author: {{scheme-author}} -# Template author: Tinted Theming (https://github.com/tinted-theming) +# Template author: Tinted Theming (https://github.com/tinted-theming/tinted-termite) foreground = #{{base05-hex}} foreground_bold = #{{base05-hex}} @@ -9,9 +9,6 @@ cursor = #{{base05-hex}} cursor_foreground = #{{base00-hex}} background = #{{base00-hex}} -# 16 color space - -# Black, Gray, Silver, White color0 = #{{base00-hex}} # base00 - Black color1 = #{{base08-hex}} # base08 - Red color2 = #{{base0B-hex}} # base0B - Green diff --git a/templates/base24.mustache b/templates/base24.mustache new file mode 100644 index 0000000..617531c --- /dev/null +++ b/templates/base24.mustache @@ -0,0 +1,33 @@ +[colors] +# {{scheme-system}} {{scheme-name}} +# Scheme author: {{scheme-author}} +# Template author: Tinted Theming (https://github.com/tinted-theming/tinted-termite) + +foreground = #{{base05-hex}} +foreground_bold = #{{base05-hex}} +cursor = #{{base05-hex}} +cursor_foreground = #{{base00-hex}} +background = #{{base00-hex}} + +color0 = #{{base00-hex}} # base00 - Black +color1 = #{{base08-hex}} # base08 - Red +color2 = #{{base0B-hex}} # base0B - Green +color3 = #{{base0A-hex}} # base0A - Yellow +color4 = #{{base0D-hex}} # base0D - Blue +color5 = #{{base0E-hex}} # base0E - Magenta +color6 = #{{base0C-hex}} # base0C - Cyan +color7 = #{{base05-hex}} # base05 - White +color8 = #{{base02-hex}} # base02 - Bright Black +color9 = #{{base12-hex}} # base12 - Bright Red +color10 = #{{base14-hex}} # base14 - Bright Green +color11 = #{{base13-hex}} # base13 - Bright Yellow +color12 = #{{base16-hex}} # base16 - Bright Blue +color13 = #{{base17-hex}} # base17 - Bright Magenta +color14 = #{{base15-hex}} # base15 - Bright Cyan +color15 = #{{base07-hex}} # base07 - Bright White +color16 = #{{base09-hex}} # base09 +color17 = #{{base0F-hex}} # base0F +color18 = #{{base01-hex}} # base01 +color19 = #{{base02-hex}} # base02 +color20 = #{{base04-hex}} # base04 +color21 = #{{base06-hex}} # base06 diff --git a/templates/config.yaml b/templates/config.yaml index 367c485..24112a5 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -1,3 +1,9 @@ -default: +base16: extension: .config output: themes + supported-systems: [base16] + +base24: + extension: .config + output: themes + supported-systems: [base24]