Compare commits
12 Commits
7742e6693a
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 232af71450 | |||
| 6f53c57412 | |||
| b75be3a199 | |||
| d124921dfb | |||
| 8a851413af | |||
| 1b0f3ef4a5 | |||
| 55c94d1372 | |||
| 8c42ca26ce | |||
| 33a1df4a8d | |||
| 4e4dbd2673 | |||
| e25ebfe438 | |||
| 5753ba3ea6 |
36
.gitignore
vendored
36
.gitignore
vendored
@ -44,28 +44,7 @@ fish/.config/fish/conf.d/gitnow_config.fish
|
||||
fish/.config/fish/conf.d/z.fish
|
||||
fish/.config/fish/functions/fish_mode_prompt.fish
|
||||
fish/.config/fish/functions/tide.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/finish.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/icons.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/prompt_colors.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/prompt_connection.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/prompt_spacing.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/show_time.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/all/style.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_frame.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_height.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish
|
||||
fish/.config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/classic.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/classic_16color.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/lean.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/lean_16color.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/rainbow.fish
|
||||
fish/.config/fish/functions/tide/configure/configs/rainbow_16color.fish
|
||||
fish/.config/fish/functions/tide/*
|
||||
_fake*
|
||||
fish/.config/fish/conf.d/virtualfish-loader.fish
|
||||
fish/.config/fish/functions/fzf_key_bindings.fish
|
||||
@ -79,3 +58,16 @@ BingWallpaperAppUpdater1.1.3.app
|
||||
/gnome/.local/share/karabiner/
|
||||
/gnome/.local/share/atuin/
|
||||
/gnome/.local/share/doom/
|
||||
bin/.local/bin/dotenv
|
||||
bin/.local/bin/fastapi
|
||||
bin/.local/bin/httpx2
|
||||
bin/.local/bin/markdown-it
|
||||
bin/.local/bin/mcp
|
||||
bin/.local/bin/monet
|
||||
bin/.local/bin/py.test
|
||||
bin/.local/bin/pygmentize
|
||||
bin/.local/bin/pytest
|
||||
bin/.local/bin/ruff
|
||||
bin/.local/bin/typer
|
||||
bin/.local/bin/uvicorn
|
||||
bin/.local/bin/asdf
|
||||
|
||||
48
Makefile
48
Makefile
@ -1,7 +1,13 @@
|
||||
.PHONY: os stow deps
|
||||
.PHONY: all os stow deps claude claude-save
|
||||
|
||||
OS_NAME := $(shell uname -s | tr A-Z a-z)
|
||||
|
||||
CLAUDE_HISTORY_REPO := git@git.service:secstate/claude-history
|
||||
CLAUDE_HISTORY_DIR := $(HOME)/.claude-history
|
||||
CLAUDE_HISTORY_PATHS := projects plans tasks history.jsonl
|
||||
|
||||
all: stow claude
|
||||
|
||||
stow:
|
||||
mkdir -p ~/.gnupg && chmod 0700 ~/.gnupg
|
||||
stow -t ~ */
|
||||
@ -18,3 +24,43 @@ deps:
|
||||
|
||||
os:
|
||||
@echo $(OS_NAME)
|
||||
|
||||
# Clone the private session-state repo and symlink it into ~/.claude so Claude
|
||||
# Code resumes prior sessions. Sessions only match when the checkout path is
|
||||
# identical to the one recorded in the project directory name.
|
||||
claude:
|
||||
@test -d $(CLAUDE_HISTORY_DIR) || git clone $(CLAUDE_HISTORY_REPO) $(CLAUDE_HISTORY_DIR)
|
||||
@mkdir -p ~/.claude
|
||||
@for p in $(CLAUDE_HISTORY_PATHS); do \
|
||||
test -e $(CLAUDE_HISTORY_DIR)/$$p || continue; \
|
||||
test -L ~/.claude/$$p && continue; \
|
||||
if [ -e ~/.claude/$$p ]; then \
|
||||
echo "claude: ~/.claude/$$p exists and is not a symlink, leaving it alone"; \
|
||||
continue; \
|
||||
fi; \
|
||||
ln -s $(CLAUDE_HISTORY_DIR)/$$p ~/.claude/$$p; \
|
||||
echo "claude: linked $$p"; \
|
||||
done
|
||||
@if [ $(OS_NAME) = "linux" ]; then \
|
||||
systemctl --user daemon-reload && \
|
||||
systemctl --user enable --now claude-save.timer; \
|
||||
fi
|
||||
@if [ $(OS_NAME) = "darwin" ]; then \
|
||||
launchctl bootout gui/$$(id -u)/com.powellc.claude-save 2>/dev/null; \
|
||||
launchctl bootstrap gui/$$(id -u) ~/Library/LaunchAgents/com.powellc.claude-save.plist && \
|
||||
echo "claude: loaded com.powellc.claude-save"; \
|
||||
fi
|
||||
|
||||
claude-save:
|
||||
@cd $(CLAUDE_HISTORY_DIR) && \
|
||||
git add -A && \
|
||||
if git diff --cached --quiet; then \
|
||||
echo "claude-save: nothing to commit"; \
|
||||
else \
|
||||
git commit -qm "Sync session state" && echo "claude-save: committed"; \
|
||||
fi && \
|
||||
if git remote get-url origin >/dev/null 2>&1; then \
|
||||
git push -q && echo "claude-save: pushed"; \
|
||||
else \
|
||||
echo "claude-save: no origin remote, skipping push"; \
|
||||
fi
|
||||
|
||||
78
bin/.local/bin/install_asdf
Executable file
78
bin/.local/bin/install_asdf
Executable file
@ -0,0 +1,78 @@
|
||||
#!/usr/bin/env bash
|
||||
# Install asdf (https://asdf-vm.com) from the latest GitHub release.
|
||||
#
|
||||
# Usage:
|
||||
# ./install-asdf.sh # latest, installs to ~/.local/bin
|
||||
# ./install-asdf.sh v0.20.0 # specific version
|
||||
# INSTALL_DIR=/usr/local/bin ./install-asdf.sh
|
||||
set -euo pipefail
|
||||
|
||||
REPO="asdf-vm/asdf"
|
||||
VERSION="${1:-latest}"
|
||||
INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}"
|
||||
|
||||
need() { command -v "$1" >/dev/null 2>&1 || { echo "error: '$1' is required" >&2; exit 1; }; }
|
||||
need curl
|
||||
need tar
|
||||
need install
|
||||
|
||||
os="$(uname -s | tr '[:upper:]' '[:lower:]')"
|
||||
case "$(uname -m)" in
|
||||
x86_64 | amd64) arch="amd64" ;;
|
||||
aarch64 | arm64) arch="arm64" ;;
|
||||
386 | i386 | i686) arch="386" ;;
|
||||
*) echo "error: unsupported architecture: $(uname -m)" >&2; exit 1 ;;
|
||||
esac
|
||||
|
||||
case "$os" in
|
||||
linux | darwin) ;;
|
||||
*) echo "error: unsupported OS: $os" >&2; exit 1 ;;
|
||||
esac
|
||||
|
||||
if [ "$VERSION" = "latest" ]; then
|
||||
VERSION="$(curl -fsSLI -o /dev/null -w '%{url_effective}' \
|
||||
"https://github.com/$REPO/releases/latest" | sed -E 's#.*/tag/##')"
|
||||
case "$VERSION" in
|
||||
v[0-9]*) ;;
|
||||
*) echo "error: could not determine latest version" >&2; exit 1 ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
name="asdf-${VERSION}-${os}-${arch}"
|
||||
base="https://github.com/$REPO/releases/download/$VERSION/$name.tar.gz"
|
||||
|
||||
tmp="$(mktemp -d)"
|
||||
trap 'rm -rf "$tmp"' EXIT
|
||||
|
||||
echo "Downloading $name ..."
|
||||
curl -fsSL -o "$tmp/asdf.tar.gz" "$base"
|
||||
curl -fsSL -o "$tmp/asdf.md5" "$base.md5"
|
||||
|
||||
expected="$(tr -d '[:space:]' < "$tmp/asdf.md5")"
|
||||
if command -v md5sum >/dev/null 2>&1; then
|
||||
actual="$(md5sum "$tmp/asdf.tar.gz" | cut -d' ' -f1)"
|
||||
else
|
||||
actual="$(md5 -q "$tmp/asdf.tar.gz")"
|
||||
fi
|
||||
if [ "$expected" != "$actual" ]; then
|
||||
echo "error: checksum mismatch" >&2
|
||||
echo " expected $expected" >&2
|
||||
echo " got $actual" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
tar -xzf "$tmp/asdf.tar.gz" -C "$tmp"
|
||||
mkdir -p "$INSTALL_DIR"
|
||||
install -m755 "$tmp/asdf" "$INSTALL_DIR/asdf"
|
||||
|
||||
echo "Installed asdf $VERSION -> $INSTALL_DIR/asdf"
|
||||
"$INSTALL_DIR/asdf" --version
|
||||
|
||||
case ":$PATH:" in
|
||||
*":$INSTALL_DIR:"*) ;;
|
||||
*)
|
||||
echo
|
||||
echo "note: $INSTALL_DIR is not on your PATH. Add it, e.g.:"
|
||||
echo " export PATH=\"$INSTALL_DIR:\$PATH\""
|
||||
;;
|
||||
esac
|
||||
@ -52,5 +52,10 @@
|
||||
}
|
||||
},
|
||||
"theme": "dark-daltonized",
|
||||
"skipAutoPermissionPrompt": true
|
||||
"skipAutoPermissionPrompt": true,
|
||||
"modelSettings": {
|
||||
"claude-sonnet-5": {
|
||||
"effortLevel": "high"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -5,8 +5,8 @@
|
||||
;; If there is more than one, they won't work right.
|
||||
'(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'")
|
||||
'(package-selected-packages
|
||||
'(acp agent-shell csv-mode direnv eca ef-themes helix-theme just-mode justl
|
||||
magit-todos nov pinentry vulpea w3m))
|
||||
'(acp agent-shell csv-mode direnv eca ef-themes ghostel helix-theme just-mode
|
||||
justl magit-todos nov org-chef pinentry vulpea w3m))
|
||||
'(safe-local-variable-values '((pytest-global-name . "docker-compose run --rm test --"))))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
[user]
|
||||
email = colin.powell@hungryroot.com
|
||||
signingkey = BB257E06080FE639030D9291819A121699A1FD39
|
||||
signingkey = 2A2DD36ECA886ADF46FC093C58D3070B9ADA7B67
|
||||
|
||||
35
launchd/Library/LaunchAgents/com.powellc.claude-save.plist
Normal file
35
launchd/Library/LaunchAgents/com.powellc.claude-save.plist
Normal file
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
|
||||
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Label</key>
|
||||
<string>com.powellc.claude-save</string>
|
||||
|
||||
<!-- sh expands $HOME; launchd does not expand ~ in ProgramArguments -->
|
||||
<key>ProgramArguments</key>
|
||||
<array>
|
||||
<string>/bin/sh</string>
|
||||
<string>-c</string>
|
||||
<string>make -C "$HOME/.dotfiles" claude-save</string>
|
||||
</array>
|
||||
|
||||
<key>EnvironmentVariables</key>
|
||||
<dict>
|
||||
<key>PATH</key>
|
||||
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
|
||||
</dict>
|
||||
|
||||
<key>StartInterval</key>
|
||||
<integer>1800</integer>
|
||||
|
||||
<key>RunAtLoad</key>
|
||||
<true/>
|
||||
|
||||
<key>StandardOutPath</key>
|
||||
<string>/tmp/claude-save.out</string>
|
||||
|
||||
<key>StandardErrorPath</key>
|
||||
<string>/tmp/claude-save.err</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -1,9 +1,6 @@
|
||||
{
|
||||
"$schema": "https://opencode.ai/config.json",
|
||||
"provider": {
|
||||
"anthropic": {
|
||||
"api_key": "{env:ANTHROPIC_API_KEY}"
|
||||
},
|
||||
"ollama": {
|
||||
"npm": "@ai-sdk/openai-compatible",
|
||||
"name": "Ollama (hr-macos)",
|
||||
|
||||
BIN
password-store/.password-store/personal/apikey/groq.gpg
Normal file
BIN
password-store/.password-store/personal/apikey/groq.gpg
Normal file
Binary file not shown.
BIN
password-store/.password-store/personal/apikey/mistral.gpg
Normal file
BIN
password-store/.password-store/personal/apikey/mistral.gpg
Normal file
Binary file not shown.
BIN
password-store/.password-store/personal/apikey/pangram.gpg
Normal file
BIN
password-store/.password-store/personal/apikey/pangram.gpg
Normal file
Binary file not shown.
Binary file not shown.
114
retroarch/.config/retroarch/playlists/Atari - Jaguar.lpl
Normal file
114
retroarch/.config/retroarch/playlists/Atari - Jaguar.lpl
Normal file
@ -0,0 +1,114 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Cannon Fodder (World).zip",
|
||||
"label": "Cannon Fodder (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BDA405C6|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Cannon Fodder (World).zip#Cannon Fodder (World).j64",
|
||||
"label": "Cannon Fodder (World)",
|
||||
"core_path": "/media/roms/cores/virtualjaguar_libretro.so",
|
||||
"core_name": "Atari - Jaguar (Virtual Jaguar)",
|
||||
"crc32": "BDA405C6|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Pitfall - The Mayan Adventure (World).zip",
|
||||
"label": "Pitfall - The Mayan Adventure (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "817A2273|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Pitfall - The Mayan Adventure (World).zip#Pitfall - The Mayan Adventure (World).j64",
|
||||
"label": "Pitfall - The Mayan Adventure (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "817A2273|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Power Drive Rally (World).zip",
|
||||
"label": "Power Drive Rally (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1660F070|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Power Drive Rally (World).zip#Power Drive Rally (World).j64",
|
||||
"label": "Power Drive Rally (World)",
|
||||
"core_path": "/media/roms/cores/virtualjaguar_libretro.so",
|
||||
"core_name": "Atari - Jaguar (Virtual Jaguar)",
|
||||
"crc32": "1660F070|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Rayman (World).zip",
|
||||
"label": "Rayman (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "A9F8A00E|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Rayman (World).zip#Rayman (World).j64",
|
||||
"label": "Rayman (World)",
|
||||
"core_path": "/media/roms/cores/virtualjaguar_libretro.so",
|
||||
"core_name": "Atari - Jaguar (Virtual Jaguar)",
|
||||
"crc32": "A9F8A00E|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Wolfenstein 3D (World).zip",
|
||||
"label": "Wolfenstein 3D (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "E91BD644|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Wolfenstein 3D (World).zip#Wolfenstein 3D (World).j64",
|
||||
"label": "Wolfenstein 3D (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "E91BD644|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Zool 2 (World).zip",
|
||||
"label": "Zool 2 (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8975F48B|crc",
|
||||
"db_name": "Atari - Jaguar.lpl",
|
||||
"entry_slot": 1199225312
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Zool 2 (World).zip#Zool 2 (World).j64",
|
||||
"label": "Zool 2 (World)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8975F48B|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
307
retroarch/.config/retroarch/playlists/Atari - Lynx.lpl
Normal file
307
retroarch/.config/retroarch/playlists/Atari - Lynx.lpl
Normal file
@ -0,0 +1,307 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Alien Vs Predator (Prototype) (1993) [!].lnx",
|
||||
"label": "Alien vs Predator (USA) (Proto) (1993-12-17)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "D6843E8E|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Block Out (1990).lnx",
|
||||
"label": "Block Out (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C96E5BC6|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Blue Lightning (1989).lnx",
|
||||
"label": "Blue Lightning (USA, Europe)",
|
||||
"core_path": "/media/roms/cores/mednafen_lynx_libretro.so",
|
||||
"core_name": "Atari - Lynx (Beetle Lynx)",
|
||||
"crc32": "35AF173C|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/California Games (1991).lnx",
|
||||
"label": "California Games (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "DA7D96FD|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Checkered Flag (1991).lnx",
|
||||
"label": "Checkered Flag (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "6687F846|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Desert Strike - Return to the Gulf (1993) (Telegames).lnx",
|
||||
"label": "Desert Strike - Return to the Gulf (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2EAAE973|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Dinolympics (1992).lnx",
|
||||
"label": "Dinolympics (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "0ED9EB06|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Dirty Larry - Renegade Cop (1992).lnx",
|
||||
"label": "Dirty Larry - Renegade Cop (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C6017733|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Double Dragon (1993) (Telegames).lnx",
|
||||
"label": "Double Dragon (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BCB2E75A|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Dracula - The Undead (1991).lnx",
|
||||
"label": "Dracula the Undead (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "0F4B4071|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Electrocop (1989).lnx",
|
||||
"label": "Electrocop (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "765D742D|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/European Soccer Challenge (1993) (Telegames).lnx",
|
||||
"label": "European Soccer Challenge (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8EC43452|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Fat Bobby (1997) (Telegames).lnx",
|
||||
"label": "Fat Bobby (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "03F4E2A7|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Gordo 106 - The Mutated Lab Monkey (1993).lnx",
|
||||
"label": "Gordo 106 (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "0671ACEA|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Hydra (1992).lnx",
|
||||
"label": "Hydra (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8980A322|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Jimmy Conners Tennis (1991).lnx",
|
||||
"label": "Jimmy Connors' Tennis (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "FDD6536D|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Malibu Bikini Volleyball (1993).lnx",
|
||||
"label": "Malibu Bikini Volleyball (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "ABA3E776|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/NFL Football (1990).lnx",
|
||||
"label": "NFL Football (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C398359E|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Ninja Gaiden (1990).lnx",
|
||||
"label": "Ninja Gaiden (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "5ADF25F0|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Pinball Jam (1992).lnx",
|
||||
"label": "Pinball Jam (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8863C28D|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Pit Fighter - The Ultimate Competition (1992).lnx",
|
||||
"label": "Pit-Fighter (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CBAF54F3|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Power Factor (1992).lnx",
|
||||
"label": "Power Factor (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "5DB41679|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Rampage (1991).lnx",
|
||||
"label": "Rampage (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "490033C9|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Rampart (1991).lnx",
|
||||
"label": "Rampart (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "ADAB7883|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/RoadBlasters (1990).lnx",
|
||||
"label": "RoadBlasters (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "47F69051|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Robo-Squash (1990).lnx",
|
||||
"label": "Robo-Squash (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "AEED3E7E|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Rygar - Legendary Warrior (1990).lnx",
|
||||
"label": "Rygar (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1DFCA564|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Shadow of the Beast (1992).lnx",
|
||||
"label": "Shadow of the Beast (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "D43A8430|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Steel Talons (1991).lnx",
|
||||
"label": "Steel Talons (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "AB814832|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Super Off-Road (1996) (Telegames).lnx",
|
||||
"label": "Super Off-Road (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C51B7A2F|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Super Skweek (1991).lnx",
|
||||
"label": "Super Skweek (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "11B712F6|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Switchblade II (1992).lnx",
|
||||
"label": "Switchblade II (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "63144491|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Todd's Adventure in Slime World (1990).lnx",
|
||||
"label": "Todd's Adventures in Slime World (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "39BF3C25|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Toki (1990).lnx",
|
||||
"label": "Toki (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "52B94A6C|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Viking Child (1991).lnx",
|
||||
"label": "Viking Child (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "45969EB0|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/World Class Soccer (1992).lnx",
|
||||
"label": "World Class Soccer (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "9D929F2C|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarilynx/Xybots (1991).lnx",
|
||||
"label": "Xybots (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CAC9A246|crc",
|
||||
"db_name": "Atari - Lynx.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
1675
retroarch/.config/retroarch/playlists/MAME.lpl
Normal file
1675
retroarch/.config/retroarch/playlists/MAME.lpl
Normal file
File diff suppressed because it is too large
Load Diff
4547
retroarch/.config/retroarch/playlists/Microsoft - MSX.lpl
Normal file
4547
retroarch/.config/retroarch/playlists/Microsoft - MSX.lpl
Normal file
File diff suppressed because it is too large
Load Diff
20
retroarch/.config/retroarch/playlists/Microsoft - MSX2.lpl
Normal file
20
retroarch/.config/retroarch/playlists/Microsoft - MSX2.lpl
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/msx/Rastan Saga (Japan).rom",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Rastan Saga (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "84461E73|crc",
|
||||
"db_name": "Microsoft - MSX2.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
20
retroarch/.config/retroarch/playlists/NEC - PC-FX.lpl
Normal file
20
retroarch/.config/retroarch/playlists/NEC - PC-FX.lpl
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/pcfx/Kishin Douji Zenki FX - Vajra Fight (Japan).cue",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Kishin Douji Zenki FX - Vajra Fight (Japan)",
|
||||
"core_path": "/media/roms/cores/mednafen_pcfx_libretro.so",
|
||||
"core_name": "NEC - PC-FX (Beetle PC-FX)",
|
||||
"crc32": "FA7A2061|crc",
|
||||
"db_name": "NEC - PC-FX.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/fds/Super Mario Brothers 2 (Japan).fds",
|
||||
"entry_slot": 824675200,
|
||||
"label": "Super Mario Bros. 2 (Japan) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "F04CD4CD|crc",
|
||||
"db_name": "Nintendo - Family Computer Disk System.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,123 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/gbc/LEGO Alpha Team.zip#LEGO Alpha Team (USA).gbc",
|
||||
"label": "LEGO Alpha Team (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "6D7EC41B|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Legend of Zelda, The: Oracle of Ages.zip#Legend of Zelda, The - Oracle of Ages (USA, Australia).gbc",
|
||||
"label": "Legend of Zelda, The - Oracle of Ages (USA, Australia)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "3800A387|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Hamtaro - Ham-Hams Unite! (USA).gbc",
|
||||
"label": "Hamtaro - Ham-Hams Unite! (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1271117F|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Simpsons, The - Night of the Living Treehouse of Horror (USA, Europe).gbc",
|
||||
"label": "Simpsons, The - Night of the Living Treehouse of Horror (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "EBAF4888|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Paperboy (USA).gbc",
|
||||
"label": "Paperboy (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C0A98305|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon Pinball (USA) (SGB Enhanced).gbc",
|
||||
"label": "Pokemon Pinball (USA, Australia) (Rumble Version) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "03CE8D9A|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pocket Bomberman (USA, Europe).gbc",
|
||||
"label": "Pocket Bomberman (USA, Europe) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "FA2A66E9|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon - Crystal Version (USA, Europe).gbc",
|
||||
"label": "Pokemon - Crystal Version (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "EE6F5188|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon - Gold Version (USA, Europe).gbc",
|
||||
"label": "Pokemon - Gold Version (USA, Europe) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "6BDE3C3E|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Resident Evil Gaiden (USA).gbc",
|
||||
"label": "Resident Evil Gaiden (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "F8C5021B|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon Trading Card Game (USA).gbc",
|
||||
"label": "Pokemon Trading Card Game (USA, Australia) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81069D53|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon - Silver Version (USA, Europe).gbc",
|
||||
"label": "Pokemon - Silver Version (USA, Europe) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8AD48636|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (SGB Enhanced) (GB Compatible).gbc",
|
||||
"label": "Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (SGB Enhanced) (GB Compatible)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "06887A34|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon Puzzle Challenge (USA).gbc",
|
||||
"label": "Pokemon Puzzle Challenge (USA, Australia)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "D06BBA96|crc",
|
||||
"db_name": "Nintendo - Game Boy Color.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/gbc/Pokemon - Yellow Version (USA, Europe).gbc",
|
||||
"label": "Pokemon - Yellow Version - Special Pikachu Edition (USA, Europe) (CGB+SGB Enhanced)",
|
||||
"core_path": "/media/roms/cores/gambatte_libretro.so",
|
||||
"core_name": "Nintendo - Game Boy / Color (Gambatte)",
|
||||
"crc32": "7D527D62|crc",
|
||||
"db_name": "Nintendo - Game Boy.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
1091
retroarch/.config/retroarch/playlists/Nintendo - GameCube.lpl
Normal file
1091
retroarch/.config/retroarch/playlists/Nintendo - GameCube.lpl
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,20 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/megadrive/screenshots/Might and Magic 2 - Gates to Another World (U) (REV 01) [!].png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Super Spike V'Ball (Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "EAC96B20|crc",
|
||||
"db_name": "Nintendo - Nintendo Entertainment System.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
227
retroarch/.config/retroarch/playlists/Nintendo - Virtual Boy.lpl
Normal file
227
retroarch/.config/retroarch/playlists/Nintendo - Virtual Boy.lpl
Normal file
@ -0,0 +1,227 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Virtual League Baseball (U) [a1].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtual League Baseball (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "736B40D6|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Virtual Pro Yakyuu '95 (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtual Pro Yakyuu '95 (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "9BA8BB5E|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Panic Bomber (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Panic Bomber (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "19BB2DFB|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Jack Bros (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Jack Bros. no Meiro de Hiihoo! (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CAB61E8B|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Vertical Force (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Vertical Force (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "9E9B8B92|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Mario's Tennis (JU) [a1].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Mario's Tennis (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "7CE7460D|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Galactic Pinball (JU) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Galactic Pinball (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C9710A36|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/V Tetris (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "V-Tetris (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "3CCB67AE|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Virtual Boy Wario Land (JU) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtual Boy Wario Land (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "133E9372|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Space Squash (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Space Squash (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "60895693|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Virtual Fishing (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtual Fishing (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "526CC969|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Red Alarm (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Red Alarm (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "AA10A7B4|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Waterworld (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Waterworld (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "82A95E51|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Panic Bomber (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Tobidase! Panibon (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "40498F5E|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Jack Bros (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Jack Bros. (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "A44DE03C|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Vertical Force (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Vertical Force (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "4C32BA5E|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Nester's Funky Bowling (U) [a1].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Nester's Funky Bowling (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "DF4D56B4|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Golf (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Golf (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2199AF41|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/T&E Virtual Golf (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "T&E Virtual Golf (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "6BA07915|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Mario Clash (JU) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Mario Clash (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "A47DE78C|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Red Alarm (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Red Alarm (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "7E85C45D|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Insane Mouse Mansion (J) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "EFD0AC36|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/Teleroboxer (JU) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Teleroboxer (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "36103000|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/virtualboy/3D Tetris (U) [!].vb",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "3-D Tetris (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BB71B522|crc",
|
||||
"db_name": "Nintendo - Virtual Boy.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
38
retroarch/.config/retroarch/playlists/ScummVM.lpl
Normal file
38
retroarch/.config/retroarch/playlists/ScummVM.lpl
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/zmachine/zork3.dat",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Zork III: The Dungeon Master (Multi-OS)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "3DF200A4|crc",
|
||||
"db_name": "ScummVM.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/zmachine/zork2.dat",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Zork II: The Wizard of Frobozz (Multi-OS)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8C126869|crc",
|
||||
"db_name": "ScummVM.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/zmachine/zork1.dat",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Zork I: The Great Underground Empire (Multi-OS)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BF60EF9D|crc",
|
||||
"db_name": "ScummVM.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
128
retroarch/.config/retroarch/playlists/Sega - 32X.lpl
Normal file
128
retroarch/.config/retroarch/playlists/Sega - 32X.lpl
Normal file
@ -0,0 +1,128 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/sega32x/After Burner Compelete.32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "After Burner Complete (Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "029106F5|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Amazing Spider-Man, The - Web of Fire (USA).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Amazing Spider-Man, The - Web of Fire (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "29DCE257|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Blackthorne (USA).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Blackthorne (USA)",
|
||||
"core_path": "/media/roms/cores/picodrive_libretro.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD/32X (PicoDrive)",
|
||||
"crc32": "D1A60A47|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Kolibri (USA, Europe).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Kolibri (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "20CA53EF|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Mortal Kombat II (32X) (W) (Jan 1995) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Mortal Kombat II (Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "211085CE|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/NBA Jam Tournament Edition (32X) (W) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "NBA Jam - Tournament Edition (World)",
|
||||
"core_path": "/media/roms/cores/picodrive_libretro.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD/32X (PicoDrive)",
|
||||
"crc32": "6B7994AA|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Spot Goes To Hollywood 32x (Prototype).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Spot Goes to Hollywood (USA) (Proto)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CE6C4B99|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Star Wars Arcade (32X) (U) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Star Wars Arcade (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2F16B44A|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Virtua Fighter (32X) (E) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtua Fighter (Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "25AEA73C|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Virtua Fighter (32X) (JU) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtua Fighter (Japan, USA) (En)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "B5DE9626|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Virtua Hamster (USA) (Proto).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtua Hamster (USA) (Proto)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CD54AC37|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Virtua Racing Deluxe (Japan).32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtua Racing Deluxe (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "0908E888|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/sega32x/Virtua Racing Deluxe (32X) (U) [!].32x",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Virtua Racing Deluxe (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "7896B62E|crc",
|
||||
"db_name": "Sega - 32X.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
213
retroarch/.config/retroarch/playlists/Sega - Dreamcast.lpl
Normal file
213
retroarch/.config/retroarch/playlists/Sega - Dreamcast.lpl
Normal file
@ -0,0 +1,213 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Alone in the Dark - The New Nightmare (USA) (Disc 1).chd",
|
||||
"label": "Alone in the Dark - The New Nightmare (USA) (Disc 1)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-15117N-0|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Alone in the Dark - The New Nightmare (USA) (Disc 2).chd",
|
||||
"label": "Alone in the Dark - The New Nightmare (USA) (Disc 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-15117N-1|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Border Down (Japan).cue.chd",
|
||||
"label": "Border Down (Japan)",
|
||||
"core_path": "/media/roms/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/NAOMI (Flycast)",
|
||||
"crc32": "T-46703M|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Dave Mirra Freestyle BMX (USA).cue.chd",
|
||||
"label": "Dave Mirra Freestyle BMX (USA)",
|
||||
"core_path": "/media/roms/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/NAOMI (Flycast)",
|
||||
"crc32": "T-8120N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Dead or Alive 2 (USA).cue.chd",
|
||||
"label": "Dead or Alive 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-3601N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Disney-Pixar Toy Story 2 - Buzz Lightyear to the Rescue! (USA).chd",
|
||||
"label": "Disney-Pixar Toy Story 2 - Buzz Lightyear to the Rescue! (USA)",
|
||||
"core_path": "/media/roms/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/NAOMI (Flycast)",
|
||||
"crc32": "T-13003N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Draconus - Cult of the Wyrm (USA).cue.chd",
|
||||
"label": "Draconus - Cult of the Wyrm (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-40203N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Fighting Vipers 2 (Europe) (En,Ja,Fr,De,Es,It).chd",
|
||||
"label": "Fighting Vipers 2 (Europe) (En,Ja,Fr,De,Es,It)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "MK-51154-50|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Floigan Bros. - Episode 1 (USA).chd",
|
||||
"label": "Floigan Bros. - Episode 1 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "51114|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/GigaWing (USA).chd",
|
||||
"label": "GigaWing (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1209N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/GigaWing 2 (USA).chd",
|
||||
"label": "GigaWing 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1222N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Gundam Side Story 0079 - Rise from the Ashes (USA).cue.chd",
|
||||
"label": "Gundam Side Story 0079 - Rise from the Ashes (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-13301N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Industrial Spy - Operation Espionage (USA).chd",
|
||||
"label": "Industrial Spy - Operation Espionage (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-41302N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Macross M3 (Japan).cue.chd",
|
||||
"label": "Macross M3 (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-21501M|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Mat Hoffman's Pro BMX v1.000 (2001)(Activision)(NTSC)(US)[!].chd",
|
||||
"label": "Mat Hoffman's Pro BMX (USA)",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "T-13005N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Napple Tale - Arsia in Daydream (J)(English patched v1.0 Cargodin).chd",
|
||||
"label": "Napple Tale - Arsia in Daydream (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "HDR-0079|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Omikron - The Nomad Soul (USA) (En,Fr,De,Es,It).chd",
|
||||
"label": "Omikron - The Nomad Soul (USA) (En,Fr,De,Es,It)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-36807N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Pier Solar and the Great Architects (USA) (Unl).chd",
|
||||
"entry_slot": 850842640,
|
||||
"label": "Pier Solar and the Great Architects (USA) (Unl)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BD329D13|crc",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Record of Lodoss War (USA).cue.chd",
|
||||
"label": "Record of Lodoss War (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-40218N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Rez (Europe) (En,Ja,Fr,De,Es,It).cue.chd",
|
||||
"label": "Rez (Europe) (En,Ja,Fr,De,Es,It)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "MK-51192-50|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Shadow Man (USA).chd",
|
||||
"label": "Shadow Man (USA) (Rev A)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-8106N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/StarLancer v1.002 (2000)(Crave)(NTSC)(US)[!].chd",
|
||||
"label": "StarLancer (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-40209N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Street Fighter III - Double Impact (USA).cue.chd",
|
||||
"label": "Street Fighter III - Double Impact (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1210N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Tom Clancy's Rainbow Six with Eagle Watch Missions (USA).chd",
|
||||
"label": "Tom Clancy's Rainbow Six with Eagle Watch Missions (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-40401N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Vigilante 8 - 2nd Offense (USA).chd",
|
||||
"label": "Vigilante 8 - 2nd Offense (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-13002N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
2261
retroarch/.config/retroarch/playlists/Sega - Game Gear.lpl
Normal file
2261
retroarch/.config/retroarch/playlists/Sega - Game Gear.lpl
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
532
retroarch/.config/retroarch/playlists/Sega - Saturn.lpl
Normal file
532
retroarch/.config/retroarch/playlists/Sega - Saturn.lpl
Normal file
@ -0,0 +1,532 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/saturn/AI Igo (Japan).chd",
|
||||
"label": "AI Igo (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-17601G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Akumajou Dracula X - Gekka no Yasoukyoku (Japan) (2M).chd",
|
||||
"label": "Akumajou Dracula X - Gekka no Yasoukyoku (Japan) (2M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-9527G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Albert Odyssey - Legend of Eldean (USA).chd",
|
||||
"label": "Albert Odyssey - Legend of Eldean (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-12705H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Arcade Gears Vol. 1 - Pu-Li-Ru-La (Japan).chd",
|
||||
"label": "Arcade Gears Vol. 1 - Pu-Li-Ru-La (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-26106G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Astal (USA) (1S).chd",
|
||||
"label": "Astal (USA) (2S)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81019|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Astra Superstars (Japan).chd",
|
||||
"label": "Astra Superstars (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1521G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Baku Baku Animal - World Zookeeper Contest (USA).chd",
|
||||
"label": "Baku Baku Animal - World Zookeeper Contest (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81501|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Bulk Slash (English v1.001).chd",
|
||||
"label": "Bulk Slash (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-14310G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Burning Rangers (USA).chd",
|
||||
"label": "Burning Rangers (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81803|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Crusader - No Remorse (USA).chd",
|
||||
"label": "Crusader - No Remorse (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-5014H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Darius Gaiden (USA).chd",
|
||||
"label": "Darius Gaiden (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-8123H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Daytona USA - Championship Circuit Edition (USA).chd",
|
||||
"label": "Daytona USA - Championship Circuit Edition (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81213|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Densetsu no Ogre Battle (Japan).chd",
|
||||
"label": "Densetsu no Ogre Battle (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-5305G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Densetsu no Ogre Battle (Japan).cue.chd",
|
||||
"label": "Densetsu no Ogre Battle (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-5305G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Die Hard Arcade (USA).chd",
|
||||
"label": "Die Hard Arcade (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81057|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Dragon Force (USA).chd",
|
||||
"label": "Dragon Force (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-12703H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Dragon Force II (English v1.04).chd",
|
||||
"label": "Dragon Force II - Kami Sarishi Daichi ni (Japan) (Rev A)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "GS-9184|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Falcom Classics (Japan) (Disc 1) (Game Disc).chd",
|
||||
"label": "Falcom Classics (Japan) (Disc 1) (Game Disc)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-31503G-0|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Fighters Megamix (USA).chd",
|
||||
"label": "Fighters Megamix (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81073|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Fighting Vipers (USA) (5S).chd",
|
||||
"label": "Fighting Vipers (USA) (6S)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81041|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Fire Pro Gaiden Blazing Tornado (English v0.9).chd",
|
||||
"label": "Fire Pro Gaiden Blazing Tornado (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4302G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Fire Prowrestling S - 6Men Scramble (English v0.9).chd",
|
||||
"label": "Fire Prowrestling S - 6Men Scramble (Japan) (1M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4308G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Grandia (English v1.0.0-Final) (Disc 1).chd",
|
||||
"label": "Grandia (Japan) (Disc 1) (4M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4507G-0|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Grandia (English v1.0.0-Final) (Disc 2).chd",
|
||||
"label": "Grandia (Japan) (Disc 2) (1M, 2M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4507G-1|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/GT24 (Japan).cue.chd",
|
||||
"label": "GT24 (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-5714G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Guardian Heroes (USA).chd",
|
||||
"label": "Guardian Heroes (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81035|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Hang-On GP (USA).chd",
|
||||
"label": "Hang-On GP (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81202|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Iron Storm (USA).chd",
|
||||
"label": "Iron Storm (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-12701H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Keio Flying Squadron 2 (Europe).chd",
|
||||
"label": "Keio Flying Squadron 2 (Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-6008H-50|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Last Gladiators - Digital Pinball (USA) (4S).chd",
|
||||
"label": "Last Gladiators - Digital Pinball (USA) (4S)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4804H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Layer Section (J).chd",
|
||||
"label": "Layer Section (Japan) (6M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1101G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Lunacy (USA) (Disc 1).chd",
|
||||
"label": "Lunacy (USA) (Disc 1)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-14403H-0|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Lunar - Silver Star Story (English v1.5.1 - DUB).chd",
|
||||
"label": "Lunar - Silver Star Story (Japan) (Rev A)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-27901G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Magic Knight Rayearth (Un-Working Designs Hack)(U).chd",
|
||||
"label": "Magic Knight Rayearth (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-12706H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Cotton 2 (English v0.9).chd",
|
||||
"label": "Magical Night Dreams - Cotton 2 (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-9904G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Magical Night Dreams - Cotton Boomerang (Japan).chd",
|
||||
"label": "Magical Night Dreams - Cotton Boomerang (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-9906G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Marvel Super Heroes (USA) (DW0832).chd",
|
||||
"label": "Marvel Super Heroes (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1214H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Mega Man 8 (USA) (DW0494).chd",
|
||||
"label": "Mega Man 8 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1216H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Megaman X4 (USA) (DW0111).chd",
|
||||
"label": "Mega Man X4 (USA)",
|
||||
"core_path": "/media/roms/cores/mednafen_saturn_libretro.so",
|
||||
"core_name": "Sega - Saturn (Beetle Saturn)",
|
||||
"crc32": "T-1219H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/The King of Fighters '97 (4M - Orochi Team Unlocked).chd",
|
||||
"label": "Message Navi (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4401G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Mystaria - The Realms of Lore (USA).chd",
|
||||
"label": "Mystaria - The Realms of Lore (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81300|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Ninpen Manmaru (English 2022-01-20b).chd",
|
||||
"label": "Ninpen Manmaru (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-35502G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Panzer Dragoon Saga (Disc 1 of 4) (USA) (DW0575).chd",
|
||||
"label": "Panzer Dragoon Saga (USA) (Disc 1)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81307-0|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Panzer Dragoon Saga (Disc 2 of 4) (USA) (DW0575).chd",
|
||||
"label": "Panzer Dragoon Saga (USA) (Disc 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81307-1|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Panzer Dragoon Saga (Disc 3 of 4) (USA) (DW0575).chd",
|
||||
"label": "Panzer Dragoon Saga (USA) (Disc 3)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81307-2|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Panzer Dragoon Saga (Disc 4 of 4) (USA) (DW0575).chd",
|
||||
"label": "Panzer Dragoon Saga (USA) (Disc 4)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81307-3|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Rabbit (Japan).cue.chd",
|
||||
"label": "Rabbit (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-10610G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Radiant Silvergun (JAP) (DW0166).chd",
|
||||
"label": "Radiant Silvergun (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-32902G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Resident Evil (USA).chd",
|
||||
"label": "Resident Evil (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1221H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Sakura Wars (J)(English patched)(CD2).cue.chd",
|
||||
"label": "Sakura Taisen (Japan) (Disc 2) (6M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "GS-9037|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Sakura Wars (J)(English patched)(CD1).cue.chd",
|
||||
"label": "Sakura Taisen (Japan) (Disc 2) (6M)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "GS-9037|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Saturn Bomberman (USA) (DW0837).chd",
|
||||
"label": "Saturn Bomberman (USA) (1S)",
|
||||
"core_path": "/media/roms/cores/mednafen_saturn_libretro.so",
|
||||
"core_name": "Sega - Saturn (Beetle Saturn)",
|
||||
"crc32": "81070|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Shining Force III (USA).chd",
|
||||
"label": "Shining Force III (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81383|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Shinobi Legions (USA).chd",
|
||||
"label": "Shinobi Legions (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-2301H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Shinrei Jusatsushi Taroumaru (Japan).chd",
|
||||
"label": "Shinrei Jusatsushi Taroumaru (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-4804G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Sonic 3D Blast (USA) (DW0074).chd",
|
||||
"label": "Sonic 3D Blast (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81062|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Street Fighter Alpha 2 (USA).chd",
|
||||
"label": "Street Fighter Alpha 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1213H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Touge King the Spirits (Japan).chd",
|
||||
"label": "Touge King the Spirits (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-14401G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Vampire Savior (Japan).chd",
|
||||
"label": "Vampire Savior (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-1229G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Vandal Hearts - Ushinawareta Kodai Bunmei (English v1.5).chd",
|
||||
"label": "Vandal Hearts - Ushinawareta Kodai Bunmei (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-9526G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Virtua Cop 2 (USA) (DW0743).chd",
|
||||
"label": "Virtua Cop 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81043|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Virtua Fighter 2 (USA) (DW0553).chd",
|
||||
"label": "Virtua Fighter 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "81014|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/World Heroes Perfect (Japan).chd",
|
||||
"label": "World Heroes Perfect (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-3103G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/X-Men - Children of the Atom (USA) (DW0556).chd",
|
||||
"label": "X-Men - Children of the Atom (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-8108H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Zanma Chou Ougi - Valhollian (Japan).chd",
|
||||
"label": "Zanma Chou Ougi - Valhollian (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "T-38201G|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Google - Nexus Player-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Google - Stadia-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Intellivision - Amico-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Amazon - Fire TV-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Atari - VCS-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/assets/xmb/neoactive/png/Microsoft - Xbox 360 (Digital)-content.png",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Duck Out! (Dro Soft) (ES) (Alt 2)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "CFB0E9B0|crc",
|
||||
"db_name": "Sinclair - ZX Spectrum.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
1347
retroarch/.config/retroarch/playlists/Sony - PlayStation 2.lpl
Normal file
1347
retroarch/.config/retroarch/playlists/Sony - PlayStation 2.lpl
Normal file
File diff suppressed because it is too large
Load Diff
207
retroarch/.config/retroarch/playlists/The 3DO Company - 3DO.lpl
Normal file
207
retroarch/.config/retroarch/playlists/The 3DO Company - 3DO.lpl
Normal file
@ -0,0 +1,207 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/3do/Star Control II (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Star Control II (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BFA0C923|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Road Rash (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Road Rash (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "94F43206|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Super Street Fighter II Turbo (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Super Street Fighter II Turbo (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1A8C1036|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Real Pinball (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Real Pinball (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "A6C3A6ED|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Demolition Man (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Demolition Man (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "14E1CC80|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Space Ace (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Space Ace (USA) (RE-1)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2946D2CE|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Lemmings (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Lemmings (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "DA328EF8|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Super Street Fighter II X - Grand Master Challenge (Japan).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Super Street Fighter II X - Grand Master Challenge (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "219B32BF|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Myst (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Myst (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1BBD2184|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Samurai Shodown (USA, Europe).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Samurai Shodown (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "44A871B5|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Cannon Fodder (USA).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Cannon Fodder (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8A92426E|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Samurai Shodown (Japan) (En,Ja).chd",
|
||||
"entry_slot": 1199225312,
|
||||
"label": "Samurai Shodown (Japan) (En,Ja)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C834DC28|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Alone in the Dark (USA).bin",
|
||||
"label": "Alone in the Dark (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2C03E3AF|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Alone in the Dark 2 (USA).bin",
|
||||
"label": "Alone in the Dark 2 (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "C4351A5E|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Cannon Fodder (USA).cue",
|
||||
"label": "Cannon Fodder (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "8A92426E|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Lemmings (USA).cue",
|
||||
"label": "Lemmings (USA)",
|
||||
"core_path": "/media/roms/cores/opera_libretro.so",
|
||||
"core_name": "The 3DO Company - 3DO (Opera)",
|
||||
"crc32": "DA328EF8|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Myst (USA).cue",
|
||||
"label": "Myst (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "1BBD2184|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Real Pinball (USA).cue",
|
||||
"label": "Real Pinball (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "A6C3A6ED|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Samurai Shodown (USA, Europe).cue",
|
||||
"label": "Samurai Shodown (USA, Europe)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "44A871B5|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Space Ace (USA).cue",
|
||||
"label": "Space Ace (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "2946D2CE|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Star Control II (USA).bin",
|
||||
"label": "Star Control II (USA)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "BFA0C923|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Super Street Fighter II Turbo (USA).cue",
|
||||
"label": "Super Street Fighter II Turbo (USA)",
|
||||
"core_path": "/media/roms/cores/opera_libretro.so",
|
||||
"core_name": "The 3DO Company - 3DO (Opera)",
|
||||
"crc32": "1A8C1036|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Super Street Fighter II X - Grand Master Challenge (Japan).cue",
|
||||
"label": "Super Street Fighter II X - Grand Master Challenge (Japan)",
|
||||
"core_path": "DETECT",
|
||||
"core_name": "DETECT",
|
||||
"crc32": "219B32BF|crc",
|
||||
"db_name": "The 3DO Company - 3DO.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/snes/Star Ocean (English v1.0)[DeJap].sfc",
|
||||
"label": "Star Ocean (Japan) [T-En by DeJap v1.0]",
|
||||
"core_path": "/media/roms/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x - Current)",
|
||||
"crc32": "6BA9E08D|crc",
|
||||
"db_name": "Nintendo - Super Nintendo Entertainment System.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/psx/Suikoden (USA) (v1.1).cue",
|
||||
"label": "Suikoden (USA) (v1.1)",
|
||||
"core_path": "/media/roms/cores/mednafen_psx_libretro.so",
|
||||
"core_name": "Sony - PlayStation (Beetle PSX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/retroarch-config/screenshots/Tactics Ogre (USA)-220620-114210.png",
|
||||
"label": "",
|
||||
"core_path": "builtin",
|
||||
"core_name": "imageviewer",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "{",
|
||||
"label": " \"version\": \"1.4\",",
|
||||
"core_path": " \"default_core_path\": \"\",",
|
||||
"core_name": " \"default_core_name\": \"\",",
|
||||
"crc32": " \"label_display_mode\": 0,",
|
||||
"db_name": " \"right_thumbnail_mode\": 0,"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "1.4",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "1.4",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
]
|
||||
}
|
||||
28
retroarch/.config/retroarch/playlists/content_favorites.lpl
Normal file
28
retroarch/.config/retroarch/playlists/content_favorites.lpl
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 0,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/pcengine/Alien Crush (USA).pce",
|
||||
"label": "Alien Crush (USA)",
|
||||
"core_path": "/media/roms/cores/mednafen_pce_libretro.so",
|
||||
"core_name": "NEC - PC Engine / SuperGrafx / CD (Beetle PCE)",
|
||||
"crc32": "",
|
||||
"db_name": "NEC - PC Engine SuperGrafx|NEC - PC Engine - TurboGrafx 16|NEC - PC Engine CD - TurboGrafx-CD"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Megaman X4 (USA) (DW0111).chd",
|
||||
"label": "Mega Man X4 (USA)",
|
||||
"core_path": "/media/roms/cores/mednafen_saturn_libretro.so",
|
||||
"core_name": "Sega - Saturn (Beetle Saturn)",
|
||||
"crc32": "T-1219H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
}
|
||||
]
|
||||
}
|
||||
457
retroarch/.config/retroarch/playlists/content_history.lpl
Normal file
457
retroarch/.config/retroarch/playlists/content_history.lpl
Normal file
@ -0,0 +1,457 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
{
|
||||
"path": "/media/roms/nes/Super Mario Bros..nes",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": "Nintendo - Nintendo Entertainment System|Nintendo - Family Computer Disk System",
|
||||
"entry_slot": 65535
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/pcengine/Alien Crush (USA).pce",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mednafen_pce_libretro.so",
|
||||
"core_name": "NEC - PC Engine / SuperGrafx / CD (Beetle PCE)",
|
||||
"crc32": "",
|
||||
"db_name": "NEC - PC Engine SuperGrafx|NEC - PC Engine - TurboGrafx 16|NEC - PC Engine CD - TurboGrafx-CD",
|
||||
"entry_slot": 65535
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/nes/Adventure Island.nes",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": "Nintendo - Nintendo Entertainment System|Nintendo - Family Computer Disk System",
|
||||
"entry_slot": 65535
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/snes/Super Bomberman 2 (U) [!].smc",
|
||||
"label": "Super Bomberman 2 (USA)",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "9C1F11E4|crc",
|
||||
"db_name": "Nintendo - Super Nintendo Entertainment System.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/atarijaguar/Cannon Fodder (World).zip#Cannon Fodder (World).j64",
|
||||
"label": "Cannon Fodder (World)",
|
||||
"core_path": "/media/roms/cores/virtualjaguar_libretro.so",
|
||||
"core_name": "Atari - Jaguar (Virtual Jaguar)",
|
||||
"crc32": "BDA405C6|crc",
|
||||
"db_name": "Atari - Jaguar.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/psx/Suikoden (USA) (v1.1).chd",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mednafen_psx_libretro.so",
|
||||
"core_name": "Sony - PlayStation (Beetle PSX)",
|
||||
"crc32": "",
|
||||
"db_name": "Sony - PlayStation",
|
||||
"entry_slot": 6
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Saturn Bomberman (USA) (DW0837).chd",
|
||||
"label": "Saturn Bomberman (USA) (1S)",
|
||||
"core_path": "/media/roms/cores/mednafen_saturn_libretro.so",
|
||||
"core_name": "Sega - Saturn (Beetle Saturn)",
|
||||
"crc32": "81070|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/snes/Super Bomberman 2 (U) [!].smc",
|
||||
"label": "Super Bomberman 2 (USA)",
|
||||
"core_path": "/media/roms/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "9C1F11E4|crc",
|
||||
"db_name": "Nintendo - Super Nintendo Entertainment System.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/nes/Legend of Zelda, The.nes",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/saturn/Megaman X4 (USA) (DW0111).chd",
|
||||
"label": "Mega Man X4 (USA)",
|
||||
"core_path": "/media/roms/cores/mednafen_saturn_libretro.so",
|
||||
"core_name": "Sega - Saturn (Beetle Saturn)",
|
||||
"crc32": "T-1219H|serial",
|
||||
"db_name": "Sega - Saturn.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/pcengine/Alien Crush (USA).pce",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mednafen_pce_libretro.so",
|
||||
"core_name": "NEC - PC Engine / SuperGrafx / CD (Beetle PCE)",
|
||||
"crc32": "",
|
||||
"db_name": "NEC - PC Engine SuperGrafx|NEC - PC Engine - TurboGrafx 16|NEC - PC Engine CD - TurboGrafx-CD"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/nes/Super Mario Bros..nes",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": "Nintendo - Nintendo Entertainment System|Nintendo - Family Computer Disk System"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/segacd/Star Wars - Rebel Assault (USA).chd",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/genesis_plus_gx_libretro.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD (Genesis Plus GX)",
|
||||
"crc32": "",
|
||||
"db_name": "Sega - Game Gear|Sega - Master System - Mark III|Sega - Mega-CD - Sega CD|Sega - Mega Drive - Genesis|Sega - PICO|Sega - SG-1000"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/neogeo/garou.zip",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/fbneo_libretro.so",
|
||||
"core_name": "Arcade (FinalBurn Neo)",
|
||||
"crc32": "",
|
||||
"db_name": "FBNeo - Arcade Games"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Disney-Pixar Toy Story 2 - Buzz Lightyear to the Rescue! (USA).chd",
|
||||
"label": "Disney-Pixar Toy Story 2 - Buzz Lightyear to the Rescue! (USA)",
|
||||
"core_path": "/media/roms/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/NAOMI (Flycast)",
|
||||
"crc32": "T-13003N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/psx/Lunar 2 - Eternal Blue Complete (Un-Working Designs).m3u",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mednafen_psx_libretro.so",
|
||||
"core_name": "Sony - PlayStation (Beetle PSX)",
|
||||
"crc32": "",
|
||||
"db_name": "Sony - PlayStation"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/n64/Aidyn Chronicles - The First Mage (U) [!].z64",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mupen64plus_next_libretro.so",
|
||||
"core_name": "Nintendo - Nintendo 64 (Mupen64Plus-Next)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Return Fire - 1995.iso",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/opera_libretro.so",
|
||||
"core_name": "The 3DO Company - 3DO (Opera)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/megadrive/X-Men 2 - Clone Wars (USA, Europe).md",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/genesis_plus_gx_libretro_android.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD (Genesis Plus GX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/snes/Wordtris (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/snes9x_libretro_android.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/psx/Lunar 2 - Eternal Blue Complete (Un-Working Designs).m3u",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/mednafen_psx_libretro_android.so",
|
||||
"core_name": "Sony - PlayStation (Beetle PSX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/gba/X-Men - The Official Game (USA).zip",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/mgba_libretro_android.so",
|
||||
"core_name": "Nintendo - Game Boy Advance (mGBA)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/snes/Kirby Super Star (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/snes9x_libretro_android.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/snes/Earthbound (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/snes9x_libretro_android.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/3E7A-C388/roms/snes/ActRaiser (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/snes9x_libretro_android.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/home/powellc/tmp/roms/nes/Super Mario Bros..nes",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/var/retroarch/config/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/nes/Super Mario Bros..nes",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/var/retroarch/config/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/pcengine/Soldier Blade (USA).pce",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/var/retroarch/config/cores/mednafen_supergrafx_libretro.so",
|
||||
"core_name": "NEC - PC Engine SuperGrafx (Beetle SuperGrafx)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gba/Banjo-Pilot (USA).zip",
|
||||
"label": "Banjo-Pilot (USA)",
|
||||
"core_path": "/home/powellc/var/retroarch/config/cores/mgba_libretro.so",
|
||||
"core_name": "Nintendo - Game Boy Advance (mGBA)",
|
||||
"crc32": "6E4030A1|crc",
|
||||
"db_name": "Nintendo - Game Boy Advance.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/nes/Batman - Return of the Joker.nes",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/var/retroarch/config/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/segacd/Sonic CD.chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/genesis_plus_gx_libretro.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD (Genesis Plus GX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/5E4B-3473/Roms/atarilynx/Gates of Zendocon, The (1989).lnx",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/mednafen_lynx_libretro_android.so",
|
||||
"core_name": "Atari - Lynx (Beetle Lynx)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/5E4B-3473/Roms/dreamcast/Crazy Taxi (US)[RDC].cdi",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/flycast_libretro_android.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/storage/5E4B-3473/Roms/gba/Bomberman Max 2 - Blue Advance (USA).zip",
|
||||
"label": "",
|
||||
"core_path": "/data/data/com.retroarch/cores/mgba_libretro_android.so",
|
||||
"core_name": "Nintendo - Game Boy Advance (mGBA)",
|
||||
"crc32": "",
|
||||
"db_name": "",
|
||||
"entry_slot": 62496
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/segacd/Sonic CD.chd",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/genesis_plus_gx_libretro.so",
|
||||
"core_name": "Sega - MS/GG/MD/CD (Genesis Plus GX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/wii/Sonic the Hedgehog 4 - Episode I (USA) (WiiWare).wad",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/dolphin_libretro.so",
|
||||
"core_name": "Nintendo - GameCube / Wii (Dolphin)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/psx/Lunar 2 - Eternal Blue Complete (Un-Working Designs) (Disc 1).chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mednafen_psx_libretro.so",
|
||||
"core_name": "Sony - PlayStation (Beetle PSX)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/KenJu.chd",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/NAOMI (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/snes/Shadowrun (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x - Current)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/gc/Mat Hoffman's Pro BMX 2 (USA).nkit.iso",
|
||||
"label": "Mat Hoffman's Pro BMX 2 (USA)",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/dolphin_libretro.so",
|
||||
"core_name": "Nintendo - GameCube / Wii (Dolphin)",
|
||||
"crc32": "DL-DOL-GMHE-USA|serial",
|
||||
"db_name": "Nintendo - GameCube.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/mame-libretro/tetris3.zip",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mame2010_libretro.so",
|
||||
"core_name": "Arcade (MAME 2010)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/mame-libretro/svg.zip",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mame2010_libretro.so",
|
||||
"core_name": "Arcade (MAME 2010)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Knights of Valour_ The Seven Spirits.chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/KenJu.chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Pier Solar and the Great Architects (USA) (Unl).chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Mat Hoffman's Pro BMX v1.000 (2001)(Activision)(NTSC)(US)[!].chd",
|
||||
"label": "Mat Hoffman's Pro BMX (USA)",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "T-13005N|serial",
|
||||
"db_name": "Sega - Dreamcast.lpl"
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/ps2/Forgotten Realms - Demon Stone (USA).iso",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/pcsx2_libretro.so",
|
||||
"core_name": "Sony - PlayStation 2 (PCSX2)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/snes/Star Ocean (English v1.0)[DeJap].sfc",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x - Current)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/snes/Shadowrun (U) [!].smc",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/snes9x_libretro.so",
|
||||
"core_name": "Nintendo - SNES / SFC (Snes9x - Current)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/dreamcast/Nakoruru - The Gift She Gave Me (English v1.0).cdi",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/flycast_libretro.so",
|
||||
"core_name": "Sega - Dreamcast/Naomi (Flycast)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/ps2/Guilty Gear Isuka (USA).iso",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/pcsx2_libretro.so",
|
||||
"core_name": "Sony - PlayStation 2 (PCSX2)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/fds/Super Mario Brothers 2 (Japan).fds",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mesen_libretro.so",
|
||||
"core_name": "Nintendo - NES / Famicom (Mesen)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/3do/Super Street Fighter II Turbo (USA).chd",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/opera_libretro.so",
|
||||
"core_name": "The 3DO Company - 3DO (Opera)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/mame-libretro/gtgt.zip",
|
||||
"label": "",
|
||||
"core_path": "/media/roms/cores/mame2010_libretro.so",
|
||||
"core_name": "Arcade (MAME 2010)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
},
|
||||
{
|
||||
"path": "/media/roms/mame-libretro/svg.zip",
|
||||
"label": "",
|
||||
"core_path": "/home/powellc/.config/retroarch/cores/mame_libretro.so",
|
||||
"core_name": "Arcade (MAME - Current)",
|
||||
"crc32": "",
|
||||
"db_name": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
{
|
||||
"version": "1.5",
|
||||
"default_core_path": "",
|
||||
"default_core_name": "",
|
||||
"label_display_mode": 0,
|
||||
"right_thumbnail_mode": 0,
|
||||
"left_thumbnail_mode": 0,
|
||||
"thumbnail_match_mode": 0,
|
||||
"sort_mode": 2,
|
||||
"items": [
|
||||
]
|
||||
}
|
||||
1241
retroarch/.config/retroarch/playlists/dreamcast.lpl
Normal file
1241
retroarch/.config/retroarch/playlists/dreamcast.lpl
Normal file
File diff suppressed because it is too large
Load Diff
3544
retroarch/.config/retroarch/retroarch.cfg
Normal file
3544
retroarch/.config/retroarch/retroarch.cfg
Normal file
File diff suppressed because it is too large
Load Diff
@ -58,6 +58,9 @@ Host bt1.unbl.ink
|
||||
Host akna.metal
|
||||
User pi
|
||||
|
||||
Host nfs.service
|
||||
User powellc
|
||||
|
||||
# Inside our network, skip strict host key checking
|
||||
Host *.metal
|
||||
User powellc
|
||||
@ -76,7 +79,7 @@ Host vrobbler.service mopidy.service penobscotbaypress.com atlas.local dns.servi
|
||||
|
||||
Host bastion.unbl.ink
|
||||
Port 33
|
||||
User root
|
||||
User powellc
|
||||
|
||||
Host *.local *.service
|
||||
IdentityFile ~/.ssh/jails
|
||||
@ -86,9 +89,13 @@ Host *.local *.service
|
||||
VerifyHostKeyDNS no
|
||||
|
||||
Host bastion.service
|
||||
User root
|
||||
User powellc
|
||||
Port 33
|
||||
|
||||
Host play.unbl.ink
|
||||
User powellc
|
||||
Port 44
|
||||
|
||||
## Jail hosts all need a jump
|
||||
#Match exec "onsubnet 192.168.40." host *.service
|
||||
# User root
|
||||
|
||||
7
systemd/.config/systemd/user/claude-save.service
Normal file
7
systemd/.config/systemd/user/claude-save.service
Normal file
@ -0,0 +1,7 @@
|
||||
[Unit]
|
||||
Description="Commit and push Claude Code session state"
|
||||
Requires=claude-save.timer
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/make -C %h/.dotfiles claude-save
|
||||
11
systemd/.config/systemd/user/claude-save.timer
Normal file
11
systemd/.config/systemd/user/claude-save.timer
Normal file
@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description="Timer for saving Claude Code session state"
|
||||
|
||||
[Timer]
|
||||
Unit=claude-save.service
|
||||
OnBootSec=5m
|
||||
OnCalendar=*:0/30
|
||||
Persistent=true
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
@ -0,0 +1 @@
|
||||
/home/powellc/.config/systemd/user/claude-save.timer
|
||||
@ -97,3 +97,10 @@ export PATH="$VOLTA_HOME/bin:$PATH"
|
||||
|
||||
export ANDROID_HOME="$HOME/android-sdk"
|
||||
export PATH="$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/platform-tools"
|
||||
|
||||
fpath+=~/.zfunc; autoload -Uz compinit; compinit
|
||||
|
||||
zstyle ':completion:*' menu select
|
||||
|
||||
# opencode
|
||||
export PATH=/home/powellc/.opencode/bin:$PATH
|
||||
|
||||
Reference in New Issue
Block a user