EOS: Fun and Leisure Module
Table of Contents
(provide 'eos-leisure)
Download buffer
(defun eos/popup-downloads () "Pop up the downloads buffer" (interactive) (when (not (get-buffer "*eshell downloads*")) (let ((eshell-buffer-name "*eshell downloads*")) (eshell))) (popwin:popup-buffer-tail "*eshell downloads*")) ;; eshell 4 is always my "download stuff" buffer (global-set-key (kbd "C-x M-d") #'eos/popup-downloads)
Getting the weather
Let's manage the forecast and weather too, will be managed from the main Hydra
(use-package wttrin :ensure t :init (setq wttrin-default-cities '("Denver")))