add function/variable flag for 'dayJob' environment
This commit is contained in:
parent
7aa4aa9ce6
commit
9046f48acc
|
@ -15,8 +15,13 @@
|
||||||
; helper functions
|
; helper functions
|
||||||
(require 'subr-x)
|
(require 'subr-x)
|
||||||
(setq kmn/is-termux
|
(setq kmn/is-termux
|
||||||
(string-suffix-p "Android" (string-trim (shell-command-to-string "uname -a"))))
|
(string-suffix-p "Android" (string-trim (shell-command-to-string "uname -a"))))
|
||||||
|
|
||||||
|
(setq kmn/dayjob-search-string "pce")
|
||||||
|
(setq kmn/is-dayjob
|
||||||
|
(compare-strings kmn/dayjob-search-string nil nil (getenv "USERDOMAIN") nil nil t)
|
||||||
|
)
|
||||||
|
|
||||||
; ensure elisp plugins are compiled
|
; ensure elisp plugins are compiled
|
||||||
(require 'dash)
|
(require 'dash)
|
||||||
(require 'f)
|
(require 'f)
|
||||||
|
|
Reference in a new issue