Configuration file for dwm-bar on macbook air
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
289 B

5 years ago
  1. #!/bin/sh
  2. # A dwm_bar function to print the weather from wttr.in
  3. # Joe Standring <jstandring@pm.me>
  4. # GNU GPLv3
  5. # Dependencies: curl
  6. # Change the value of LOCATION to match your city
  7. dwm_weather() {
  8. LOCATION=city
  9. printf "[$(curl -s wttr.in/$LOCATION?format=1)]\n"
  10. }
  11. dwm_weather