From 7b6cd2575cb1e4b413fe42b059e65eb1cab1f973 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 25 Feb 2023 17:52:28 +0530 Subject: [PATCH] fish: functions: Add an alias for checking weather --- fish/.config/fish/functions/weather.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/.config/fish/functions/weather.fish diff --git a/fish/.config/fish/functions/weather.fish b/fish/.config/fish/functions/weather.fish new file mode 100644 index 0000000..c775c0f --- /dev/null +++ b/fish/.config/fish/functions/weather.fish @@ -0,0 +1,3 @@ +function weather --description "Check weather with chubin/wttr.in" + curl wttr.in +end