diff options
-rw-r--r-- | .config/myconf/gallery_urls | 1 | ||||
-rwxr-xr-x | .local/bin/updgall | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.config/myconf/gallery_urls b/.config/myconf/gallery_urls index 8a1da6af..c0ffd026 100644 --- a/.config/myconf/gallery_urls +++ b/.config/myconf/gallery_urls @@ -1,3 +1,4 @@ +# input file format see https://github.com/mikf/gallery-dl/blob/13d4045a8a5a6fd45cb20df399f44055b25f5cca/gallery_dl/__init__.py#L33-L58 https://www.pixiv.net/users/13379747/artworks https://www.deviantart.com/wlop/gallery https://www.deviantart.com/minimalistic-animoo/gallery/ diff --git a/.local/bin/updgall b/.local/bin/updgall index 6e0c22b0..fdbc0dd2 100755 --- a/.local/bin/updgall +++ b/.local/bin/updgall @@ -1,3 +1,3 @@ #!/bin/sh -xargs gallery-dl --download-archive "$XDG_DOCUMENTS_DIR/database/gallery-dl.sqlite3" -d "$XDG_PICTURES_DIR/anime" < "$XDG_CONFIG_HOME/myconf/gallery_urls" +gallery-dl --download-archive "$XDG_DOCUMENTS_DIR/database/gallery-dl.sqlite3" -d "$XDG_PICTURES_DIR/anime" -i "$XDG_CONFIG_HOME/myconf/gallery_urls" |