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

88 lines
3.3 KiB
Org Mode
Raw Normal View History

2021-09-15 07:12:29 +00:00
:PROPERTIES:
:ID: ffdd0cae-1b9c-401b-b436-6db1ba455220
:END:
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
2021-08-17 09:06:23 +00:00
;; ((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))))
2021-08-17 08:56:47 +00:00
(fixed-tuple
(cond
2021-08-17 09:06:23 +00:00
;; ((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))))
2021-08-17 08:56:47 +00:00
(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))))
2021-08-17 09:06:23 +00:00
`(org-document-title ((t (,@headline ,@variable-tuple))))
2021-08-17 08:56:47 +00:00
`(variable-pitch ((t ,@variable-tuple)))
`(fixed-pitch ((t ,@fixed-tuple)))
2021-08-17 09:06:23 +00:00
'(org-ellipsis ((t (:inherit fixed-pitch :foreground "gray40" :underline nil))))
2021-08-17 08:56:47 +00:00
'(org-block ((t (:inherit fixed-pitch))))
2021-08-17 09:10:12 +00:00
'(org-properties ((t (:inherit fixed-pitch))))
2021-08-17 08:56:47 +00:00
'(org-code ((t (:inherit (shadow fixed-pitch)))))
'(org-document-info ((t (:inherit (shadow fixed-pitch)))))
'(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
2021-08-17 09:11:15 +00:00
'(org-drawer ((t (:inherit (shadow fixed-pitch)))))
2021-08-17 08:56:47 +00:00
'(org-indent ((t (:inherit (org-hide fixed-pitch)))))
2021-08-17 09:06:23 +00:00
`(org-link ((t (:foreground ,(doom-color 'blue) :underline t))))
2021-08-17 08:56:47 +00:00
'(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)))))
2021-08-17 09:06:23 +00:00
'(org-table ((t (:inherit fixed-pitch))))
2021-08-17 08:56:47 +00:00
'(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
2021-08-17 09:06:23 +00:00
2021-08-17 09:10:12 +00:00
#+RESULTS:
2021-08-17 09:06:23 +00:00
Inspiré de https://zzamboni.org/post/beautifying-org-mode-in-emacs/