I need help to have some things cleaned up.
Christian Krause aka wookietreiber
kizkizzbangbang at googlemail.com
Mon Jan 10 16:33:31 CET 2011
Hi,
Localization:
write the following line to $HOME/.bashrc
export LANG="pl_PL.utf-8"
then logout and login again and query LANG with the following line:
echo $LANG
if it is unset, make sure your .bashrc gets sourced and LANG gets not overwritten and try again ;)
Prompt:
prompt uses the var PS1
on my system it is set to
PS1="\\[\\033[0;32m\\]\\u@\\h \\w \\\$ \\[\\033[0m\\]"
and is set in
/etc/profile.d/bash-prompt.rc
best regards
christian aka wookietreiber
On Mon, Jan 10, 2011 at 03:50:08PM +0100, Marek Pasnikowski wrote:
> My home partition is pretty old and config-messy now and I would like to
> switch from GTK to QT (this time permanently). However, I noticed on my
> XFCE/GNOME system, that the startup programs are the same on both of
> those DE's, so I need to delete the appropriate file, which stores this
> information. Which file is it?
>
> Also, instead of username at hostname$ my user prompt (root is OK) looks
> so: bash-4.1$. Is there anything I can do to change this? I am under
> impression, that my previous installation of lunar didn't have this
> problem.
>
> Last thing is localization. I would like to set pl_PL.utf-8 as my main
> locale. How do I do that?
>
> ----------------------------------------------------------------
> Nowy Rok, nowa praca, nowe perspektywy!
> Sprawd?? >> http://linkint.pl/f28e2
>
> _______________________________________________
> Lunar mailing list
> Lunar at lunar-linux.org
> http://foo-projects.org/mailman/listinfo/lunar
-------------- next part --------------
# this makes your prompt nice if it is supported:
if [ $UID -ge 100 ]; then
prompt_colour="\[\033[0;36m\]"
elif [ $UID == 0 ]; then
prompt_colour="\[\033[0;32m\]"
else
prompt_colour="\[\033[0;35m\]"
fi
no_colour="\[\033[0m\]"
# only set titlebar in a capable terminal:
case $TERM in
rxvt*|xterm*|gnome*|konsole*)
long_title='\u@\h \w'
short_title='\W'
titlebar="\[\033]0;$short_title\007\033]2;$long_title\007\]"
;;
*)
titlebar=""
;;
esac
# here we set our prompt:
export PS1="${titlebar}$prompt_colour\u@\h \w \\$ $no_colour"
export PS2='> '
eval `dircolors`
More information about the Lunar
mailing list