From 37779e7711bf3d6fe5830a7dbf838d551c5f03d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Fri, 10 Sep 2010 02:35:00 +0000 Subject: [PATCH] * Make Konsole launch from desktop more intuitive git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1173670 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdesktop/krootwm.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdesktop/krootwm.cc b/kdesktop/krootwm.cc index ce8b3597e..8769de363 100644 --- a/kdesktop/krootwm.cc +++ b/kdesktop/krootwm.cc @@ -132,7 +132,7 @@ KRootWm::KRootWm(KDesktop* _desktop) : TQObject(_desktop) if (kapp->authorize("run_command")) { new KAction(i18n("Run Command..."), "run", 0, m_pDesktop, TQT_SLOT( slotExecuteCommand() ), m_actionCollection, "exec" ); - new KAction(i18n("Konsole ..." ), "terminal", CTRL+Key_T, this, TQT_SLOT( slotOpenTerminal() ), + new KAction(i18n("Open Terminal Here..." ), "terminal", CTRL+Key_T, this, TQT_SLOT( slotOpenTerminal() ), m_actionCollection, "open_terminal" ); } @@ -746,7 +746,7 @@ void KRootWm::slotOpenTerminal() KConfigGroupSaver gs(KGlobal::config(), "General"); TQString terminal = KGlobal::config()->readPathEntry("TerminalApplication", "konsole"); - *p << terminal; + *p << terminal << " --workdir \"$HOME/Desktop\""; p->start(KProcess::DontCare);