From 0dfbd746630999fd0235349691b0bea8d1d81451 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 19 May 2026 21:45:52 +0200 Subject: [PATCH] Drop old compatibility functions --- default/bash/fns/transcoding | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 default/bash/fns/transcoding diff --git a/default/bash/fns/transcoding b/default/bash/fns/transcoding deleted file mode 100644 index 017ddb66..00000000 --- a/default/bash/fns/transcoding +++ /dev/null @@ -1,33 +0,0 @@ -# Transcoding helpers have moved to omarchy-transcode. - -transcode-video-1080p() { - omarchy-transcode "$1" mp4 1080p -} - -transcode-video-4K() { - omarchy-transcode "$1" mp4 4k -} - -transcode-video-gif() { - omarchy-transcode "$1" gif 1080p -} - -img2jpg() { - omarchy-transcode "$1" jpg high -} - -img2jpg-small() { - omarchy-transcode "$1" jpg low -} - -img2jpg-medium() { - omarchy-transcode "$1" jpg medium -} - -img2jpg-large() { - omarchy-transcode "$1" jpg high -} - -img2png() { - omarchy-transcode "$1" png high -}