Index: uspace/app/taskbar/taskbar.c
===================================================================
--- uspace/app/taskbar/taskbar.c	(revision 7aa9fa1bf99243ad892821a844c45ebedd0f839f)
+++ uspace/app/taskbar/taskbar.c	(revision 1543d4c8f0b837462c81435cd51f0aed2abf865b)
@@ -241,6 +241,10 @@
 	wndlist_set_rect(taskbar->wndlist, &rect);
 
+	/*
+	 * We may not be able to open WM service if display server is not
+	 * running. That's okay, there simply are no windows to manage.
+	 */
 	rc = wndlist_open_wm(taskbar->wndlist, wndmgt_svc);
-	if (rc != EOK) {
+	if (rc != EOK && rc != ENOENT) {
 		printf("Error attaching window management service.\n");
 		goto error;
