diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-25 17:05:06 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-25 17:05:06 -0500 |
| commit | 692b44d648472fdf52048f6040d223ea7befe755 (patch) | |
| tree | 8ec08f4463640a720476c2901cd9e1cbee418b1f /modules/elfeed-config.el | |
| parent | a5555afaf09be4c023f49661d48de803b2586927 (diff) | |
removed unnecessary hardcoded paths & fixed a typo
- defined constants for all commonly used paths
- replaced hardcoded instances throughout the config with the variables
- fixed typo in scripts/reset-to-first-launch.sj
Diffstat (limited to 'modules/elfeed-config.el')
| -rw-r--r-- | modules/elfeed-config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/elfeed-config.el b/modules/elfeed-config.el index 4d4a80d1..076b6f1f 100644 --- a/modules/elfeed-config.el +++ b/modules/elfeed-config.el @@ -127,7 +127,7 @@ (defun cj/yt-dl-it (url) "Downloads the URL in an async shell." - (let ((default-directory "~/videos")) + (let ((default-directory videos-dir)) (save-window-excursion (async-shell-command (format "tsp yt-dlp --add-metadata -ic -o '%%(channel)s-%%(title)s.%%(ext)s' '%s'" url))))) |
