add manga_make to dotfiles

Tato revize je obsažena v:
Felix Van der Jeugt 2015-07-05 16:16:23 +02:00
rodič bc5e28723b
revize 163d60cca2
2 změněných souborů, kde bylo provedeno 16 přidání a 0 odebrání

16
local/bin/manga_maker Spustitelný soubor
Zobrazit soubor

@ -0,0 +1,16 @@
#!/bin/bash
# turn cbz files created by manga_downloader.py into scrollable pdf's
input="$1"
output="${input%.cbz}.pdf"
# unzipping the cbz
image_files="$(mktemp)"
unzip "$input" | sed -n 's/.*extracting: \(.*\)/\1/p' > "$image_files"
# makeing them pdf's
cat "$image_files" <(echo "-compress jpeg") <(echo "$output") | xargs convert
cat "$image_files" | xargs rm
rm "$image_files"