This commit is contained in:
Aminda Suomalainen 2015-03-22 18:27:42 +02:00
parent 8729f1cb37
commit f6e0aa1a1e
2 changed files with 16 additions and 0 deletions

View File

@ -595,6 +595,14 @@ alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings -
# Meant for SSL certificates (IRC))
alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'"
# As pacman and yaourt share the same flags
if hash yaourt 2>/dev/null; then
alias pacman="yaourt --needed"
else
# I don't want to reinstall exact same versions that I have
alias pacman="pacman --needed"
fi
# Allow custom aliases to be put in .aliases or .bash_aliases .
# .aliases

View File

@ -570,6 +570,14 @@ alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings -
# Meant for SSL certificates (IRC))
alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'"
# As pacman and yaourt share the same flags
if hash yaourt 2>/dev/null; then
alias pacman="yaourt --needed"
else
# I don't want to reinstall exact same versions that I have
alias pacman="pacman --needed"
fi
# .aliases
if [ -f ~/.aliases ]; then
source ~/.aliases