blob: 93a955bfe738019df1424f540f283609112df6d1 (
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
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
cd() {
builtin cd "$@" && ls -A
}
pacaur() {
env pacman_program="pacaur" /usr/bin/pacmatic "$@"
}
#PS1='[\u@\h \W]\$ '
PS1='[\d][\t]\u on \h\n\w => '
alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &'
source liquidprompt
archey
|