home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 2196429afda2d34ba73565c9875f3481c9fc3f84
parent 3f8e0f949dcf4ab1a2810e15451b89092259382f
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu, 27 Jul 2023 09:25:50 +0200

users/vincent: switch from youtube-dl to yt-dlp

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-elfeed.el | 2+-
Mtools/emacs/old-config/config-elfeed.el | 2+-
Musers/vincent/desktop/default.nix | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/emacs/config/config-elfeed.el b/tools/emacs/config/config-elfeed.el @@ -98,7 +98,7 @@ (defun yt-dl-it (url) "Downloads the URL in an async shell" (let ((default-directory "~/desktop/videos")) - (async-shell-command (format "youtube-dl \"%s\"" url)))) + (async-shell-command (format "yt-dlp \"%s\"" url)))) (defun elfeed-youtube-dl (&optional use-generic-p) "Youtube-DL link" diff --git a/tools/emacs/old-config/config-elfeed.el b/tools/emacs/old-config/config-elfeed.el @@ -98,7 +98,7 @@ (defun yt-dl-it (url) "Downloads the URL in an async shell" (let ((default-directory "~/desktop/videos")) - (async-shell-command (format "youtube-dl \"%s\"" url)))) + (async-shell-command (format "yt-dlp \"%s\"" url)))) (defun elfeed-youtube-dl (&optional use-generic-p) "Youtube-DL link" diff --git a/users/vincent/desktop/default.nix b/users/vincent/desktop/default.nix @@ -43,7 +43,7 @@ in xdg-user-dirs xdg-utils xsel - youtube-dl + yt-dlp # youtube-dl ]; home.file.".XCompose".source = ./xorg/XCompose;