diff options
| -rw-r--r-- | _mbsetupuser/Brewfile.org | 6 | ||||
| -rw-r--r-- | emacs/.emacs.d/init.org | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/_mbsetupuser/Brewfile.org b/_mbsetupuser/Brewfile.org index 139b90f..9ad2863 100644 --- a/_mbsetupuser/Brewfile.org +++ b/_mbsetupuser/Brewfile.org @@ -116,3 +116,9 @@ This requires some aliases to actually work, otherwise the bundled versions get #+begin_src sh :tangle .config/zsh/conf.d/macos.sh alias ls="gls --color=always" #+end_src + +Install wakatime-cli so I can track my personal coding times. + +#+begin_src ruby + brew "wakatime-cli" +#+end_src diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 9477ae0..3e90be0 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -875,3 +875,13 @@ This allows me to synchronize tasks and events between my phone and Emacs. org-caldav-sync-todo t org-caldav-todo-percent-states '((0 "TODO") (1 "NEXT") (100 "DONE")))) #+end_src + +* Wakatime + +I run my own [[https://wakapi.dev/][Wakapi]] instance to track my coding time. + +#+begin_src emacs-lisp + (use-package wakatime-mode + :init + (global-wakatime-mode)) +#+end_src |
