deft/journal/2021/2021-08-17.org

78 lines
2.8 KiB
Org Mode
Raw Normal View History

2021-08-17 08:14:32 +00:00
#+Title: Journal (2021-08-17 - ∆y=44.45 (16236))
#+Author: Yann Esposito
#+Date: [2021-08-17]
#+STARTUP: showeverything inlineimages
* Résume Journée
:PROPERTIES:
:VISIBILITY: content
:CREATED: 20210817
:END:
** Matin
:PROPERTIES:
:VISIBILITY: content
:CREATED: 20210817
:END:
- 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
:PROPERTIES:
:CREATED: 20210817
:END:
| 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.
2021-08-17 08:17:34 +00:00
Ça change la vie.
2021-08-17 08:37:35 +00:00
2021-08-17 08:56:47 +00:00
Ah tiens une petite configuration pour rendre org-mode plus agréable à lire:
#+begin_src elisp
(let* ((variable-tuple
(cond
((x-list-fonts "CMU Serif") '(:font "CMU Serif"))
((x-list-fonts "Georgia") '(:font "Georgia"))
((x-list-fonts "PT Serif") '(:font "PT Serif"))))
(fixed-tuple
(cond
((x-list-fonts "CMU Typewriter Text") '(:font "CMU Typewriter Text"))
((x-list-fonts "Menlo") '(:font "Menlo"))
((x-list-fonts "PT Mono") '(:font "PT Mono"))))
(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 :height 1.25))))
`(variable-pitch ((t ,@variable-tuple)))
`(fixed-pitch ((t ,@fixed-tuple)))
'(org-block ((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-indent ((t (:inherit (org-hide fixed-pitch)))))
'(org-link ((t (:foreground "royal 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 :foreground "#83a598"))))
'(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
'(org-verbatim ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))))
2021-08-17 08:37:35 +00:00
#+end_src