]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/termite/files/config
dc8e33920119f80e19d1d6b05bb4daf8e44bca7c
[max/saltfiles.git] / states / termite / files / config
1 {% if grains['host'] in ['rhenium', ] %}
2         {% set font_size = 16 %}
3 {% elif grains['host'] in ['dubnium', ] %}
4         {% set font_size = 13 %}
5 {% else %}
6         {% set font_size = 11 %}
7 {% endif %}
8
9 {% if grains['host'] in ['barium', 'dubnium', 'rhenium', 'cobalt'] %}
10         {% set font_family = 'Source Code Pro' %}
11 {% else %}
12         {% set font_family = 'Source Code Pro for Powerline' %}
13 {% endif %}
14
15 [options]
16 #allow_bold = true
17 #audible_bell = false
18 #clickable_url = true
19 #dynamic_title = true
20 font = {{ font_family }} {{ font_size }} 
21 #fullscreen = true
22 #geometry = 640x480
23 #icon_name = terminal
24 #mouse_autohide = false
25 #scroll_on_output = false
26 #scroll_on_keystroke = true
27 # Length of the scrollback buffer, 0 disabled the scrollback buffer
28 # and setting it to a negative value means "infinite scrollback"
29 scrollback_lines = 10000
30 #search_wrap = true
31 #urgent_on_bell = true
32 #hyperlinks = false
33
34 # $BROWSER is used by default if set, with xdg-open as a fallback
35 #browser = xdg-open
36
37 # "system", "on" or "off"
38 #cursor_blink = system
39
40 # "block", "underline" or "ibeam"
41 #cursor_shape = block
42
43 # Hide links that are no longer valid in url select overlay mode
44 #filter_unmatched_urls = true
45
46 # Emit escape sequences for extra modified keys
47 #modify_other_keys = false
48
49 # set size hints for the window
50 #size_hints = false
51
52 # "off", "left" or "right"
53 #scrollbar = off
54
55 [colors]
56 # If both of these are unset, cursor falls back to the foreground color,
57 # and cursor_foreground falls back to the background color.
58 #cursor = #dcdccc
59 #cursor_foreground = #dcdccc
60
61 #foreground = #dcdccc
62 #foreground_bold = #ffffff
63 #background = #3f3f3f
64
65 # 20% background transparency (requires a compositor)
66 background = rgba(27, 28, 22, 0.8)
67
68 # If unset, will reverse foreground and background
69 highlight = #2f2f2f
70
71 foreground =#f8f8f3
72 background = rgba(27, 28, 22, 0.8)
73 color0 =#000000
74 color8 = #555555
75 color1 = #f92672
76 color9 = #dd4278
77 color2 = #74e22e
78 color10 = #9dc54b
79 color3 = #e6db74
80 color11 = #d1ca89
81 color4 = #66d9ef
82 color12 = #7accda
83 color5 = #ae81ff
84 color13 = #b392ef
85 color6 = #00d9d9
86 color14 = #c8f0f0
87 color7 = #f5deb3
88 color15 = #ffffff
89
90 [hints]
91 #font = Monospace 12
92 #foreground = #dcdccc
93 #background = #3f3f3f
94 #active_foreground = #e68080
95 #active_background = #3f3f3f
96 #padding = 2
97 #border = #3f3f3f
98 #border_width = 0.5
99 #roundness = 2.0
100
101 # vim: ft=dosini cms=#%s