summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-08-03 15:19:28 +0100
committerjao <jao@gnu.org>2021-08-03 15:19:28 +0100
commit38199bfa202d3f00d9c56d6acfa27d6f70b0b47e (patch)
tree06884fa892ee92d38798388c84cee59ce159d52e /init.org
parent199b0e9dd5b33c2a06b9cf88695994c9d608dee9 (diff)
downloadelibs-38199bfa202d3f00d9c56d6acfa27d6f70b0b47e.tar.gz
elibs-38199bfa202d3f00d9c56d6acfa27d6f70b0b47e.tar.bz2
nits
Diffstat (limited to 'init.org')
-rw-r--r--init.org27
1 files changed, 14 insertions, 13 deletions
diff --git a/init.org b/init.org
index c9a2f74..251c7c2 100644
--- a/init.org
+++ b/init.org
@@ -309,19 +309,19 @@
See [[https://emacs.stackexchange.com/questions/251/line-height-with-unicode-characters/5386#5386][fonts - Line height with unicode characters]] for a good
discussion.
#+begin_src emacs-lisp
- (defun jao--set-fontsets (frame)
- (set-fontset-font t 64257 "Quivira")
- (set-fontset-font t 'egyptian "Noto Sans Egyptian Hieroglyphs")
- (set-fontset-font t 'hangul "NanumGothicCoding")
- (set-fontset-font t 'unicode (face-attribute 'default :family))
- (set-fontset-font t 'unicode-bmp (face-attribute 'default :family))
- (set-fontset-font t 'symbol "Symbola-10")
- (set-fontset-font t 'greek "GFS Didot")
- (set-fontset-font t 'mathematical "FreeSerif")
+ (defun jao--set-fontsets (f)
+ (set-fontset-font t 64257 "Quivira" f)
+ (set-fontset-font t 'egyptian "Noto Sans Egyptian Hieroglyphs" f)
+ (set-fontset-font t 'hangul "NanumGothicCoding" f)
+ (set-fontset-font t 'unicode (face-attribute 'default :family) f)
+ (set-fontset-font t 'unicode-bmp (face-attribute 'default :family) f)
+ (set-fontset-font t 'symbol "Symbola-10" f)
+ (set-fontset-font t 'greek "GFS Didot" f)
+ (set-fontset-font t 'mathematical "FreeSerif" f)
;; boxes
- (set-fontset-font t '(9472 . 9599) "Source Code Pro")
+ (set-fontset-font t '(9472 . 9599) "Source Code Pro" f)
;; variation selector-16
- (set-fontset-font t 65039 "BabelStone Modern-1"))
+ (set-fontset-font t 65039 "BabelStone Modern-1" f))
(jao--set-fontsets nil)
(add-to-list 'after-make-frame-functions 'jao--set-fontsets)
@@ -1472,7 +1472,7 @@
(with-current-buffer (find-file-noselect "~/.config/rss2email.cfg")
(goto-char (point-max))
(insert "[feed." name "]\nurl = " url)
- (insert "\nto = jao+feeds_" mbox "@localhost")
+ (insert "\nto = " mbox "+" name "@localhost")
(insert "\nmaildir-mailbox = " mbox "\n\n")
(save-buffer)))
@@ -2893,7 +2893,8 @@
(("b" jao-player-browse "browse")
("l" jao-player-list "show play list")
("L" jao-show-lyrics "show lyrics")
- ("w" jao-player-echo "now playing (text)"))
+ ("w" (let ((jao-notify-use-messages-p t)) (jao-player-echo))
+ "now playing"))
"Master volume"
(("d" jao-mixer-master-down "master down" :color red)
("u" jao-mixer-master-up "master up" :color red)