-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrikai_config.py
27 lines (21 loc) · 880 Bytes
/
rikai_config.py
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
# interval between checking for the next subtitle, in seconds
update_time = 0.01
# holds the styling of the subtitles. Modify at your own risks.
style_subs = '''
QFrame {
background-color: rgba(0, 0, 0, 0);
color: white;
font-family: "Noto Serif CJK JP Light";
}
'''
# point size of the font as in https://doc.qt.io/qt-5/qfont.html#pointSize
default_font_point_size = 50
# default zoom of the popup
default_zoom_popup = 1
# number of pixels to leave at the bottom of the screen, below subtitles
bottom_spacing_pixels = 100
# indicates the index of the screen the subtitles will be displayed on, to set manually.
# For example, if you have 3 screens, this number could be either 0, 1 or 2.
n_screen = 0
# Ideally, more parameters could be added here, as interSubs does:
# https://github.com/oltodosel/interSubs/blob/master/interSubs_config.py