custom.py.example 320 Bytes
#!/usr/bin/env python3

def filterEvent(event):
    # Enlève le Renforcement TOEIC
    if event.shortName == 'Renf.TOEIC':
        event.active = False
    # Remplace LV2 par allemand
    elif event.shortName == 'LV2':
        event.shortName = 'All'
        event.longName = event.longName.replace('LV2', 'Allemand')