projects
/
dana
/
openbox.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add SCIM support to the default autostart. make the autostart run before openbox.
[dana/openbox.git]
/
data
/
xsession
/
openbox-session.in
1
#!/bin/sh
2
3
AUTOSTART="$HOME/.config/openbox/autostart.sh"
4
GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
5
6
if test -e $AUTOSTART; then
7
. $AUTOSTART
8
else
9
if test -e $GLOBALAUTOSTART; then
10
. $GLOBALAUTOSTART
11
fi
12
fi
13
14
exec @bindir@/openbox "$@"