summaryrefslogtreecommitdiff
path: root/pcr/lxdm-consolekit/Xsession
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-03-17 09:17:07 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-03-17 09:17:07 -0500
commit1385f50eb6ff04e2ec0f53901940e32cfcc41595 (patch)
treee6c16a4ebe5acf931185679576e49ee8922f2c6f /pcr/lxdm-consolekit/Xsession
parent0c52e1f906dab039920cb7b886b4e98e8262dfd7 (diff)
downloadabslibre-1385f50eb6ff04e2ec0f53901940e32cfcc41595.tar.gz
abslibre-1385f50eb6ff04e2ec0f53901940e32cfcc41595.tar.bz2
abslibre-1385f50eb6ff04e2ec0f53901940e32cfcc41595.zip
Removing lxdm-consolekit
Diffstat (limited to 'pcr/lxdm-consolekit/Xsession')
-rw-r--r--pcr/lxdm-consolekit/Xsession71
1 files changed, 0 insertions, 71 deletions
diff --git a/pcr/lxdm-consolekit/Xsession b/pcr/lxdm-consolekit/Xsession
deleted file mode 100644
index deba98d72..000000000
--- a/pcr/lxdm-consolekit/Xsession
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/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\""
-