diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-04-09 18:00:40 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-04-09 18:00:40 +0100 |
commit | b4aafc593f79546d3bbe1376eb265e1ecf2be18c (patch) | |
tree | 43196755b1050b4e799f0f89f1c6789b2632ab7a | |
parent | 032efb4f6e0055f7d3f7cdfc5bcb97ce2d551ff4 (diff) |
drop Xsession session seissno eissossn...you get the point
-rwxr-xr-x | x11-apps/xinit/files/Xsession | 107 | ||||
-rw-r--r-- | x11-apps/xinit/files/Xsession.desktop | 8 | ||||
-rw-r--r-- | x11-apps/xinit/xinit-1.3.4-r2.ebuild (renamed from x11-apps/xinit/xinit-1.3.4-r1.ebuild) | 4 |
3 files changed, 0 insertions, 119 deletions
diff --git a/x11-apps/xinit/files/Xsession b/x11-apps/xinit/files/Xsession deleted file mode 100755 index c86ccee1..00000000 --- a/x11-apps/xinit/files/Xsession +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/sh -# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ - -case $# in -1) - case $1 in - failsafe) - exec xterm -geometry 80x24-0-0 - ;; - esac -esac - -# redirect errors to a file in user's home directory if we can -for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER" -do - if ( cp /dev/null "$errfile" 2> /dev/null ) - then - chmod 600 "$errfile" - exec > "$errfile" 2>&1 - break - fi -done - -# clean up after xbanner -if which freetemp 2> /dev/null ; then - freetemp -fi - -startup=$HOME/.xsession - -userresources=$HOME/.Xresources -usermodmap=$HOME/.Xmodmap -userxkbmap=$HOME/.Xkbmap - -sysresources=/etc/X11/Xresources -sysmodmap=/etc/X11/Xmodmap -sysxkbmap=/etc/X11/Xkbmap - -rh6sysresources=/etc/X11/xinit/Xresources -rh6sysmodmap=/etc/X11/xinit/Xmodmap - - -# merge in defaults -if [ -f "$rh6sysresources" ]; then - xrdb -merge "$rh6sysresources" -fi - -if [ -f "$sysresources" ]; then - xrdb -merge "$sysresources" -fi - -if [ -f "$userresources" ]; then - xrdb -merge "$userresources" -fi - -# merge in keymaps -if [ -f "$sysxkbmap" ]; then - setxkbmap `cat "$sysxkbmap"` - XKB_IN_USE=yes -fi - -if [ -f "$userxkbmap" ]; then - setxkbmap `cat "$userxkbmap"` - XKB_IN_USE=yes -fi - -# -# Eeek, this seems like too much magic here -# -if [ -z "$XKB_IN_USE" -a ! -L /etc/X11/X ]; then - if grep '^exec.*/Xsun' /etc/X11/X > /dev/null 2>&1 && [ -f /etc/X11/XF86Config ]; then - xkbsymbols=`sed -n -e 's/^[ ]*XkbSymbols[ ]*"\(.*\)".*$/\1/p' /etc/X11/XF86Config` - if [ -n "$xkbsymbols" ]; then - setxkbmap -symbols "$xkbsymbols" - XKB_IN_USE=yes - fi - fi -fi - -# xkb and xmodmap don't play nice together -if [ -z "$XKB_IN_USE" ]; then - if [ -f "$rh6sysmodmap" ]; then - xmodmap "$rh6sysmodmap" - fi - - if [ -f "$sysmodmap" ]; then - xmodmap "$sysmodmap" - fi - - if [ -f "$usermodmap" ]; then - xmodmap "$usermodmap" - fi -fi - -unset XKB_IN_USE - -if [ -x "$startup" ]; then - exec "$startup" -elif [ -x "$HOME/.Xclients" ]; then - exec "$HOME/.Xclients" -elif [ -x /etc/X11/xinit/Xclients ]; then - exec /etc/X11/xinit/Xclients -elif [ -x /etc/X11/Xclients ]; then - exec /etc/X11/Xclients -else - exec xsm -fi diff --git a/x11-apps/xinit/files/Xsession.desktop b/x11-apps/xinit/files/Xsession.desktop deleted file mode 100644 index 0c5adb9d..00000000 --- a/x11-apps/xinit/files/Xsession.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=XSession -Comment=This session logs you into your custom Xsession -Exec=/etc/X11/Sessions/Xsession -TryExec=/etc/X11/Sessions/Xsession -# no icon yet, only the top three are currently used -Icon= -Type=Application diff --git a/x11-apps/xinit/xinit-1.3.4-r1.ebuild b/x11-apps/xinit/xinit-1.3.4-r2.ebuild index 7f4c4726..02feb2d5 100644 --- a/x11-apps/xinit/xinit-1.3.4-r1.ebuild +++ b/x11-apps/xinit/xinit-1.3.4-r2.ebuild @@ -49,15 +49,11 @@ src_install() { exeinto /etc/X11 doexe "${FILESDIR}"/chooser.sh "${FILESDIR}"/startDM.sh - exeinto /etc/X11/Sessions - doexe "${FILESDIR}"/Xsession exeinto /etc/X11/xinit doexe "${FILESDIR}"/xserverrc exeinto /etc/X11/xinit/xinitrc.d/ doexe "${FILESDIR}/00-xhost" - insinto /usr/share/xsessions - doins "${FILESDIR}/Xsession.desktop" } pkg_postinst() { |