2011-09-23 16:21:36 +02:00
|
|
|
# /etc/bashrc: DO NOT EDIT -- this file has been generated automatically.
|
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# This file is read for interactive non-login shells.
|
|
|
|
|
|
|
|
# Only execute this file once per shell.
|
|
|
|
if [ -n "$__ETC_BASHRC_SOURCED" -o -n "$NOSYSBASHRC" ]; then return; fi
|
|
|
|
__ETC_BASHRC_SOURCED=1
|
|
|
|
|
|
|
|
# If the profile was not loaded in a parent process, source it. But
|
|
|
|
# otherwise don't do it because we don't want to clobber overriden
|
|
|
|
# values of $PATH, etc.
|
|
|
|
if [ -z "$__ETC_PROFILE_DONE" ]; then
|
|
|
|
. /etc/profile
|
2009-05-29 00:02:47 +02:00
|
|
|
fi
|
2009-06-26 13:36:38 +02:00
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# We are not always an interactive shell.
|
|
|
|
if [ -z "$PS1" ]; then return; fi
|
2011-09-23 16:21:36 +02:00
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# Check the window size after every command.
|
|
|
|
shopt -s checkwinsize
|
2011-08-06 20:55:00 +02:00
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# Provide a nice prompt.
|
|
|
|
PROMPT_COLOR="1;31m"
|
|
|
|
let $UID && PROMPT_COLOR="1;32m"
|
|
|
|
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] "
|
|
|
|
if test "$TERM" = "xterm"; then
|
|
|
|
PS1="\[\033]2;\h:\u:\w\007\]$PS1"
|
|
|
|
fi
|
2011-09-23 16:21:36 +02:00
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# Check whether we're running a version of Bash that has support for
|
|
|
|
# programmable completion. If we do, and if the current user has
|
|
|
|
# installed the package 'bash-completion' in her $HOME/.nix-profile,
|
|
|
|
# then completion is enabled automatically.
|
|
|
|
if [ -f "$HOME/.nix-profile/etc/bash_completion" ]; then
|
|
|
|
if [ -d "$HOME/.nix-profile/etc/bash_completion.d" ]; then
|
|
|
|
if shopt -q progcomp &>/dev/null; then
|
|
|
|
BASH_COMPLETION_DIR="$HOME/.nix-profile/etc/bash_completion.d"
|
|
|
|
BASH_COMPLETION="$HOME/.nix-profile/etc/bash_completion"
|
|
|
|
. "$BASH_COMPLETION"
|
2011-09-23 16:21:36 +02:00
|
|
|
fi
|
2010-02-13 01:07:12 +01:00
|
|
|
fi
|
|
|
|
fi
|
2012-03-19 03:35:17 +01:00
|
|
|
|
|
|
|
# Some aliases.
|
|
|
|
alias ls="ls --color=tty"
|
|
|
|
alias ll="ls -l"
|
|
|
|
alias l="ls -alh"
|
|
|
|
alias which="type -P"
|