added slideshare dl script; added anime styleing for games slides

This commit is contained in:
2023-09-07 19:54:31 -05:00
parent 4f25c15bb2
commit 6828727acc
199 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/bash
adb shell echo "Connected to Android Device via ADB" || exit 1
echo "Downloading Retro Arch..."
wget -c "https://buildbot.libretro.com/stable/1.14.0/android/RetroArch.apk"
echo "Installing Retro Arch..."
adb install -g RetroArch.apk
adb shell am start -n com.retroarch/.browser.mainmenu.MainMenuActivity
echo "Downloading ROMS..."
adb shell mkdir -p /sdcard/roms/nes
mkdir /tmp/nes
cd /tmp/nes
wget -c "https://archive.org/compress/nes-rom-collection" -O nes.zip
unzip nes.zip
adb push *.nes /sdcard/roms/nes/
cd
rm -fr /tmp/nes