blob: 84d78e81374c1fbfa2c34c53fe670941f320af9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# Source dotfiles
source ~/.bashrc_alias
# Minimalist PS1: shows last exit, user, current folder
PS1='[\h \W ]\$ '
# colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# PATH
export PATH=~/bin:$PATH
export PATH=~/bin/audio-convert:$PATH
# Title bar
#echo -ne "\033]0;$(lsb_release -ds) $(hostname) $(uname -r)\007"
|