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