all repos — openbox @ 5290af9f50c8492398e9f1c61be8f659106bc591

openbox fork - make it a bit more like ryudo

Use test -r instead of test -e for solaris.  Fixes bug #4253.
Dana Jansens danakj@orodu.net
commit

5290af9f50c8492398e9f1c61be8f659106bc591

parent

0c0ddc36289f39ee32347e775147e7300ce6cf89

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M data/xsession/openbox-session.indata/xsession/openbox-session.in

@@ -10,10 +10,10 @@

AUTOSTART="${XDG_CONFIG_HOME:-"$HOME/.config"}/openbox/autostart.sh" GLOBALAUTOSTART="@configdir@/openbox/autostart.sh" -if test -e $AUTOSTART; then +if test -r $AUTOSTART; then . $AUTOSTART else - if test -e $GLOBALAUTOSTART; then + if test -r $GLOBALAUTOSTART; then . $GLOBALAUTOSTART fi fi