try {
File file = File.createTempFile("tvbrowser", ".ics");
file.deleteOnExit();
ICalFile ical = new ICalFile();
ical.export(file, programs, settings, formating);
new ExecutionHandler("--merge " + file.getAbsolutePath(), "korganizer").execute();
return true;
} catch (IOException e) {
ErrorHandler.handle("Could not export to KOrganizer.", e);