From 834a8a27a10cfc2b519b61d7ff8ed4142be66bd7 Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Sun, 19 Nov 2023 13:29:07 +0200 Subject: [PATCH] ffmpeg compress alias --- modules/programs/zsh/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix index 268db8d..93ec26b 100644 --- a/modules/programs/zsh/default.nix +++ b/modules/programs/zsh/default.nix @@ -11,6 +11,7 @@ PASSWORD_STORE_DIR = "$HOME/.password-store"; }; shellAliases = { + compress = "ffmpeg -vcodec libx265 -crf 28 compressed.mp4 -i"; cal = "cal $(date +%Y)"; ssh = "TERM=xterm-256color ssh"; GG = "git add . && git commit -m 'GG' && git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)";