summaryrefslogtreecommitdiff
path: root/recipes-lxde/lxdm/files/xinitrc
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2014-10-30 09:46:40 +0100
committerStefan Agner <stefan.agner@toradex.com>2014-10-30 09:46:40 +0100
commit0cc697317b996ed0ac2c2b42208f0799d0f51b16 (patch)
tree19ee740b92a83a76d56bb29342ee3a116184054b /recipes-lxde/lxdm/files/xinitrc
parent9546fc6aa55c9dd516151900f7f467c8a6d53fb6 (diff)
lxdm: remove LXDM 0.4.1 in favor of LXDM 0.5 of meta-openembeddeddaisy
Remove LXDM 0.4.1 receipts in favor of LXDM 0.5 from meta-openembedded. The version 0.5 also supports systemd-logind as login/session manager which allows to remove now unsupported ConsoleKit without losing functionality.
Diffstat (limited to 'recipes-lxde/lxdm/files/xinitrc')
-rw-r--r--recipes-lxde/lxdm/files/xinitrc51
1 files changed, 0 insertions, 51 deletions
diff --git a/recipes-lxde/lxdm/files/xinitrc b/recipes-lxde/lxdm/files/xinitrc
deleted file mode 100644
index 68121fb..0000000
--- a/recipes-lxde/lxdm/files/xinitrc
+++ /dev/null
@@ -1,51 +0,0 @@
-# Script based on Gentoo lxdm xinitrc
-
-case $SHELL in
- */bash)
- [ -z "$BASH" ] && exec $SHELL $0 "$@"
- set +o posix
- [ -f /etc/profile ] && . /etc/profile
- if [ -f $HOME/.bash_profile ]; then
- . $HOME/.bash_profile
- elif [ -f $HOME/.bash_login ]; then
- . $HOME/.bash_login
- elif [ -f $HOME/.profile ]; then
- . $HOME/.profile
- fi
- ;;
- */zsh)
- [ -z "$ZSH_NAME" ] && exec $SHELL $0 "$@"
- emulate -R zsh
- [ -d /etc/zsh ] && zdir=/etc/zsh || zdir=/etc
- zhome=${ZDOTDIR:-$HOME}
- # zshenv is always sourced automatically.
- [ -f $zdir/zprofile ] && . $zdir/zprofile
- [ -f $zhome/.zprofile ] && . $zhome/.zprofile
- [ -f $zdir/zlogin ] && . $zdir/zlogin
- [ -f $zhome/.zlogin ] && . $zhome/.zlogin
- ;;
- */csh|*/tcsh)
- # [t]cshrc is always sourced automatically.
- # Note that sourcing csh.login after .cshrc is non-standard.
- xsess_tmp=`mktemp /tmp/xsess-env-XXXXXX`
- $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; /bin/sh -c export -p >! $xsess_tmp"
- . $xsess_tmp
- rm -f $xsess_tmp
- ;;
- *) # Plain sh, ksh, and anything we do not know.
- [ -f /etc/profile ] && . /etc/profile
- [ -f $HOME/.profile ] && . $HOME/.profile
- ;;
-esac
-
-[ -f /etc/xprofile ] && . /etc/xprofile
-[ -f $HOME/.xprofile ] && . $HOME/.xprofile
-
-# run all system xinitrc shell scripts.
-XINITDIR=/etc/X11/Xinit.d
-XINITFILES=`ls -X $XINITDIR`
-for XINITFILE in $XINITFILES; do
- if [ -x "$XINITDIR/$XINITFILE" ]; then
- . $XINITDIR/$XINITFILE
- fi
-done