From 8cd2e8df81f3c61395bd16f4f2c0e6de46c82f07 Mon Sep 17 00:00:00 2001 From: jao Date: Thu, 14 Apr 2022 03:28:23 +0100 Subject: themes: default face family and size --- init.org | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'init.org') diff --git a/init.org b/init.org index 1337e8f..c49e09b 100644 --- a/init.org +++ b/init.org @@ -377,9 +377,6 @@ (setq custom-theme-directory (expand-file-name "lib/themes" jao-emacs-dir)) - (defvar jao-default-font "Hack-9") ;; "Fira Code-9" - (setq jao-default-font "Roboto Mono-9") - (require 'jao-themes) (defvar jao-theme-dark 'jao-dark) @@ -387,7 +384,8 @@ (defun jao-themes-setup () (let ((dark (jao-colors-scheme-dark-p))) - (load-theme (if dark jao-theme-dark jao-theme-light) t))) + (load-theme (if dark jao-theme-dark jao-theme-light) t) + (modify-all-frames-parameters `((font . ,jao-themes-default-face))))) (when (and window-system (not (eq window-system 'pgtk))) (jao-themes-setup)) @@ -1232,17 +1230,15 @@ *** Frame geometry #+begin_src emacs-lisp (setq frame-resize-pixelwise nil) - ;;; modeline, toolbars and co. (modify-all-frames-parameters `((horizontal-scroll-bars . nil) (vertical-scroll-bars . nil) (scroll-bar-width . 11) - (menu-bar . nil) - (font . ,jao-default-font))) + (menu-bar . nil))) #+end_src *** Frame layout, title, etc. - #+BEGIN_SRC emacs-lisp + #+begin_src emacs-lisp (setq frame-title-format '("%b")) (use-package fringe) (fringe-mode) @@ -1276,7 +1272,7 @@ (jao-trisect t) (next-window) (delete-window)) - #+END_SRC + #+end_src *** afio #+begin_src emacs-lisp (use-package jao-afio) -- cgit v1.2.3