summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2015-01-20 09:32:43 -0500
committerRay Strode <rstrode@redhat.com>2015-02-16 23:36:04 -0500
commit2923647d2c1271de74c58c60c593b36159e28f8d (patch)
tree0d8c71125327387485688aeadad748a90c45fe53
parentde358fecacc383c75c57153000550ffc671773b0 (diff)
downloadgdm-2923647d2c1271de74c58c60c593b36159e28f8d.tar.gz
session: start user X sessions on a new VT
We now have all the plumbing in place to start user X sessions on new VTs, so we should do it. This commit does that.
-rw-r--r--daemon/gdm-session.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/daemon/gdm-session.c b/daemon/gdm-session.c
index aa4bf136..f53cc4cb 100644
--- a/daemon/gdm-session.c
+++ b/daemon/gdm-session.c
@@ -2889,6 +2889,13 @@ gdm_session_get_display_mode (GdmSession *self)
}
#endif
+ /* Non-seat0 sessions share their X server with their login screen
+ * for now.
+ */
+ if (g_strcmp0 (self->priv->display_seat_id, "seat0") != 0) {
+ return GDM_SESSION_DISPLAY_MODE_REUSE_VT;
+ }
+
/* The X session used for the login screen uses the
* X server started up by the slave, so it should be
* reuse VT
@@ -2897,9 +2904,10 @@ gdm_session_get_display_mode (GdmSession *self)
return GDM_SESSION_DISPLAY_MODE_REUSE_VT;
}
- /* X sessions are for now ran in classic mode where
- * we reuse the existing greeter. */
- return GDM_SESSION_DISPLAY_MODE_REUSE_VT;
+ /* user based X sessions start on a new VT now and are managed
+ * by logind
+ */
+ return GDM_SESSION_DISPLAY_MODE_LOGIND_MANAGED;
}
void