https://bugs.kde.org/show_bug.cgi?id=426125
Ahmad Samir <a.samir...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDSINFO |REPORTED Resolution|WAITINGFORINFO |--- --- Comment #3 from Ahmad Samir <a.samir...@gmail.com> --- Technically what the .desktop file does is pass the command to konsole (assuming that's your default terminal emulator), and since you specified "do not close on exit" the command will be something like: konsole --noclose -e "/home/joe/tmp/ag7.0.2/bin/agraph-control --config /home/joe/tmp/ag7.0.2/lib/agraph.cfg start" could you try this, in terminal: export QT_LOGGING_RULES="*kio*=true;" dolphin note where the output in the terminal is then go to the desktop folder, you should find the link you created there, open it, and post the output from the terminal (from after you open the .desktop file) here. Generally speaking most command parse "--someword" as a parameter, for example if you want to grep "--config" in a file you'll have to use something like: grep -- --config /path/to/somefile the -- tells grep that all the string after it are not parameters. In konsoles case everything after "-e" isn't treated as parameters/options to konsole. -- You are receiving this mail because: You are watching all bug changes.