From fda77b2269b445f5e887d0038a35d65fa93c437c Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 1 Jul 2022 06:20:46 -0500 Subject: [PATCH] qrencode --- README.org | 6 ++++++ init.el | 2 ++ 2 files changed, 8 insertions(+) diff --git a/README.org b/README.org index 6b48eecf..4cf594fc 100644 --- a/README.org +++ b/README.org @@ -47,6 +47,7 @@ - [[#pass][Pass]] - [[#matrixement][Matrix/Ement]] - [[#activitywatch][ActivityWatch]] + - [[#qrencode][qrencode]] - [[#mybible][MyBible]] - [[#performance][Performance]] - [[#logging][Logging]] @@ -3066,6 +3067,11 @@ I like to track my time with ActivityWatch so I can notice and kill bad habits. (global-activity-watch-mode -1))) #+end_src +** qrencode +#+begin_src emacs-lisp +(use-package qrencode) +#+end_src + ** MyBible MyBible is going to be my minor mode for creating and using a bible app within Emacs. Let's see if we can't make it work. #+begin_src emacs-lisp :tangle no diff --git a/init.el b/init.el index a1bca796..54dbbadc 100644 --- a/init.el +++ b/init.el @@ -2206,6 +2206,8 @@ interfere with the default `bongo-playlist-buffer'." (chris/leader-keys "oM" 'ement-list-rooms)) +(use-package qrencode) + ;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions ;; in non-focused windows. (setq-default cursor-in-non-selected-windows nil)