diff --git a/global.org b/global.org index dca1180..532946b 100644 --- a/global.org +++ b/global.org @@ -471,6 +471,21 @@ (concat "~/.emacs-" basename))))) #+END_SRC +* Finale +** Fixup faces + This is really a workaround as I do not like either bold or italic. It + needs to be at the end of the file since it sets the face for packages that + have loaded in the meantime; yet it does not wark perfectly as some + packages are still to be loaded (most notably ~magit~) + #+BEGIN_SRC emacs-lisp + ;; (set-face-font 'default "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1") + + (mapc + (lambda (face) + (set-face-attribute face nil :weight 'normal) + (set-face-attribute face nil :slant 'normal)) + (face-list)) + #+END_SRC * Leftovers #+BEGIN_SRC emacs-lisp @@ -482,14 +497,6 @@ (load "init-kde-integration.el") #+END_SRC -** DONE find out how kde-emacs makes “make” actually work - I need to keep this up until I realize what I need to make “make” work - Please notice that kde-emacs forces the menu to show; - - #+BEGIN_SRC emacs-lisp -;; (require 'kde-emacs) -;; (menu-bar-mode -1) - #+END_SRC ** Leftovers #+BEGIN_SRC emacs-lisp @@ -506,19 +513,6 @@ ) ;; * start server named after kde activity name - (setq server-name (kde-current-activity-name)) - ;; mmh - ;; (set-face-font 'default "-xos4-hackminus-medium-r-normal--20-200-72-72-c-100-ISO10646-1") ; - ;; Why is the above needed down here? - ;; - ;; Because it sets the face for packages that have loaded in the meantime; - ;; it does not wark perfectly as some packages are still to be loaded - ;; (most notably magit) - - (mapc - (lambda (face) - (set-face-attribute face nil :weight 'normal) - (set-face-attribute face nil :slant 'normal)) - (face-list)) + (setq server-name (kde-current-activity-name)) (server-start) #+END_SRC