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
This commit is contained in:
2012-06-21 10:32:01 +01:00
parent 18acec2c60
commit 345e649dc9

View File

@@ -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)