Browse Source

Fix session inject

tags/v0.9.0
falkTX 8 years ago
parent
commit
dae3cfd93c
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      data/cadence-session-start

+ 3
- 2
data/cadence-session-start View File

@@ -8,9 +8,10 @@ fi

INSTALL_PREFIX="X-PREFIX-X"

if [ $1 == "--system-start-by-x11-startup" ]; then
if [ "$1"x == "--system-start-by-x11-startup"x ]; then
$PYTHON $INSTALL_PREFIX/share/cadence/src/cadence_session_start.py --system-start &
exec $2
shift
exec "$@"
else
exec $PYTHON $INSTALL_PREFIX/share/cadence/src/cadence_session_start.py "$@"
fi

Loading…
Cancel
Save