9 lines
452 B
EmacsLisp
9 lines
452 B
EmacsLisp
(when (eq system-type 'darwin)
|
|
(when (display-graphic-p)
|
|
(add-to-list 'default-frame-alist '(ns-transparent-titlebar . t))
|
|
(add-to-list 'default-frame-alist '(ns-appearance . dark))
|
|
(add-to-list 'default-frame-alist '(font . "Hack Nerd Font Mono-13"))
|
|
(add-to-list 'default-frame-alist '(height . 60))
|
|
(add-to-list 'default-frame-alist '(width . 80)))
|
|
(unless (display-graphic-p)))
|
|
(provide 'darwin-customs)
|