From a1e43803970d9a1432fcdd810b19f01a70af93d5 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Sun, 11 Dec 2016 23:53:07 -0500 Subject: [PATCH] Update aliases --- zsh/aliases | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zsh/aliases b/zsh/aliases index e2860e0..d3fecb9 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -32,6 +32,8 @@ alias bld='brew link --overwrite --dry-run' alias bower='noglob bower' alias bu='bundle update' alias bo='bundle open' +alias chrome='google-chrome-stable' +alias clipboard='xclip -selection c' alias cl='cloc --no3 --by-file-by-lang .' alias cls=clear alias code='cd ~/code' @@ -97,6 +99,7 @@ alias reload='source ~/.zshrc' alias restart='sudo shutdown now -r' alias s='cd ~/.ssh' alias sc='vim ~/.ssh/config' +alias stream='streamlink --player mpv' alias shutdown='sudo shutdown now' alias t='tree' alias u='cd ..' @@ -107,6 +110,7 @@ alias vh='vagrant halt' alias vs='vagrant ssh' alias vu='vagrant up' alias vimrc='vim ~/.vimrc' +alias weather='curl wttr.in/toronto' # Git alias am='git commit --amend' @@ -228,6 +232,10 @@ alias gxx='git reset --hard HEAD~1' alias gstats='echo "Total commits: $(git rev-list HEAD --count)"; echo "\nAuthor breakdown:"; git shortlog | grep -E "^[^ ]"' alias gwip="git add . && git commit -m \"WIP\"" +# Arch +alias ipconfig='ip addr' +alias ifconfig='ip addr' + # Python alias pys="venv/bin/python manage.py runserver"