Comment 1 for bug 1314931

Revision history for this message
us2000 (q-launchpad-r) wrote :

The faulty lxsession-default-terminal is some sort of script which handles foldernames with spaces incorrect:

-rwxr-xr-x 1 root root 1012 Apr 10 23:52 /usr/bin/lxsession-default-terminal

#!/bin/sh
#
# Copyright (C) 2013 Julien Lavergne (<email address hidden>)
#
...
echo "Launching terminal manager"
dbus-send --session --print-reply --dest="org.lxde.SessionManager" /org/lxde/SessionManager org.lxde.SessionManager.SessionLaunch string:"terminal_manager" string:$PWD> /dev/null 2>&1

--> The real bug is the missing escaping around $PWD
Updating this file to ..."$PWD"... solved the Problem.

BR us2000