blob: 389071ae005c2e1474af286aed84b6bfa3eddcc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
echo \
"[general]
import = [\"main.toml\"]
[font]
size = $mfont_size
[font.normal]
family = \"$mfont\"
style = \"Regular\"
[font.offset]
y = $mfont_off
[colors.normal]
black = \"$std_black\"
blue = \"$std_blue\"
cyan = \"$std_cyan\"
green = \"$std_green\"
magenta = \"$std_magenta\"
red = \"$std_red\"
white = \"$std_white\"
yellow = \"$std_yellow\"
[colors.bright]
black = \"$light_black\"
blue = \"$light_blue\"
cyan = \"$light_cyan\"
green = \"$light_green\"
magenta = \"$light_magenta\"
red = \"$light_red\"
white = \"$light_white\"
yellow = \"$light_yellow\"
[colors.hints.start]
foreground = \"$fg_urgent\"
background = \"$bg_urgent\"
[colors.hints.end]
foreground = \"$fg_focus\"
background = \"$bg_focus\"
[colors.primary]
background = \"$bg_normal\"
bright_foreground = \"$fg_focus\"
foreground = \"$fg_normal\"
[colors.search.matches]
foreground = \"$fg_focus\"
background = \"$bg_focus\"
[colors.search.focused_match]
foreground = \"$fg_urgent\"
background = \"$bg_urgent\"
[colors.footer_bar]
foreground = \"$fg_normal\"
background = \"$bg_normal\"
" > $tmpdir/alacritty.toml
|