@Override
 public boolean runProcessWithProgressSynchronously(
     @NotNull final Task task, @Nullable final JComponent parentComponent) {
   final long start = System.currentTimeMillis();
   final boolean result = super.runProcessWithProgressSynchronously(task, parentComponent);
   if (result) {
     final long end = System.currentTimeMillis();
     final Task.NotificationInfo notificationInfo = task.notifyFinished();
     long time = end - start;
     if (notificationInfo != null
         && time > 5000) { // show notification only if process took more than 5 secs
       final JFrame frame = WindowManager.getInstance().getFrame(task.getProject());
       if (frame != null && !frame.hasFocus()) {
         systemNotify(notificationInfo);
       }
     }
   }
   return result;
 }