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")))

Browsing stack overflow

Emacs has a really nice stack overflow client, called "sx"

(use-package sx
  :ensure t)

Pretty colors in buffers

Especially when looking at emacs themes, rainbow-mode is nice.

(use-package rainbow-mode
  :ensure t)

Author: Lee Hinman

Created: 2017-08-21 Mon 14:27