Index: uspace/app/taskbar/clock.c
===================================================================
--- uspace/app/taskbar/clock.c	(revision 651dde7897579dd734beac4997b0da126f485de4)
+++ uspace/app/taskbar/clock.c	(revision f6b299290645712a4a732c729e0d2ea73377bdc5)
@@ -219,4 +219,12 @@
 }
 
+/** Launch date configuration application */
+static errno_t taskbar_clock_launch_date_cfg(void)
+{
+	task_id_t id;
+	const char *args[] = { "/app/date_cfg", NULL };
+	return task_spawnv(&id, NULL, args[0], args);
+}
+
 /** Handle taskbar clock position event.
  *
@@ -233,4 +241,8 @@
 	if (!gfx_pix_inside_rect(&pos, &clock->rect))
 		return ui_unclaimed;
+
+	if (event->type == POS_PRESS) {
+		taskbar_clock_launch_date_cfg();
+	}
 
 	return ui_claimed;
