🔧 (work) Work machine has a different name

This commit is contained in:
Marcel Kapfer 2025-02-10 17:48:27 +01:00
parent f589a32f8b
commit 268592fef7
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09

View file

@ -46,14 +46,15 @@ For using the Macbook keyboard effectively with Emacs I made some adjustments ba
** System Detection
My work machine is called “knuth” and there is some configuration which I only want there.
My work machine is called “mccarthy” and there is some configuration which I only want there.
#+begin_src emacs-lisp
(defun mmk2410/work ()
"Return t if machine is my work machine"
(string-equal (system-name) "knuth"))
(string-equal (system-name) "mccarthy"))
#+end_src
** Personal Information
#+begin_src emacs-lisp