This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
version="0.2" | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $(basename $0) [7z file]" | |
exit 0 | |
fi | |
function error() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#clear_played.sh | |
for f in /home/pi/RetroPie/roms/**/gamelist.xml | |
do | |
echo "file: $f" | |
grep -e lastplayed -e playcount -v $f > "$f.tmp" | |
mv -f "$f.tmp" $f | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 <message> [title]" | |
exit | |
fi | |
MESSAGE=$1 | |
TITLE=$2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
cd ~/RetroPie-Setup/ | |
git pull | |
sudo __nodialog=1 ./retropie_packages.sh raspbiantools apt_upgrade | |
sudo __nodialog=1 ./retropie_packages.sh setup post_update | |
sudo __nodialog=1 ./retropie_packages.sh setup update_packages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
megadrive_fullname="Sega Genesis" | |
megadrive_theme="genesis" | |
pcengine_fullname="TurboGrafx 16" | |
pcengine_theme="tg16" | |
pce-cd_fullname="TurboGrafx-CD" | |
pce-cd_theme="tg-cd" |