blob: bdd917cc6f68dc8fc7ede44ac7d522300dfce8e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
;;; my-work.el --- Functions related to work
;;; Commentary:
;;; Code:
(defun my/check-work-machine-p ()
"Return t if this is a work machine."
(string-match "HQ\\.*" (system-name)))
(provide 'my-work)
;;; my-work.el ends here
|