conf.set('playingscreen', 'MIDI_PAN_RANGE', '(32, 96)')
conf.set('playingscreen', 'MIDI_VELOCITY_WRONG_NOTE_ATTN', '0.5')
conf.set('playingscreen', 'IR_POSITION', 'ABOVE')
+conf.set('playingscreen', 'SCREEN_RESOLUTION', '(1024, 768)')
conf.add_section('locations')
conf.set('locations', 'notes_font_file', _computePath('fonts/Arial Unicode.ttf'))
MIDI_PAN_RANGE = str2IntTuple(conf.get('playingscreen', 'MIDI_PAN_RANGE'))
MIDI_VELOCITY_WRONG_NOTE_ATTN = conf.getfloat('playingscreen', 'MIDI_VELOCITY_WRONG_NOTE_ATTN')
IR_POSITION = conf.get('playingscreen', 'IR_POSITION')
+SCREEN_RESOLUTION = str2IntTuple(conf.get('playingscreen', 'SCREEN_RESOLUTION'))
SONG_FILE_PATH = conf.get('locations', 'SONG_FILE_PATH')
LOGS_DIR = conf.get('locations', 'LOGS_DIR')