Turn off activitywatch when on laptop to save resources

This commit is contained in:
Chris Cochrun 2021-07-05 13:32:04 -05:00
parent 76f8758df5
commit f568548c16
2 changed files with 57 additions and 53 deletions

View file

@ -1982,7 +1982,9 @@ Matrix.el is a decent enough matrix client built in emacs. Like it.
I like to track my time with ActivityWatch so I can notice and kill bad habits. I like to track my time with ActivityWatch so I can notice and kill bad habits.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package activity-watch-mode (use-package activity-watch-mode
:init (global-activity-watch-mode)) :init
(if (string-equal (system-name) "syl")
(global-activity-watch-mode)))
#+end_src #+end_src
** MyBible ** MyBible

View file

@ -1490,7 +1490,9 @@ interfere with the default `bongo-playlist-buffer'."
"st" 'password-store-otp-token-copy)) "st" 'password-store-otp-token-copy))
(use-package activity-watch-mode (use-package activity-watch-mode
:init (global-activity-watch-mode)) :init
(if (string-equal (system-name) "syl")
(global-activity-watch-mode)))
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions ;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
;; in non-focused windows. ;; in non-focused windows.