desktop/xmonad: Poke consolekit in xinitrc

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2010-12-20 21:04:08 -06:00
parent e5a3a8a37c
commit c00f675fac
2 changed files with 6 additions and 2 deletions

View file

@ -11,5 +11,9 @@ sysmodmap=/etc/X11/xinit/.Xmodmap
[ -f $userresources ] && /usr/bin/xrdb -merge $userresources
[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap
exec /usr/bin/xmonad
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
exec ck-launch-session /usr/bin/xmonad
else
exec /usr/bin/xmonad
fi

View file

@ -7,7 +7,7 @@
PRGNAM=xmonad
VERSION=${VERSION:-0.9.1}
BUILD=${BUILD:-2}
BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
GHC_VERSION=$(ghc --numeric-version)