diff --git a/app/main/window-utils.js b/app/main/window-utils.js index 4a4cac6585..acd506072a 100644 --- a/app/main/window-utils.js +++ b/app/main/window-utils.js @@ -258,6 +258,14 @@ export function createWindow () { trackEvent('App Menu', 'Shortcuts'); } }, + { + label: 'Show App Data Folder', + click: (menuItem, window, e) => { + const directory = app.getPath('userData'); + shell.showItemInFolder(directory); + trackEvent('App Menu', 'Open App Data'); + } + }, { label: 'Insomnia Help', accelerator: 'CmdOrCtrl+/',