Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.28 KB

readme.org

File metadata and controls

38 lines (33 loc) · 1.28 KB

stumpwm-weather

(push "/home/user/.quicklisp/local-projects/stumpwm-weather/" asdf:*central-registry*)
(ql:quickload :stumpwm-weather)

(setf stumpwm-weather:*open-weather-map-api-key*
      "get your api key at https://openweathermap.org/api"

      stumpwm-weather:*units*                 "metric"
      stumpwm-weather:*format-str*            "%H% %d %t°C"
      stumpwm-weather:*time-format-str*       "%H:%M:%S" ; strftime format
      stumpwm-weather:*location*              "94043,us" ; Mountain View, CA 94043 USA
      stumpwm-weather:*mode-line-formatter*   #\E

      stumpwm:*screen-mode-line-format*       (append '("%E")
                                                      stumpwm:*screen-mode-line-format*))

(stumpwm-weather:on)
(add-hook stumpwm:*quit-hook* 'stumpwm-weather:off)

stumpwm-weather:*format-str*:

  • %l - weather-lon
  • %L - weather-lat
  • %n - weather-name
  • %c - weather-country
  • %s - weather-sunrise
  • %S - weather-sunset
  • %d - weather-desc-short
  • %D - weather-desc-long
  • %t - weather-temp
  • %H - weather-humidity
  • %p - weather-pressure
  • %T - weather-temp-min
  • %h - weather-temp-max
  • %w - weather-wind-speed
  • %W - weather-wind-deg