From 345e649dc9adb6d857eb83c85cc9e36c5f57bd5d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 21 Jun 2012 10:32:01 +0100 Subject: [PATCH] Change font from 11pt to 10pt Additionally only attempt to set font when running in a GUI, in a console the terminal emulator controls the font. And cause I can't seem to make up my mind about what font/size combo I like, I'm committing commented out alternatives for reference and potential later use :P --- appearance.el | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/appearance.el b/appearance.el index 02a680e..773ffdb 100644 --- a/appearance.el +++ b/appearance.el @@ -2,8 +2,16 @@ (setq inhibit-startup-message t) ;; Set default font -(set-face-attribute 'default nil :family "Monaco" :height 110) -;; (set-face-attribute 'default nil :family "Menlo" :height 110) +(if window-system + ;;; Large + ;; (set-face-attribute 'default nil :family "Menlo" :height 110) + ;; (set-face-attribute 'default nil :family "Monaco" :height 110) + + ;;; Small + (set-face-attribute 'default nil :family "Monaco" :height 100) + ;; (set-face-attribute 'default nil :family "Menlo" :height 100) + ;; (set-face-attribute 'default nil :family "Inconsolata" :height 120) +) ;; Load Theme (if window-system (require 'birds-of-paradise-plus-theme)