Turn off activitywatch when on laptop to save resources
This commit is contained in:
parent
76f8758df5
commit
f568548c16
|
@ -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
|
||||||
|
|
4
init.el
4
init.el
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue