Review the main process file (e.g., main.js or electron/index.js) to understand how shortcuts are currently registered using Electron's globalShortcut or similar. The double Ctrl key press may require handling key events in the renderer process or using a combination like 'Control+Control'. Check if there is an existing mechanism for toggling window visibility. Implement the shortcut and test it.