Browse Source

fixed error message for 'system-name'

master
Marc Pohling 4 years ago
parent
commit
0bee96dee3
1 changed files with 3 additions and 3 deletions
  1. 6
      init.org

6
init.org

@ -64,11 +64,11 @@
* Default settings
#+BEGIN_SRC emacs-lisp
(defvar me/whoami
(if (string-equal system-name "PMTS01")
(if (string-equal (system-name) "PMTS01")
"work_remote"
(if (string-equal system-name "laptop")
(if (string-equal (system-name) "laptop")
"home_laptop"
(if (string-equal system-name "PMPCNEU08")
(if (string-equal (system-name) "PMPCNEU08")
"work_local"
"home_desktop"))))
#+END_SRC

Loading…
Cancel
Save