Created
June 23, 2015 22:12
-
-
Save offby1/decf412c8ffc53390ddb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun set-approporiate-font (frame) | |
| (when (eq window-system 'ns) | |
| (global-set-key (kbd "M-`") 'other-frame) | |
| (set-frame-font | |
| (cond | |
| ((= (display-pixel-height) 1440) | |
| ;; fancy iMac at work | |
| "Inconsolata-20") | |
| ((= (display-pixel-height) 2240) | |
| ;; fancy monitor at home | |
| "Inconsolata-24") | |
| ;; laptop at home | |
| (t | |
| "Source Code Pro-15") | |
| ) | |
| nil | |
| (list frame)))) | |
| (add-to-list 'after-make-frame-functions 'set-approporiate-font) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment