From 692b44d648472fdf52048f6040d223ea7befe755 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 25 Apr 2024 17:05:06 -0500 Subject: 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 --- modules/elfeed-config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/elfeed-config.el') 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))))) -- cgit v1.2.3