diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-12-20 21:09:17 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-20 21:09:17 -0600 |
commit | ec9a5d2f51ac26d77f63a8714dbef6e291548fdb (patch) | |
tree | bf8f5a036a243e857d9a8809694ea160cfaebfa0 /desktop/lxde-common | |
parent | c00f675facdc067b07ac4c87135bb5d01ab79085 (diff) |
desktop/lxde-common: Tweaks to xinitrc re consolekit pokeage
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/lxde-common')
-rw-r--r-- | desktop/lxde-common/config/xinitrc.lxde | 22 | ||||
-rw-r--r-- | desktop/lxde-common/lxde-common.SlackBuild | 2 |
2 files changed, 6 insertions, 18 deletions
diff --git a/desktop/lxde-common/config/xinitrc.lxde b/desktop/lxde-common/config/xinitrc.lxde index 80187bb2f974..89a8d89c55b6 100644 --- a/desktop/lxde-common/config/xinitrc.lxde +++ b/desktop/lxde-common/config/xinitrc.lxde @@ -7,25 +7,13 @@ sysresources=/etc/X11/xinit/.Xresources sysmodmap=/etc/X11/xinit/.Xmodmap # merge in defaults and keymaps - -if [ -f $sysresources ]; then - xrdb -merge $sysresources -fi - -if [ -f $sysmodmap ]; then - xmodmap $sysmodmap -fi - -if [ -f $userresources ]; then - xrdb -merge $userresources -fi - -if [ -f $usermodmap ]; then - xmodmap $usermodmap -fi +[ -f $sysresources ] && xrdb -merge $sysresources +[ -f $sysmodmap ] && xmodmap $sysmodmap +[ -f $userresources ] && xrdb -merge $userresources +[ -f $usermodmap ] && xmodmap $usermodmap # Start the window manager: -if [ -z $XDG_SESSION_COOKIE ]; then +if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then ck-launch-session startlxde else startlxde diff --git a/desktop/lxde-common/lxde-common.SlackBuild b/desktop/lxde-common/lxde-common.SlackBuild index 37f97c6be86f..2cf9ba96f89f 100644 --- a/desktop/lxde-common/lxde-common.SlackBuild +++ b/desktop/lxde-common/lxde-common.SlackBuild @@ -46,7 +46,7 @@ PRGNAM=lxde-common VERSION=${VERSION:-0.5.0} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: |