8006a32520
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/xorg-x11-xinit#a25ca0d570daa8835efe66e52fa242153972e2f1
8 lines
132 B
Bash
8 lines
132 B
Bash
#!/bin/sh
|
|
for session in ~/.xsession ~/.Xclients /etc/X11/xinit/Xclients ;
|
|
do
|
|
if [ -f ${session} ] ; then
|
|
exec ${session}
|
|
fi
|
|
done
|