Skip to content

Instantly share code, notes, and snippets.

@vician
Last active November 1, 2022 18:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vician/f20fa8219859095d35ca to your computer and use it in GitHub Desktop.
Save vician/f20fa8219859095d35ca to your computer and use it in GitHub Desktop.
Bubble notification for current weather condition (via wttr.in)
#!/bin/bash
CITY="prague"
notify-send "$(curl wttr.in/$CITY 2>/dev/null 3>/dev/null | head -n 7| sed -r "s:\x1B\[[0-9;]*[mK]::g")"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment