diff --git a/dot_zsh_aliases b/dot_zsh_aliases index 1ec5c3e..367bcf2 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -88,7 +88,7 @@ alias pip='pip3' alias c='cat' alias x='extract' alias current_year='`echo date +"%Y"`' -alias meteo='weather' +#alias meteo='weather' alias learnmore="apropos . | sort --random-sort | awk 'NR == 1 {print$1}' | cut -d'(' -f 1 | xargs man" alias biggerthan10='biggerthan 10M' alias latency='curl cheat.sh/latency' diff --git a/dot_zsh_functions b/dot_zsh_functions index e05f081..043f8b7 100644 --- a/dot_zsh_functions +++ b/dot_zsh_functions @@ -117,3 +117,6 @@ function mouse() { ;; esac } +function meteo() { + curl "fr.wttr.in/$*" +}