├── README.md ├── config └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | base16-terminator 2 | ================= 3 | 4 | Terminator config using base16 color scheme. All credit goes to Chris Kempson for 5 | [base16 awesomeness](https://github.com/chriskempson/base16) 6 | 7 | Installation 8 | ------------ 9 | 10 | Copy `config` to `~/.config/terminator` or copy/replace the following lines: 11 | 12 | ``` 13 | palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec" 14 | background_color = "#2d2d2d" 15 | cursor_color = "#d3d0c8" 16 | foreground_color = "#d3d0c8" 17 | ``` 18 | 19 | Restart terminator. Done. 20 | 21 | License 22 | ------- 23 | 24 | ISC 25 | -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- 1 | [global_config] 2 | title_hide_sizetext = True 3 | title_transmit_bg_color = "#3686d9" 4 | tab_position = bottom 5 | [keybindings] 6 | [profiles] 7 | [[default]] 8 | palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec" 9 | background_color = "#2d2d2d" 10 | cursor_color = "#d3d0c8" 11 | foreground_color = "#d3d0c8" 12 | scrollbar_position = hidden 13 | use_system_font = False 14 | background_darkness = 0.92 15 | background_type = transparent 16 | background_image = None 17 | split_to_group = True 18 | icon_bell = False 19 | font = Source Code Pro Medium 10 20 | [plugins] 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, Joerg Henning <> 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | 15 | --------------------------------------------------------------------------------