The konsole tag has no wiki summary.
5
votes
3answers
432 views
In linux, how can I test whether the output of a program is going to a live terminal or to a file?
When you use git it seems to magically know whether standard out is going through a pipe or into a file vs when it is being displayed to the console. For example, if you have colors enabled and you ...
2
votes
2answers
151 views
Color themes are strange/incorrect in terminal emulator
I'm running emacs-nox 23.3 in Konsole (from kde) emulator, the most color themes have strange colors.
For example, i like the Solarized Theme. I expect the theme should look like this:
However, ...
2
votes
2answers
217 views
opening more than one file split vertically through emacs -nw
Using emacs -nw file1 file2 I can open multiple files at once. However, emacs will open them in horizontal splits. Is there a way to set default split behavior to vertical? I have looked at:
...
2
votes
2answers
439 views
How do I forward `<Ctrl>-<Tab>` in Konsole?
I want to use intelligent tabbing in Emacs in C++ mode, but I also want to be able to insert a tab character when necessary. From other posts, I gather that the easiest way is to bind ...
1
vote
3answers
55 views
Variable taking garbage value inside a loop while calling a command line instance in Perl
do
{
print"CHOOSE ANY OF THE FOLLOWING OPTIONS:\n";
print"==========================================\n";
print"1-LOGIN & LOGOUT\n";
print"2-MAKE CALL\n";
print"3-EXIT\n";
...
1
vote
0answers
91 views
Konsole weird Ctrl-PageUp Ctrl-PageDown [closed]
I am familiar with gnome-terminal rather than konsole (KDE). When switching to konsole, there is a wierd phenomenon I would like to ask.
When I invoke Ctrl+PgUp, konsole go to the previous tab rather ...
1
vote
2answers
172 views
How can one put the output of a command into a konsole title bar?
Through the clever use of some escape characters, I used to put the output of arbitrary commands (e.g. "dirs") into my xterm title bar. Can I do the same thing in konsole? If so, how?
1
vote
1answer
142 views
Reading mouse-event on konsole
#!/usr/bin/env perl
use warnings;
use 5.012;
binmode STDOUT, ':encoding(UTF-8)';
use Term::ReadKey;
sub getch {
my $tty_in = shift;
my $c = ReadKey 0, $tty_in;
if ( $c eq "\e" ) {
...
1
vote
1answer
199 views
Set transparency dynamically in Konsole
I like the transparency effect on Konsole, but when I'm in vim I need to focus and it can be distracting. Is there a way to dynamically turn the transparency on and off, depending on whether my ...
0
votes
0answers
31 views
Key bindings in Konsole/vim like in console
I accidentally removed all key bindings from my Konsole profiles. It printed A, B, C and D when I used the arrow keys in vim. How can I get the same key bindings in my Konsole/vim like in the real ...
0
votes
1answer
44 views
renaming konsole from commandline after ssh
I use dcop to rename a konsole, such as
dcop $KONSOLE_DCOP_SESSION renameSession "whatever"
However, when I ssh to a server and from there, I issue this command, it does not work and gives error:
...
0
votes
0answers
11 views
Where are the settings for Mouse Interaction and Flow Control stored for Konsole?
I have others in ~/.kde/share/config/konsolerc & ~/.kde/share/apps/konsole/Shell.profile but not these.
Could it something to do with:
[MainWindow]
...
0
votes
1answer
151 views
Does anybody have any experience installing the KDE for Windows port?
I come from a Linux/Unix development background and my latest job uses a Windows XP based development environment. I find that I'm missing a lot of functionality that I got used to when working with ...
0
votes
1answer
201 views
Sending Commands to Konsole Terminal
I like to be able to send a command when I launch the Konsole in RedHat 5. Eg.
$ konsole -e "sleep 30"
What is happening is the "sleep 30" is becoming the title and I am getting an error saying ...
0
votes
1answer
518 views
How to change colors programmatically in Konsole based on current directory?
I currently use a color scheme based on which directory that I'm working in. I manually open up a Konsole shell and then cd into a directory and got to Settings and change the color scheme.
What I ...