# Fancy prompt colours (see
# https://wiki.archlinux.org/index.php/Color_Bash_Prompt)
-promptcol='\e[0;32m' ;# colour for the prompt
-commandcol='\e[1;31m' ;# colour for the typed command
-outputcol='\e[0m' ;# colour for command output
+titlecol=$'\e[1;30;47m' ;# colour for the title
+promptcol=$'\e[0;32m' ;# colour for the prompt
+commandcol=$'\e[1;31m' ;# colour for the typed command
+outputcol=$'\e[0m' ;# colour for command output
export PS1="\n\[$promptcol\]\$ \[$commandcol\]"
# Load key bindings (if any).
bind -f $talkdir/bindings
-echo $title
+printf %s\\n "$titlecol$title$outputcol"