Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 236629 Details for
Bug 325689
[lxde] add Xsession entry for LXDE
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
LXDE xsession entry for /etc/X11/Sessions/
LXDE (text/plain), 1.94 KB, created by
Nikolaj Šujskij
on 2010-06-26 11:35:34 UTC
(
hide
)
Description:
LXDE xsession entry for /etc/X11/Sessions/
Filename:
MIME Type:
Creator:
Nikolaj Šujskij
Created:
2010-06-26 11:35:34 UTC
Size:
1.94 KB
patch
obsolete
>#!/bin/sh ># LXDE Xsession starter, based on Xsession shipped by x11-apps/xinit-1.0.5-r1 > ># redirect errors to a file in user's home directory if we can >for errfile in "$HOME/.lxde-errors" "${TMPDIR-/tmp}/lxde-$USER" "/tmp/lxde-$USER" >do > if ( cp /dev/null "$errfile" 2> /dev/null ) > then > chmod 600 "$errfile" > exec > "$errfile" 2>&1 > break > fi >done > >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 /etc/X11/xorg.conf` > 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 > ># run all system xinitrc shell scripts. >if [ -d /etc/X11/xinit/xinitrc.d ]; then > for i in /etc/X11/xinit/xinitrc.d/* ; do > if [ -x "$i" ]; then > . "$i" > fi > done >fi > >exec /usr/bin/startlxde
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 325689
: 236629