private void OnOverlayRequest(object sender, EventArgs e)
 {
     if (this.InvokeRequired)
     {
         this.Invoke(new Action(() =>
         {
             consoleText.Text = string.Join(Environment.NewLine, consoleOverlay.GetConsoleInformation());
         }));
     }
 }