-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
72 lines (59 loc) · 2.13 KB
/
.bashrc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#####################################################
# SHORTCUTS #
#####################################################
alias po='cd ; cd Dropbox\/Códigos\/PO\/'
alias so='cd ; cd Dropbox\/Códigos\/SO\/Parte\ 5\/'
alias wp='cd ; cd Pictures\/Wallpapers\/'
alias dw='cd ; cd Downloads\/'
######################################################
# ALIAS #
######################################################
alias ls="ls -a --color=auto"
alias updt="yaourt -Syua --color always"
alias inst="sudo pacman -S --color always"
alias rmve="sudo pacman -R --color always"
######################################################
# SCRIPTS #
######################################################
alias colors='cd ; ./scripts/colors.sh'
alias spaceinvaders='cd ; ./scripts/spaceinvaders.sh'
alias pipes='cd ; ./scripts/pipes.sh'
alias line='cd ; ./scripts/line.sh'
alias fetch='cd ; ./scripts/fetch.sh'
######################################################
# PROMPT #
######################################################
PS1="\u : \h [\w]\n> \[$(tput sgr0)\] "
######################################################
# MISC #
######################################################
# completion
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
# auto-complete for pacman when using sudo:
complete -cf sudo
# Add bin to path
PATH=$PATH:~/bin
function extr() # Handy Extract Program
{
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via >extract<" ;;
esac
else
echo "'$1' is not a valid file!"
fi
}
trap echo DEBUG