add pass mayor mode, start systemcrafter in bg

This commit is contained in:
Peter Tillemans 2025-06-30 09:41:09 +02:00
parent 8f5a806f23
commit d90dcb2078

View file

@ -126,9 +126,6 @@ Also immediately set lexical binding mode.
;; Enable :elpaca use-package keyword.
(elpaca elpaca-use-package
(elpaca-use-package-mode))
#+END_SRC
Tangle the init file if it has been updated. I maintain the same
@ -433,6 +430,18 @@ up, which a totally different can of worms). A function
#+RESULTS:
: shht!secret
*** Major mode to edit pass keychain
#+BEGIN_SRC emacs-lisp
(use-package pass
:ensure t)
#+END_SRC
#+RESULTS:
: [nil 26721 10916 917127 nil elpaca-process-queues nil nil 78000 nil]
** Add a fully featured terminal emulator
#+BEGIN_SRC emacs-lisp
@ -769,6 +778,7 @@ See the excellent documentation on [[https://github.com/minad/consult][Minad's c
** Frequently used File Operations
#+BEGIN_SRC emacs-lisp
(recentf-mode 1) ;; enable recent file tracking
(keymap-global-set "C-c f f" #'find-file)
(keymap-global-set "C-c f o" #'recentf)
(keymap-global-set "C-c f r" #'revert-buffer)
@ -3565,9 +3575,15 @@ The commands this package offers:
"Watch SystemCrafters on Twitch"
(interactive)
(message "Watching SystemCrafters on Twitch...")
(shell-command "mpv https://twitch.tv/SystemCrafters"))
(start-process "livestream" "*livestream*"
"mpv"
"--quiet"
"https://twitch.tv/SystemCrafters"))
#+END_SRC
#+RESULTS:
: systemcrafters
* Finishing Touches