Inserting Events

KonsoleKalendar can insert events into a calendar or calendar resource using the --add command line argument. Events successfully inserted will be immediately shown by KDE calendar applications (like KOrganizer).

You get a list of all calendars and their id's using:

% konsolekalendar --list-calendars

In the following example, an event starting on 2016-12-01 (December 1, 2016) at 10:00 and ending at 12:00 with summary "Doctor Visit" will be inserted into the user's calendar resource with the id 8:

% konsolekalendar --add --calendar 8 --date 2016-12-03 --time 10:00 \
--end-time 12:00 --summary "Doctor Visit"

In this example, a birthday event is added into the user's calendar resource with the id 8:

% konsolekalendar --add --calendar 8 --date 2016-12-06 --summary "My Birthday" \
--description "Party Time"

Here a one week vacation is inserted into a calendar with the id 8:

% konsolekalendar --add --calendar 12 --date 2017-08-01 \
--end-date 2017-08-07 --summary "Vacation" --description "Nobody will ever find me!"