~~This page replaces what was previously “Make the console have a transparent black background/Konsole Background Settings”, last modified by neil1952~~
Konsole has a black background in easy mode and a white background in advanced mode. To change it to a black semi-transparent one:
Here is a very well written guide to changing the default bash prompt: http://www.linuxselfhelp.com/howtos/Bash-Prompt/Bash-Prompt-HOWTO.html#toc6
If thats a bit much, then the following is short guide to make your prompt look like this in yellow: ”/etc/X11 # ”. I.E. displaying just the working directory and a hash. Xandros uses a format similar to this, but eeeXubuntu for example uses something like “username@machinename-workingdirectory-$”, which takes up lots of room on a small screen if the first part never changes!
The following guide should work in any distribution, and set your prompt to yellow “workingdirectory # ”.
cp ~/.bashrc ~/.bashrc.bak
cp ~/.bashrc.bak ~/.bashrc
mousepad ~/.bashrc
PS1="\[\033[1;33m\]\w #\[\033[0m\] "
# set a fancy prompt (non-color, unless we know we "want" color)
#case "$TERM" in
#xterm-color)
# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
# ;;
#*)
# PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
# ;;
#esac
# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '