Make the xdg dependency optional

We now default to using `~/.cache/waybar-current-task.json` if the `xdg` package is not present.
This commit is contained in:
Gergely Polonkai 2023-01-31 08:47:36 +01:00
parent 754fd9d2fa
commit c327eb18c6
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 4 additions and 2 deletions

View File

@ -38,7 +38,7 @@
;;; Code:
(require 'xdg)
(require 'xdg nil t)
(require 'json)
(require 'org-clock)
@ -47,7 +47,9 @@
:group 'emacs)
(defcustom org-clock-waybar-filename
(expand-file-name "waybar-current-task.json" (xdg-cache-home))
(if (fboundp 'xdg-cache-home)
(expand-file-name "waybar-current-task.json" (xdg-cache-home))
(expand-file-name "~/.cache/waybar-current-task.json"))
"Name of the file to save task data to."
:type 'string
:group 'org-clock-waybar)