-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index b3c0453..5bb71c0 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp @@ -48,14 +48,15 @@ int main(int argc, char* argv[]) shell = "/bin/sh"; // sh is completely broken on familiar. Let's try to get something better if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) shell = "/bin/bash"; putenv((char*)"COLORTERM="); // to trigger mc's color detection + tmp.insert(0,"-"); // we want a login shell Konsole m( "test", shell, tmp, TRUE ); m.setCaption( Konsole::tr("Terminal") ); a.showMainWidget( &m ); return a.exec(); } |