;;; my-work.el --- Functions related to work ;;; Commentary: ;;; Code: (defun fcuny/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