diff options
author | Yuchen Pei <id@ypei.org> | 2023-08-19 21:39:33 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2023-08-19 21:39:33 +1000 |
commit | 851b8f5fac389364c579aabb8e8fba344a3f6929 (patch) | |
tree | 09c05a9cef7ca1ccd94708178fc53f1bdc6510dc /emacs/.emacs.d/lisp/my | |
parent | 180b941004c96f16ef6b6d7a1c57d80cde146673 (diff) |
Adding a command to browse with the mullvad browser
Diffstat (limited to 'emacs/.emacs.d/lisp/my')
-rw-r--r-- | emacs/.emacs.d/lisp/my/my-web.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/.emacs.d/lisp/my/my-web.el b/emacs/.emacs.d/lisp/my/my-web.el index eced148..bd6a55d 100644 --- a/emacs/.emacs.d/lisp/my/my-web.el +++ b/emacs/.emacs.d/lisp/my/my-web.el @@ -80,6 +80,12 @@ (start-process (concat "qutebrowser " url) nil "qutebrowser" url)) +(defun my-browse-url-mullvad (url) + "Browse URL with Mullvad browser." + (setq url (browse-url-encode-url url)) + (start-process (concat "mullvad-browser " url) nil "mullvad-browser" + url)) + ;; TODO: change to using hmm matching url with default app ;; override browse-url (defun my-browse-url (url &optional arg) |