-
Notifications
You must be signed in to change notification settings - Fork 2
/
.install-to-games-list.sh
executable file
·48 lines (42 loc) · 2.06 KB
/
.install-to-games-list.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
#!/bin/bash
# Retropie Airplane Mode scripts; allows for disabling and enabling wireless.
# Copyright (C) <2020> <Brandon Hale>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
addtogamelist()
{
find $1 -name "gamelist.xml" -execdir \
sed -i 's/<\/gameList>/ <game>\
<path>.\/wireless<\/path>\
<name>Wireless<\/name>\
<desc>Collection of scripts to enable\/disable wireless capabilities.<\/desc>\
<image>.\/wireless\/wireless-icon.png<\/image>\
<\/game>\
<\/gameList>'/ {} \;
}
echowarning()
{
echo "If you see a warning of find : No such file or directory"
echo "but you still have the icon for the wireless folder in the"
echo "retropie menu, then ignore the warning. The script worked!"
}
# You need GNU sed for the newlines to work. If you don't have GNU sed, you know
# who you are ;).
# Replace sed with the path to GNU sed if you changed to a different sed.
#
# This finds your </gameList> line and replaces it with the entry for the
# wireless folder. Then it adds its own </gameList> line.
#
# There are currently two places I know that this file exists. It seems retropie is officially putting retropiemenu's gamelist.xml in ~/.emulationstation/gamelists/retropie now.
# We are going to act on both potential places. It doesn't hurt anything if the file doesn't exist to run the function on it.
echowarning
addtogamelist ~/.emulationstation/gamelists/retropie/gamelist.xml
addtogamelist ~/RetroPie/retropiemenu/gamelist.xml