Scraping from screenshot - leonkasovan/RG353P GitHub Wiki
Hotkey to screenshot : (F)+Y
Screenshot will be saved in /userdata/screenshots
Source: https://retropie.org.uk/docs/Take-and-Scrape-Your-Own-Screenshots/
retroarch.cfg
There are two conditions related to RetroArch configuration in order to make it works:
auto_screenshot_filename = "false"
screenshot_directory = "/some/path/to/screenshots"
/path/to/runcommand-onstart.sh; python /usr/lib/python2.7/site-packages/configgen/emulatorlauncher.pyc %CONTROLLERSCONFIG% -system %SYSTEM% -rom %ROM% -emulator %EMULATOR% -core %CORE% -ratio %RATIO%; /path/to/runcommand-onend.sh
NOT USED
edit: /usr/bin/anbernic-screenshot
#!/bin/sh
mkdir -p /userdata/screenshots || exit 1
FILE=/userdata/screenshots/screenshot-$(date +%Y-%m-%d_%Hh%M%S).pbm
fbdump > "${FILE}" 2>/dev/null || exit 1
echo "${FILE}"