emacs: Added speak function
This commit is contained in:
parent
23806edd3e
commit
9342b6e56f
1 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,10 @@
|
||||||
(dotimes (_ (- 80 col (length prefix) (length postfix))) (insert "u"))
|
(dotimes (_ (- 80 col (length prefix) (length postfix))) (insert "u"))
|
||||||
(insert postfix)))
|
(insert postfix)))
|
||||||
|
|
||||||
|
(defun speak (m &optional voice)
|
||||||
|
(shell-command (if 'voice (concat "say " m)
|
||||||
|
(concat "say -v " voice " " m))))
|
||||||
|
|
||||||
;; Reconnect rcirc
|
;; Reconnect rcirc
|
||||||
(eval-after-load 'rcirc
|
(eval-after-load 'rcirc
|
||||||
'(defun-rcirc-command reconnect (arg)
|
'(defun-rcirc-command reconnect (arg)
|
||||||
|
|
Loading…
Reference in a new issue