-
Notifications
You must be signed in to change notification settings - Fork 12
/
retropie_install_gpi2.sh
60 lines (42 loc) · 1.69 KB
/
retropie_install_gpi2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
filewebsite="https://raw.githubusercontent.com/RetroFlag/GPiCase2-Script/main"
sleep 2s
#Step 1) Check if root--------------------------------------
if [[ $EUID -ne 0 ]]; then
echo "Please execute script as root."
exit 1
fi
#-----------------------------------------------------------
#Step 2) Download Python script-----------------------------
cd /opt/
sudo mkdir RetroFlag
cd /opt/RetroFlag
script=SafeShutdown.py
if [ -e $script ];
then
wget --no-check-certificate -O $script "$filewebsite""/retropie_SafeShutdown_gpi2.py"
else
wget --no-check-certificate -O $script "$filewebsite""/retropie_SafeShutdown_gpi2.py"
fi
wget --no-check-certificate -O "lcdfirst.sh" "$filewebsite""/retropielcdfirst.sh"
wget --no-check-certificate -O "lcdnext.sh" "$filewebsite""/retropielcdnext.sh"
cd /etc/modprobe.d
wget --no-check-certificate -O "alsa-base.conf" "$filewebsite""/alsa-base.conf"
#-----------------------------------------------------------
sleep 2s
#Step 3) Enable Python script to run on start up------------
cd /etc/
RC=rc.local
if grep -q "sh \/opt\/RetroFlag\/lcdfirst.sh\& \nsleep 1\& \nsudo python \/opt\/RetroFlag\/SafeShutdown.py \&" "$RC";
then
echo "File /etc/rc.local already configured. Doing nothing."
else
sed -i -e "s/^exit 0/sh \/opt\/RetroFlag\/lcdfirst.sh\& \nsleep 1\& \nsudo python \/opt\/RetroFlag\/SafeShutdown.py\& \n&/g" "$RC"
echo "File /etc/rc.local configured."
fi
#-----------------------------------------------------------
#Step 4) Reboot to apply changes----------------------------
echo "RetroFlag Pi Case installation done. Will now reboot after 3 seconds."
sleep 3s
sudo reboot
#-----------------------------------------------------------