add font size to config

This commit is contained in:
j 2018-07-31 09:37:42 +02:00
parent 36d0f32139
commit f8cbf40e1d
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ lang = '1080p'
start = '' start = ''
lights = False lights = False
font = 'Menlo' font = 'Menlo'
font_size = 28
conf = os.path.expanduser('~/.config/cdosea.json') conf = os.path.expanduser('~/.config/cdosea.json')
if os.path.exists(conf): if os.path.exists(conf):

View File

@ -43,7 +43,7 @@ def main():
base = os.path.dirname(os.path.abspath(__file__)) base = os.path.dirname(os.path.abspath(__file__))
os.chdir(base) os.chdir(base)
player = get_player(font=config.font) player = get_player(font=config.font, font_size=config.font_size)
player.register_key_binding('q', q_binding) player.register_key_binding('q', q_binding)
def restart(*a): def restart(*a):

View File

@ -22,11 +22,11 @@ def mpv_log(loglevel, component, message):
logger.info('[{}] {}: {}'.format(loglevel, component, message)) logger.info('[{}] {}: {}'.format(loglevel, component, message))
def get_player(fullscreen=True, font='Menlo'): def get_player(fullscreen=True, font='Menlo', font_size=28):
# 42 max # 42 max
player = mpv.MPV( player = mpv.MPV(
log_handler=mpv_log, input_default_bindings=True, log_handler=mpv_log, input_default_bindings=True,
input_vo_keyboard=True, sub_text_font_size=28, sub_text_font=font, input_vo_keyboard=True, sub_text_font_size=font_size, sub_text_font=font,
) )
#player.observe_property('time-pos', lambda pos: print('Now playing at {:.2f}s'.format(pos))) #player.observe_property('time-pos', lambda pos: print('Now playing at {:.2f}s'.format(pos)))
player.fullscreen = fullscreen player.fullscreen = fullscreen