diff --git a/odeps.sh b/odeps.sh index 665fbdc..d4f87cb 100755 --- a/odeps.sh +++ b/odeps.sh @@ -31,4 +31,4 @@ read -n1 -p $'\nDoes this system have a GUI?\n' REPLY else sudo zypper install emacs-nox fi -sudo zypper install "https://github.com/muesli/duf/releases/download/v0.6.2/duf_0.6.2_linux_amd64.rpm" +sudo zypper install "https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.rpm" diff --git a/scripts/server_bin/special_twitt.sh b/scripts/server_bin/special_twitt.sh new file mode 100755 index 0000000..6dfabc0 --- /dev/null +++ b/scripts/server_bin/special_twitt.sh @@ -0,0 +1,37 @@ +#!/bin/bash +echo ">>> Downloading Special Pics in no particular order..." +gallery-dl --sleep 4 --abort 3 https://twitter.com/TheBaddestRam +gallery-dl --sleep 4 --abort 3 https://twitter.com/Metal_AnimalMan +gallery-dl --sleep 4 --abort 3 https://twitter.com/wolf_ezo +gallery-dl --sleep 4 --abort 3 https://twitter.com/_maxsmall +gallery-dl --sleep 4 --abort 3 https://twitter.com/RonnoYeenie +gallery-dl --sleep 4 --abort 3 https://twitter.com/ShootingStargel +gallery-dl --sleep 4 --abort 3 https://twitter.com/Calilum_ +gallery-dl --sleep 4 --abort 3 https://twitter.com/sciopup +gallery-dl --sleep 4 --abort 3 https://twitter.com/DanielsWolf1 +gallery-dl --sleep 4 --abort 3 https://twitter.com/lobogriswrestle +gallery-dl --sleep 4 --abort 3 https://twitter.com/cheetah_paws +gallery-dl --sleep 4 --abort 3 https://twitter.com/K1ngYeen +gallery-dl --sleep 4 --abort 3 https://twitter.com/BakedBaxxie +gallery-dl --sleep 4 --abort 3 https://twitter.com/angel_pubby +gallery-dl --sleep 4 --abort 3 https://twitter.com/AgonyLight +gallery-dl --sleep 4 --abort 3 https://twitter.com/AFoxyGent +gallery-dl --sleep 4 --abort 3 https://twitter.com/PupShade +gallery-dl --sleep 4 --abort 3 https://twitter.com/LukaBuck +gallery-dl --sleep 4 --abort 3 https://twitter.com/ZigZaggyZagg +gallery-dl --sleep 4 --abort 3 https://twitter.com/Wolfy_WolFang +gallery-dl --sleep 4 --abort 3 https://twitter.com/WolfSandman +gallery-dl --sleep 4 --abort 3 https://twitter.com/Wolf_ODaddy +gallery-dl --sleep 4 --abort 3 https://twitter.com/WolfByTheStream +gallery-dl --sleep 4 --abort 3 https://twitter.com/WeaselZERO +gallery-dl --sleep 4 --abort 3 https://twitter.com/WeaselAfterDark +gallery-dl --sleep 4 --abort 3 https://twitter.com/VectorShen +gallery-dl --sleep 4 --abort 3 https://twitter.com/Tworld99 +gallery-dl --sleep 4 --abort 3 https://twitter.com/TJwolfPupAD +gallery-dl --sleep 4 --abort 3 https://twitter.com/theonlyinleb +gallery-dl --sleep 4 --abort 3 https://twitter.com/The_Huggernaut +gallery-dl --sleep 4 --abort 3 https://twitter.com/TehBasco +gallery-dl --sleep 4 --abort 3 https://twitter.com/SwiftLPRD +echo ">>> Updating Retweets" +gallery-dl --abort 3 --sleep 4 -o retweets=true "https://twitter.com/stefenauris" +gallery-dl --abort 3 --sleep 4 -o retweets=true "https://twitter.com/DaybreakHero" diff --git a/scripts/server_bin/update_twitter.sh b/scripts/server_bin/update_twitter.sh index b7121f3..f4b75c7 100755 --- a/scripts/server_bin/update_twitter.sh +++ b/scripts/server_bin/update_twitter.sh @@ -1,15 +1,16 @@ #!/bin/bash -N=3 +N=1 rm ~/twit_error.txt cd $HOME/gallery-dl/twitter +echo ">>> Begin Downloads" for i in */; do echo ">> $i" - (gallery-dl --sleep 0.8-3 --abort 3 "https://twitter.com/$i" || echo "$i" >> ~/twit_error.txt) & + (gallery-dl --sleep 3 --abort 3 "https://twitter.com/$i" || echo "$i" >> ~/twit_error.txt) & if [[ $(jobs -r -p | wc -l) -ge $N ]]; then wait -n fi done echo ">>> Updating Retweets" -gallery-dl --abort 3 --sleep 0.5-2 -o retweets=true "https://twitter.com/stefenauris" -gallery-dl --abort 3 --sleep 0.5-2 -o retweets=true "https://twitter.com/DaybreakHero" +gallery-dl --abort 3 --sleep 2 -o retweets=true "https://twitter.com/stefenauris" +gallery-dl --abort 3 --sleep 2 -o retweets=true "https://twitter.com/DaybreakHero" wait