private void ControlEvents_KeyPressed(object sender, EventArgsKeyPressed e)
        {
            ModConfig config = Helper.ReadConfig <ModConfig>();

            if (config.polly == "off" || !pollySetup)
            {
                if (e.KeyPressed == Keys.F7)
                {
                    SpeechHandler.showInstalledVoices();
                }

                if (e.KeyPressed == Keys.F8)
                {
                    SpeechHandler.demoVoices();
                }
            }
        }