Add this snippet to a script file.
Load script file in PS scripts folder
Restart photoshop
Assign keyboard shortcut to script
/////////////////////////////////////////////
#target photoshop
//Make Photoshop the formost Appplication
app.bringToFront();
// Requires at least one open document
while (app.documents.length > 0)
//Save all open windows
{activeDocument.close(SaveOptions.SAVECHANGES);}