Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/app/init/init.c	(revision fd111442357ec5b278bf3285f633946fcb3d1ede)
@@ -69,5 +69,4 @@
 
 #define SRV_DISPLAY  "/srv/hid/display"
-#define DISPLAY_SVC  "hid/display"
 
 #define HID_INPUT              "hid/input"
@@ -278,5 +277,5 @@
 }
 
-static int gui_start(const char *app, const char *display_svc)
+static int app_start(const char *app)
 {
 	printf("%s: Spawning %s\n", NAME, app);
@@ -284,5 +283,5 @@
 	task_id_t id;
 	task_wait_t wait;
-	errno_t rc = task_spawnl(&id, &wait, app, app, display_svc, NULL);
+	errno_t rc = task_spawnl(&id, &wait, app, app, NULL);
 	if (rc != EOK) {
 		oom_check(rc, app);
@@ -472,7 +471,7 @@
 		rc = display_server();
 		if (rc == EOK) {
-			gui_start("/app/barber", DISPLAY_SVC);
-			gui_start("/app/vlaunch", DISPLAY_SVC);
-			gui_start("/app/vterm", DISPLAY_SVC);
+			app_start("/app/barber");
+			app_start("/app/vlaunch");
+			app_start("/app/vterm");
 		}
 	}
