I am using bash (v3.2.25) on linux, through xterm, through exceed. When using C-u the cursor is moved next to the bash caracter prompt ($) but the rest of the line remains and is not erased as expected. Where is the issue, xterm or bash? How to resove that issue please?
This is what I put in .Xdefaults to change it to my liking.xterm*Background: black
xterm*Foreground: green
xterm*cursorColor: LightBlue
xterm*pointerShape: arrow
xterm*pointerColor: blueYou can do it how you like but if you want transparency some things have to be installed.It's explained in the wiki.
10PinkPanther
http
I'm having an interesting issue with XFCE Terminal/Gnome Terminal (not reproducible in XTerm), where executing bash or logging in using login or su will open a new Bash instance inside a Bash instance as shown:
_randall@manbearpig:/home/randall[root@manbearpig randall]#
Ctrl+D and exit both exit back to the original bash instance.
Hey all,I've been trying out and reading up on different terminals lately, and have been gradually tweaking my .Xresources along the way.I spent some time working in urxvt, and getting unicode and font support working there was pretty straight-forward.
Recently I was very frustrated with xterm not behaving as expected.
I am trying to setup my workstation in such a way that tmux is run for each terminal (xterm, gnome-terminal, ...) that is launched.
In my bash script, i am trying to run a process in another terminal window using following :
xterm -e /home/mohit/a.out
Now I want to redirect the output using tee command as follows
xterm -e /home/mohit/a.out 2>&1 | tee logfile
But I am not getting anything in logfile. Any clues, why is this happening ?
I'm using xterm windows within a VNC session, and they are not displaying colors at all. The main thing I need colors for is syntax highlighting in vim, but ls highlighting is useful also.
The default "$TERM" is "xterm".
I have a command that execute well in the normal terminal on Linux:
xterm -e bash -c "some commands"
I want to execute the above command using c program execXX system calls. I try to use the following codes but it gives me a normal xterm window.