EmuDeck/tools/rom-parser.sh
Dragoon Dorise 00a8f1c19c
New paths (#1381)
* new paths

* /

* EmuDeck/

* mv

* no &

* ESDE new location

* ESDE new path

* no symlink load

* bigpemu new path

* force move

* global vars

* oopsie

* missing $emudeckBackend

* better migration detection

* Keep Appimages in Applications

* Keep Appimages in Applications
2025-01-02 13:42:31 +01:00

23 lines
No EOL
543 B
Bash

#!/bin/bash
. "$HOME/.config/EmuDeck/backend/functions/all.sh"
{
NONE='\033[00m'
RED='\033[01;31m'
GREEN='\033[01;32m'
YELLOW='\033[01;33m'
PURPLE='\033[01;35m'
CYAN='\033[01;36m'
WHITE='\033[01;37m'
BOLD='\033[1m'
UNDERLINE='\033[4m'
BLINK='\x1b[5m'
. "$HOME/.config/EmuDeck/backend/tools/scrapers/retroarch.sh"
. "$HOME/.config/EmuDeck/backend/tools/scrapers/screenscraper.sh"
romParser_RA_start
#romParser_LB_start
if [ -f "$HOME/.config/EmuDeck/.userSS" ]; then
romParser_SS_start
fi
} | tee "$HOME/.config/EmuDeck/logs/parser.log" 2>&1