2019-06-07 11:16:29 +00:00
|
|
|
Index: gdm-3.31.91/data/Init.in
|
2010-01-18 14:27:14 +00:00
|
|
|
===================================================================
|
2019-06-07 11:16:29 +00:00
|
|
|
--- gdm-3.31.91.orig/data/Init.in 2019-02-21 20:44:14.000000000 +0100
|
|
|
|
+++ gdm-3.31.91/data/Init.in 2019-02-27 07:46:21.401932235 +0100
|
2008-09-24 13:25:23 +00:00
|
|
|
@@ -1,4 +1,9 @@
|
|
|
|
#!/bin/sh
|
|
|
|
+
|
|
|
|
+if test -x /etc/X11/xdm/Xsetup; then
|
|
|
|
+ exec /etc/X11/xdm/Xsetup
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
# Stolen from the debian kdm setup, aren't I sneaky
|
|
|
|
# Plus a lot of fun stuff added
|
|
|
|
# -George
|
2019-06-07 11:16:29 +00:00
|
|
|
Index: gdm-3.31.91/data/PostSession.in
|
2010-01-18 14:27:14 +00:00
|
|
|
===================================================================
|
2019-06-07 11:16:29 +00:00
|
|
|
--- gdm-3.31.91.orig/data/PostSession.in 2018-10-12 23:05:26.000000000 +0200
|
|
|
|
+++ gdm-3.31.91/data/PostSession.in 2019-02-27 07:46:21.401932235 +0100
|
2009-02-06 22:36:06 +00:00
|
|
|
@@ -1,3 +1,7 @@
|
2008-09-24 13:25:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
+if test -x /etc/X11/xdm/Xreset; then
|
2009-02-06 22:36:06 +00:00
|
|
|
+ exec /etc/X11/xdm/Xreset
|
2008-09-24 13:25:23 +00:00
|
|
|
+fi
|
|
|
|
+
|
2009-02-06 22:36:06 +00:00
|
|
|
exit 0
|
2019-06-07 11:16:29 +00:00
|
|
|
Index: gdm-3.31.91/data/Xsession.in
|
2010-01-18 14:27:14 +00:00
|
|
|
===================================================================
|
2019-06-07 11:16:29 +00:00
|
|
|
--- gdm-3.31.91.orig/data/Xsession.in 2019-02-21 20:44:14.000000000 +0100
|
|
|
|
+++ gdm-3.31.91/data/Xsession.in 2019-02-27 07:46:21.401932235 +0100
|
2010-04-01 10:33:31 +00:00
|
|
|
@@ -1,4 +1,9 @@
|
2010-01-18 14:27:14 +00:00
|
|
|
#!@XSESSION_SHELL@
|
|
|
|
+
|
2010-04-01 10:33:31 +00:00
|
|
|
+if test -x /etc/X11/xdm/Xsession; then
|
2009-08-04 07:55:25 +00:00
|
|
|
+ exec /etc/X11/xdm/Xsession $1 $GDM_LANG
|
2010-01-18 14:27:14 +00:00
|
|
|
+fi
|
|
|
|
+
|
|
|
|
#
|
|
|
|
# This is SORT OF LIKE an X session, but not quite. You get a command as the
|
|
|
|
# first argument (it could be multiple words, so run it with "eval"). As a
|
2019-06-07 11:16:29 +00:00
|
|
|
Index: gdm-3.31.91/data/PreSession.in
|
2010-04-01 10:33:31 +00:00
|
|
|
===================================================================
|
2019-06-07 11:16:29 +00:00
|
|
|
--- gdm-3.31.91.orig/data/PreSession.in 2018-10-12 23:05:26.000000000 +0200
|
|
|
|
+++ gdm-3.31.91/data/PreSession.in 2019-02-27 07:46:21.401932235 +0100
|
2010-04-01 10:33:31 +00:00
|
|
|
@@ -6,4 +6,8 @@
|
|
|
|
#
|
|
|
|
# Note that output goes into the .xsession-errors file for easy debugging
|
|
|
|
#
|
|
|
|
+if test -x /etc/X11/xdm/Xstartup; then
|
|
|
|
+ exec /etc/X11/xdm/Xstartup
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
PATH="@X_PATH@:$PATH"
|