From 9b44a643d432fa34fac7a7d0043ab85d174e4740 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Sat, 17 Feb 2018 11:01:17 -0800 Subject: [PATCH] Profile update --- profile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/profile b/profile index d1d659c..996af30 100644 --- a/profile +++ b/profile @@ -63,9 +63,20 @@ if [[ -f "$HOME/.ssh-sentinel.sh" ]]; then source "$HOME/.ssh-sentinel.sh" fi +function weather() { + loc=$1 + if [[ -z "$loc" ]]; then + loc="Lake Forest, CA" + fi + + curl -sSL "wttr.in/$loc?m" +} + alias e="$EDITOR" alias s="du -sh" +alias tmux="tmux -2" + alias l="ls -lah" alias ll="ls -lh" alias la="ls -lah"