Merge branch 'master' of github.com:sc-idevops/stevset

This commit is contained in:
Stefen Auris 2023-08-13 17:10:16 -04:00
commit 46cd22b8b6
3 changed files with 43 additions and 5 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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