From 50c7701f4452be74ccb4c46ab32a005bb25ab672 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Mon, 7 Nov 2022 20:47:18 -0800 Subject: [PATCH] Yeah, mastodon works with 2FA! --- ha-aux-apps.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ha-aux-apps.org b/ha-aux-apps.org index bf3d030..a581b8f 100644 --- a/ha-aux-apps.org +++ b/ha-aux-apps.org @@ -37,6 +37,18 @@ The venerable [[https://github.com/hayamiz/twittering-mode/tree/master][twitteri (defalias 'epa--decode-coding-string 'decode-coding-string) (ha-leader "a t" '("twitter" . twit))) #+end_src +* Mastodon +Glad to see the 2FA feature is working on the [[https://codeberg.org/martianh/mastodon.el][mastodon.el]] project: +#+begin_src emacs-lisp + (use-package mastodon + :straight (:repo "https://codeberg.org/martianh/mastodon.el") + :init + (setq mastodon-instance-url "https://mastodon.xyz" + mastodon-active-user "howard") ; Find me at @howard@mastodon.xyz + :config + (mastodon-discover)) +#+end_src +Now I need to make a function to paste the same message to both while we make a transition. * Telega I'm thinking the [[https://zevlg.github.io/telega.el/][Telega package]] would be better than Bitlbee for Telegram communication. Seems to have a bug on the Melpa version, so I'm keeping this to the =HEAD=, if I've cloned it.