diff options
author | George Lebl <jirka@5z.com> | 2001-08-04 23:18:08 +0000 |
---|---|---|
committer | George Lebl <jirka@src.gnome.org> | 2001-08-04 23:18:08 +0000 |
commit | bc835bab522b54f3a9770790835b224878312944 (patch) | |
tree | 7e7cdf6186829ffbc0b95308928a750619afd6d7 | |
parent | d08346e1be855097987e9ff953adee14c1ed14dd (diff) | |
download | gdm-bc835bab522b54f3a9770790835b224878312944.tar.gz |
run the scripts from /etc/X11/xinit/xinitrc.d which makes some more things
Sat Aug 04 19:36:42 2001 George Lebl <jirka@5z.com>
* config/Gnome.in: run the scripts from /etc/X11/xinit/xinitrc.d
which makes some more things work right
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | config/Gnome.in | 9 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sat Aug 04 19:36:42 2001 George Lebl <jirka@5z.com> + + * config/Gnome.in: run the scripts from /etc/X11/xinit/xinitrc.d + which makes some more things work right + Fri Aug 3 12:51:58 2001 Owen Taylor <otaylor@redhat.com> * daemon/slave.c (gdm_slave_exec_script): Set diff --git a/config/Gnome.in b/config/Gnome.in index fe575827..c294e1da 100755 --- a/config/Gnome.in +++ b/config/Gnome.in @@ -83,6 +83,15 @@ fi unset XKB_IN_USE +# run all system xinitrc shell scripts. +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for i in /etc/X11/xinit/xinitrc.d/* ; do + if [ -x "$i" ]; then + . "$i" + fi + done +fi + if [ -x "$HOME/.gnomerc" ]; then exec "$HOME/.gnomerc" else |