Following the bmeric tips, this solution worked for me:
(cond ((string-equal system-type "gnu/linux") ;; window size (add-to-list 'default-frame-alist '(left . 0)) (add-to-list 'default-frame-alist '(top . 0)) (add-to-list 'default-frame-alist '(height . 32)) (add-to-list 'default-frame-alist '(width . 70)) ) ((string-equal system-type "darwin") ;; window size (add-to-list 'default-frame-alist '(left . 0)) (add-to-list 'default-frame-alist '(top . 0)) (add-to-list 'default-frame-alist '(height . 63)) (add-to-list 'default-frame-alist '(width . 100)) ) )
NVaughan
source share