summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/autostart.sh8
-rw-r--r--data/xsession/openbox-session.in6
2 files changed, 10 insertions, 4 deletions
diff --git a/data/autostart.sh b/data/autostart.sh
index 962cae07..b0f421da 100644
--- a/data/autostart.sh
+++ b/data/autostart.sh
@@ -29,3 +29,11 @@ fi
if which start_kdeinit >/dev/null; then
LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
fi
+
+# Support for SCIM
+if which scim >/dev/null; then
+ export XMODIFIERS=@im=SCIM
+ export GTK_IM_MODULE=scim
+ export QT_IM_MODULE=scim
+ scim -d &
+fi
diff --git a/data/xsession/openbox-session.in b/data/xsession/openbox-session.in
index c466f17d..b3f1c057 100644
--- a/data/xsession/openbox-session.in
+++ b/data/xsession/openbox-session.in
@@ -4,12 +4,10 @@ AUTOSTART="$HOME/.config/openbox/autostart.sh"
GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
if test -e $AUTOSTART; then
- # sleep for 1 second so Openbox is there before anything else
- (sleep 1 && . $AUTOSTART) &
+ . $AUTOSTART
else
if test -e $GLOBALAUTOSTART; then
- # sleep for 1 second so Openbox is there before anything else
- (sleep 1 && . $GLOBALAUTOSTART) &
+ . $GLOBALAUTOSTART
fi
fi