2010-05-11 14:03:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
userresources=$HOME/.Xresources
|
|
|
|
usermodmap=$HOME/.Xmodmap
|
2010-10-20 01:11:31 +02:00
|
|
|
sysresources=/etc/X11/xinit/.Xresources
|
|
|
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
2010-05-11 14:03:46 +02:00
|
|
|
|
2010-05-11 22:21:53 +02:00
|
|
|
# Merge in defaults and keymaps
|
|
|
|
[ -f $sysresources ] && /usr/bin/xrdb -merge $sysresources
|
|
|
|
[ -f $sysmodmap ] && /usr/bin/xmodmap $sysmodmap
|
|
|
|
[ -f $userresources ] && /usr/bin/xrdb -merge $userresources
|
|
|
|
[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap
|
2010-05-11 14:03:46 +02:00
|
|
|
|
2010-05-11 22:21:53 +02:00
|
|
|
# Create default user directory & populate it if it does not already exist
|
2010-05-11 14:03:46 +02:00
|
|
|
if [ ! -d $HOME/.icewm ]; then
|
|
|
|
mkdir $HOME/.icewm
|
|
|
|
for FILE in keys menu preferences toolbar winoptions;
|
|
|
|
do cat /usr/share/icewm/$FILE > $HOME/.icewm/$FILE;
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start IceWM
|
|
|
|
icewmbg &
|
|
|
|
icewmtray &
|
2010-10-20 01:11:31 +02:00
|
|
|
|
2010-12-21 04:11:00 +01:00
|
|
|
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
|
2012-08-01 19:39:11 +02:00
|
|
|
ck-launch-session dbus-launch --exit-with-session icewm-session
|
2010-10-20 01:11:31 +02:00
|
|
|
else
|
|
|
|
exec icewm-session
|
|
|
|
fi
|
2010-05-11 14:03:46 +02:00
|
|
|
|