deft/org-roam.bak/2021/2021-08-17.org
Yann Esposito (Yogsototh) d641cd04d9
moved files
2021-09-15 09:12:29 +02:00

3.2 KiB

Journal (2021-08-17 - ∆y=44.45 (16236))

Résume Journée

Matin

  • Pression au travail ?
  • Motivé de commencer la journée ?
  • Est-ce que je me sens plein d'énergie ?
  • Est-ce que je me sens concentré et préparé ?
  • Que dois-je faire en dehors du travail ?

Soirée

activité φ ?/5 au lit -> sport
nourriture ?/5 malbouffe -> saine
humeur ?/5 exécrable -> excellente
energie ?/5 exécrable -> excellente
intérêt ?/5 ennuie -> exceptionnel

2021-08-17 Tuesday

10:13

Ce matin j'ai fait un petit tour avec les chiens, j'ai bien dormi. Ça change la vie.

Ah tiens une petite configuration pour rendre org-mode plus agréable à lire:

(let* ((variable-tuple
        (cond
         ;; ((x-list-fonts "CMU Serif") '(:family "CMU Serif" :size 14))
         ((x-list-fonts "Georgia")   '(:family "Georgia"   :height 160))
         ((x-list-fonts "PT Serif")  '(:family "PT Serif"  :height 160))))
       (fixed-tuple
        (cond
         ;; ((x-list-fonts "CMU Typewriter Text") '(:family "CMU Typewriter Text" :size 12))
         ((x-list-fonts "Menlo")               '(:family "Menlo"    :height 120))
         ((x-list-fonts "PT Mono")             '(:family "PT Mono"  :height 120))))
       (headline `(:inherit default :weight bold)))
  (custom-theme-set-faces
   'user
   `(org-level-1 ((t (,@headline ,@variable-tuple))))
   `(org-level-2 ((t (,@headline ,@variable-tuple))))
   `(org-level-3 ((t (,@headline ,@variable-tuple))))
   `(org-level-4 ((t (,@headline ,@variable-tuple))))
   `(org-level-5 ((t (,@headline ,@variable-tuple))))
   `(org-level-6 ((t (,@headline ,@variable-tuple))))
   `(org-level-7 ((t (,@headline ,@variable-tuple))))
   `(org-level-8 ((t (,@headline ,@variable-tuple))))
   `(org-document-title ((t (,@headline ,@variable-tuple))))
   `(variable-pitch ((t ,@variable-tuple)))
   `(fixed-pitch ((t ,@fixed-tuple)))
   '(org-ellipsis ((t (:inherit fixed-pitch :foreground "gray40" :underline nil))))
   '(org-block ((t (:inherit fixed-pitch))))
   '(org-properties ((t (:inherit fixed-pitch))))
   '(org-code ((t (:inherit (shadow fixed-pitch)))))
   '(org-document-info ((t (:inherit (shadow fixed-pitch)))))
   '(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
   '(org-drawer ((t (:inherit (shadow fixed-pitch)))))
   '(org-indent ((t (:inherit (org-hide fixed-pitch)))))
   `(org-link ((t (:foreground ,(doom-color 'blue) :underline t))))
   '(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
   '(org-property-value ((t (:inherit fixed-pitch))) t)
   '(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
   '(org-table ((t (:inherit fixed-pitch))))
   '(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
   '(org-verbatim ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))))

Inspiré de https://zzamboni.org/post/beautifying-org-mode-in-emacs/