From ecd1047f5d9d713125638b850765f96ae550bd71 Mon Sep 17 00:00:00 2001 From: David P Date: Wed, 22 Mar 2017 09:52:39 -0300 Subject: Re-added lxdm-consolekit --- pcr/lxdm-consolekit/Xsession | 71 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 pcr/lxdm-consolekit/Xsession (limited to 'pcr/lxdm-consolekit/Xsession') diff --git a/pcr/lxdm-consolekit/Xsession b/pcr/lxdm-consolekit/Xsession new file mode 100644 index 000000000..deba98d72 --- /dev/null +++ b/pcr/lxdm-consolekit/Xsession @@ -0,0 +1,71 @@ +#!/bin/sh +# +# LXDM wrapper to run around X sessions. + +echo "Running X session wrapper" + +if [ $# -eq 1 -a -n "$1" ]; then + LXSESSION=$1 +else +# default session + LXSESSION=/usr/bin/startlxde +fi + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do + if [ -f "$file" ]; then + echo "Loading profile from $file"; + . "$file" + fi +done + +# Load resources +for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do + if [ -f "$file" ]; then + echo "Loading resource: $file" + xrdb -nocpp -merge "$file" + fi +done + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do + if [ -f "$file" ]; then + echo "Loading keymap: $file" + setxkbmap `cat "$file"` + XKB_IN_USE=yes + fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then + for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do + if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" + fi + done +fi + +unset XKB_IN_USE + +# Run all system xinitrc shell scripts. +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +echo "X session wrapper complete, running session $LXSESSION" + +if ! [ -z "$XDG_SESSION_COOKIE" ]; then + CK_XINIT_SESSION= +elif [ -x /usr/bin/ck-launch-session ]; then + CK_XINIT_SESSION="/usr/bin/ck-launch-session" +fi + +exec -l $SHELL -c "$CK_XINIT_SESSION \"$LXSESSION\"" + -- cgit v1.2.3