diff options
-rw-r--r-- | init.org | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2096,7 +2096,7 @@ (defvar jao-browse-url-external-function nil) #+end_src *** URL around point - #+BEGIN_SRC emacs-lisp + #+begin_src emacs-lisp (defun jao-url-around-point (&optional current-url) (or (and (fboundp 'w3m-anchor) (w3m-anchor)) (shr-url-at-point nil) @@ -2110,7 +2110,7 @@ (let* ((def (jao-url-around-point t)) (prompt (concat "URL" (if def (format " (%s): " def) ": ")))) (read-string prompt nil nil def))) - #+END_SRC + #+end_src *** Downloads using wget #+BEGIN_SRC emacs-lisp (defun jao-wget--get-title (filename) @@ -3763,11 +3763,11 @@ :init (setq emms-score-file "~/.emacs.d/score" emms-stream-bookmarks-file "~/.emacs.d/streams" - emms-history-file "~/.emacs.d/emms-history" - emms-cache-file "~/.emacs.d/emms-cache" + emms-history-file "~/.emacs.d/cache/emms-history" + emms-cache-file "~/.emacs.d/cache/emms-cache" emms-show-format "%s") - (setq emms-source-file-default-directory "/home/jao/var/lib/music/" + (setq emms-source-file-default-directory "~/var/lib/music/" emms-player-list '(emms-player-mpd) emms-player-mpd-server-name "localhost" emms-player-mpd-server-port "6600" |