all repos — openbox @ b11d260dbed6faa93eb6c0393e0b284231e4055e

openbox fork - make it a bit more like ryudo

add SCIM support to the default autostart. make the autostart run before openbox.
Dana Jansens danakj@orodu.net
commit

b11d260dbed6faa93eb6c0393e0b284231e4055e

parent

40c0bc42263edf033daca3067ac4624774b39889

2 files changed, 10 insertions(+), 4 deletions(-)

jump to
M data/autostart.shdata/autostart.sh

@@ -29,3 +29,11 @@ # Preload stuff for KDE apps

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
M data/xsession/openbox-session.indata/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