slitaz-tools view hacker/.profile @ rev 208

calendar: no more hardcoded date
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 27 15:32:37 2008 +0000 (2008-05-27)
parents 48ac90e80745
children
line source
1 # ~/.profile: Executed by Bourne-compatible login SHells.
2 #
4 # Path to personnal scripts and executables (~/.local/bin).
5 #
6 if [ -d "$HOME/.local/bin" ] ; then
7 PATH=$HOME/.local/bin:$PATH
8 export PATH
9 fi
11 # Java home directory path.
12 #
13 #JAVA_HOME=$HOME/Bin/jre1.6.0_03
14 #JAVA_BINDIR=$JAVA_HOME/bin
15 #if [ -d "$HOME/Bin" ] ; then
16 # export PATH=$JAVA_BINDIR:$PATH
17 #fi
19 # Environnement variables and prompt for Ash SHell
20 # or Bash.
21 #
23 # Classic prompt.
24 PS1='\u@\h:\w\$ '
26 # Light green and blue colored prompt.
27 #PS1='\e[1;32m\u@\h\e[0m:\e[1;34m\w\e[0m\$ '
29 # Light blue or yellow.
30 #PS1='\e[1;34m\u@\h:\w\e[0m\$ '
31 #PS1='\[\033[1;33m\]\u@\h:\w\[\033[0m\]\$ '
33 EDITOR='nano'
34 PAGER='less -EM'
36 export PS1 EDITOR PAGER
38 umask 022