feat: add speedrunner timer configs
This commit is contained in:
parent
2417ab316f
commit
d4e4dac916
4 changed files with 104 additions and 0 deletions
92
hail/config.toml
Normal file
92
hail/config.toml
Normal file
|
@ -0,0 +1,92 @@
|
|||
win_rect = [0, 0, 300, 500]
|
||||
[keybinds]
|
||||
is_global = true
|
||||
split = "space"
|
||||
pause = "enter"
|
||||
skip = "minus"
|
||||
undo = "u"
|
||||
reset = "r"
|
||||
prev_comparison = "left"
|
||||
next_comparison = "right"
|
||||
load_run = "f1"
|
||||
reload_config = "f2"
|
||||
load_state = "f3"
|
||||
dump_state = "f4"
|
||||
toggle_global = "f5"
|
||||
|
||||
[[plugin]]
|
||||
name = "debug_events"
|
||||
|
||||
[[plugin]]
|
||||
name = "game_info"
|
||||
config ="""
|
||||
bg_color = [0, 0, 0, 0]
|
||||
text_color = [255, 255, 255, 255]
|
||||
[font]
|
||||
name = 'SansSerif'
|
||||
style = 'Normal'
|
||||
weight = 'Normal'
|
||||
size = 18
|
||||
"""
|
||||
|
||||
[[plugin]]
|
||||
name = "segments"
|
||||
config = """
|
||||
base_color = [255, 255, 255, 255]
|
||||
behind_color = [255, 0, 0, 255]
|
||||
gaining_color = [255, 90, 90, 255]
|
||||
losing_color = [135, 255, 125, 255]
|
||||
ahead_color = [0, 255, 0, 255]
|
||||
gold_color = [255, 255, 0, 255]
|
||||
bg_color = [0, 0, 0, 0]
|
||||
line_color = [255, 255, 255, 255]
|
||||
current_color = [0, 0, 255, 100]
|
||||
two_rows = true
|
||||
draw_lines = true
|
||||
show_future = false
|
||||
[font]
|
||||
name = 'SansSerif'
|
||||
style = 'Normal'
|
||||
weight = 'Normal'
|
||||
size = 18
|
||||
"""
|
||||
|
||||
|
||||
[[plugin]]
|
||||
name = "timer"
|
||||
config = """
|
||||
base_color = [255, 255, 255, 255]
|
||||
behind_color = [255, 0, 0, 255]
|
||||
gaining_color = [255, 90, 90, 255]
|
||||
losing_color = [135, 255, 125, 255]
|
||||
ahead_color = [0, 255, 0, 255]
|
||||
bg_color = [0, 0, 0, 0]
|
||||
precision = "Millis"
|
||||
timing = "Real"
|
||||
decimal_scale = 0.85
|
||||
[font]
|
||||
name = 'SansSerif'
|
||||
style = 'Normal'
|
||||
weight = 'Normal'
|
||||
size = 50
|
||||
"""
|
||||
|
||||
[[plugin]]
|
||||
name = "sum_of_best"
|
||||
config = """
|
||||
font = {name = "SansSerif", style = "Normal", weight = "Normal", size = 18}
|
||||
text_color = [255, 255, 255, 255]
|
||||
bg_color = [0, 0, 0, 0]
|
||||
"""
|
||||
|
||||
[[plugin]]
|
||||
name = "diff"
|
||||
config = """
|
||||
comparison = 'Current'
|
||||
font = {name = "SansSerif", style = "Normal", weight = "Normal", size = 18}
|
||||
text_color = [255, 255, 255, 255]
|
||||
bg_color = [0, 0, 0, 0]
|
||||
"""
|
||||
|
||||
[[plugin]]
|
||||
name = "websocket"
|
1
libresplit/default.json
Symbolic link
1
libresplit/default.json
Symbolic link
|
@ -0,0 +1 @@
|
|||
splits/default.json
|
5
libresplit/settings.json
Normal file
5
libresplit/settings.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"libresplit": {
|
||||
"split_file": "/home/buymymojo/.config/libresplit/splits/default.json"
|
||||
}
|
||||
}
|
6
libresplit/splits/default.json
Normal file
6
libresplit/splits/default.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"attempt_count": 1,
|
||||
"splits" : [
|
||||
{}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue