From b3c87b5d9a6a58e0a8b6ac846cd611e0e721c65f Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 12 Apr 2017 00:12:58 +0200 Subject: [PATCH] Change wakatime executable path to be dynamic It now uses `executable-find` instead of a hardcoded path. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index e9b5b5d..cd5860b 100644 --- a/init.el +++ b/init.el @@ -449,7 +449,7 @@ (use-package wakatime-mode :ensure t :init - (setq-default wakatime-cli-path "/usr/bin/wakatime") + (setq-default wakatime-cli-path (executable-find "wakatime")) :config (global-wakatime-mode t))