Advertisement
Guest User

Untitled

a guest
Dec 19th, 2010
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.76 KB | None | 0 0
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4. source /etc/profile
  5.  
  6. # If not running interactively, don't do anything
  7. [ -z "$PS1" ] && return
  8.  
  9. # don't put duplicate lines in the history. See bash(1) for more options
  10. # don't overwrite GNU Midnight Commander's setting of `ignorespace'.
  11. export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
  12. # ... or force ignoredups and ignorespace
  13. export HISTCONTROL=ignoreboth
  14.  
  15. # append to the history file, don't overwrite it
  16. shopt -s histappend
  17.  
  18. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  19.  
  20. # check the window size after each command and, if necessary,
  21. # update the values of LINES and COLUMNS.
  22. shopt -s checkwinsize
  23.  
  24. # make less more friendly for non-text input files, see lesspipe(1)
  25. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  26.  
  27. # set variable identifying the chroot you work in (used in the prompt below)
  28. if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
  29.     debian_chroot=$(cat /etc/debian_chroot)
  30. fi
  31.  
  32. # set a fancy prompt (non-color, unless we know we "want" color)
  33. case "$TERM" in
  34.     xterm-color) color_prompt=yes;;
  35. esac
  36.  
  37. # uncomment for a colored prompt, if the terminal has the capability; turned
  38. # off by default to not distract the user: the focus in a terminal window
  39. # should be on the output of commands, not on the prompt
  40. #force_color_prompt=yes
  41.  
  42. if [ -n "$force_color_prompt" ]; then
  43.     if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  44.         # We have color support; assume it's compliant with Ecma-48
  45.         # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  46.         # a case would tend to support setf rather than setaf.)
  47.         color_prompt=yes
  48.     else
  49.         color_prompt=
  50.     fi
  51. fi
  52.  
  53. if [ "$color_prompt" = yes ]; then
  54.     PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  55. else
  56.     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  57. fi
  58. unset color_prompt force_color_prompt
  59.  
  60. # If this is an xterm set the title to user@host:dir
  61. case "$TERM" in
  62. xterm*|rxvt*)
  63.     PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  64.     ;;
  65. *)
  66.     ;;
  67. esac
  68.  
  69. # Alias definitions.
  70. # You may want to put all your additions into a separate file like
  71. # ~/.bash_aliases, instead of adding them here directly.
  72. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  73.  
  74. #if [ -f ~/.bash_aliases ]; then
  75. #    . ~/.bash_aliases
  76. #fi
  77.  
  78. # enable color support of ls and also add handy aliases
  79. if [ -x /usr/bin/dircolors ]; then
  80.     eval "`dircolors -b`"
  81.     alias ls='ls --color=auto'
  82.     #alias dir='dir --color=auto'
  83.     #alias vdir='vdir --color=auto'
  84.  
  85.     #alias grep='grep --color=auto'
  86.     #alias fgrep='fgrep --color=auto'
  87.     #alias egrep='egrep --color=auto'
  88. fi
  89.  
  90. # some more ls aliases
  91. #alias ll='ls -l'
  92. #alias la='ls -A'
  93. #alias l='ls -CF'
  94.  
  95. # enable programmable completion features (you don't need to enable
  96. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  97. # sources /etc/bash.bashrc).
  98. if [ -f /etc/bash_completion ]; then
  99.     . /etc/bash_completion
  100. fi
  101.  
  102. #add a script folder to the path for executing scripts from the command line
  103.  
  104. PATH+=:${HOME}/src/scripts
  105.  
  106. export FMKMF_SFTAG="[fF]90"
  107. export FMKMF_SPATH='.'
  108. export FMKMF_F90='gfortran -g'
  109. export FMKMF_LINKOPTS=''
  110. export PYTHONSTARTUP=${HOME}/src/python/startup.py
  111. export PYTHONPATH=${HOME}/src/python:${PYTHONPATH}
  112. #export PYTHONPATH=${PYTHONPATH}:/usr/bin/python2
  113. export PATH=${PATH}:/opt/java/jre/bin/
  114. export PATH=${PATH}:/home/david/src/QTcpPlanetWars/
  115. export LD_LIBRARY_PATH=${HOME}/src/kisscount/lib/freechart/lib:${HOME}/src/kisscount/lib/wxsqlite3-1.9.9/lib/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement