From 6311d0c01e8819cd62a6d702652aafcbb0c7dc7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Wed, 12 Mar 2025 10:07:58 +0100 Subject: [PATCH] feat: youtube-dl alias --- SwarselSystems.org | 1 + profiles/home/common/zsh.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/SwarselSystems.org b/SwarselSystems.org index 890abff..adcdd64 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -9417,6 +9417,7 @@ Here we set some aliases (some of them should be shellApplications instead) as w passpull = "cd ~/.local/share/password-store; git pull; cd -;"; hotspot = "nmcli connection up local; nmcli device wifi hotspot;"; cd = "z"; + youtube-dl = "yt-dlp"; cd-orig = "cd"; cat-orig = "cat"; cdr = "cd \"$( (find $DOCUMENT_DIR_WORK $DOCUMENT_DIR_PRIV -maxdepth 1 && echo $FLAKE) | fzf )\""; diff --git a/profiles/home/common/zsh.nix b/profiles/home/common/zsh.nix index 91a504e..0d74c5a 100644 --- a/profiles/home/common/zsh.nix +++ b/profiles/home/common/zsh.nix @@ -16,6 +16,7 @@ passpull = "cd ~/.local/share/password-store; git pull; cd -;"; hotspot = "nmcli connection up local; nmcli device wifi hotspot;"; cd = "z"; + youtube-dl = "yt-dlp"; cd-orig = "cd"; cat-orig = "cat"; cdr = "cd \"$( (find $DOCUMENT_DIR_WORK $DOCUMENT_DIR_PRIV -maxdepth 1 && echo $FLAKE) | fzf )\"";