From 22784efcded62fc4ddd96fe6613fabbfdb6a64f3 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Wed, 1 May 2019 22:01:50 -0700 Subject: [PATCH] Update weather location --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index c8491d6..5d73a36 100644 --- a/.zshrc +++ b/.zshrc @@ -76,10 +76,10 @@ function passgen () { function weather() { local loc=$1 if [[ -z "$loc" ]]; then - loc="Lake Forest, CA" + loc="Phoenix, AZ" fi - curl -sSL "wttr.in/$loc?m" + curl -sSL "wttr.in/$loc?" } alias e="$EDITOR"