EmulationStation Themes
A selection of Batocera-compatible themes can be installed through the menu UPDATES & DOWNLOADS → THEMES. This gives you the option to select a and set a new theme for your system.
Compatibility issues for themes are not unheard of, so be sure to make sure there are no reported issues on the theme you’re applying.
Starting with Batocera.linux 5.24, most EmulationStation for RetroPie and Recalbox are compatible. But some features are unique to Batocera and require a theme that has been designed for Batocera.
This menu gives you a list of themes available like:
In the screenshot above you can see which new themes can be downloaded, and which themes are available for an upgrade, based on their icons.
BATOCERA Themes List
Theme | Author | System List View | ROM List View | ROM Grid View |
---|---|---|---|---|
Carbon (default) | fabricecaruso | ![]() | ![]() | ![]() |
Alekfull Bello-Cobalto | Alekfull (mod. by TMCTV) | ![]() | ![]() | ![]() |
Art-Book | anthonycaccese | ![]() | ![]() | ![]() |
Ckau-Book | CkauNui | ![]() | ![]() | ![]() |
DragonBall TMCTV | TMCTV | ![]() | ![]() | ![]() |
EpicNoir | c64-dev | ![]() | ![]() | ![]() |
Flat-Color | Sorken | ![]() | ![]() | ![]() |
Flat-White | Sorken | ![]() | ![]() | ![]() |
Fundamental | Grila | ![]() | ![]() | ![]() |
GPi-Fusion-Slice | Unknown Artist | Seems broken! Please check! | ||
GPi-MiniJawn | pacdude | ![]() | ![]() | ![]() |
GPi-Next-Level | Unkown Artist | ![]() | ![]() | ![]() |
GPi-Next-Pixel | SamYStudiO | ![]() | ![]() | ![]() |
GPi-SuperRetroboy | KALEL1981 | ![]() | ![]() | ![]() |
GPi-TFT | anthonycaccese (mod. by michielkoning | ![]() | ![]() | ![]() |
Hypertocera-Arcade-TMCTV | TMCTV | ![]() | ![]() | ![]() |
Hypertocera-TMCTV | TMCTV | ![]() | ![]() | ![]() |
Minimal | lilbud (mod. by fabricecaruso) | ![]() | ![]() | ![]() |
Next-Level-Remix | ordovice | ![]() | ![]() | ![]() |
Next-Level-v4-TMCTV | TMCTV | ![]() | ![]() | ![]() |
OmegaDrive | Arcanthur | ![]() | ![]() | ![]() |
RetroFix | 20goto10 | ![]() | ![]() | ![]() |
RVGM-BT | Darknior | ![]() | ![]() | ![]() |
SegaCD Mini | Arcanthur | ![]() | ![]() | ![]() |
Simple | nilsbyte | ![]() | ![]() | ![]() |
Star-Wars-TMCTV | TMCTV | ![]() | ![]() | ![]() |
Tron-TMCTV | TMCTV | ![]() | ![]() | ![]() |
Videogame | jdorigao | ![]() | ![]() | ![]() |
Zoid | litzoZoid | ![]() | ![]() | ![]() |
BATOCERA Themes - Serverlist
Art-book | https://github.com/anthonycaccese/es-theme-art-book |
Batocera-Club | https://github.com/Genetik57/es-theme-batocera-club |
Ckau-Book | https://github.com/CkauNui/ckau-book |
DragonBall-TMCTV | https://github.com/Genetik57/es-theme-dragonball-TMCTV |
EpicNoir | https://github.com/c64-dev/es-epicnoir |
Es-theme-forever | https://github.com/lehcimcramtrebor/es-theme-forever |
Flat-Color | https://github.com/Genetik57/es-theme-flat-color |
Flat-White | https://github.com/Genetik57/es-theme-flat-white |
Fundamental | https://github.com/jdorigao/es-theme-fundamental |
GPi-Fusion-Slice | https://github.com/Genetik57/es-theme-gpi-fusion-slice |
GPi-MiniJawn | https://github.com/Genetik57/es-theme-gpi-minijawn |
GPi-Next-Level | https://github.com/Genetik57/es-theme-gpi-next-level |
GPi-Next-Pixel | https://github.com/SamYStudiO/es-theme-next-pixel |
GPi-Super-Retroboy | https://github.com/KALEL1981/es-theme-Super-Retroboy |
GPi-TFT | https://github.com/Genetik57/es-theme-gpi-tft |
Hypertocera-TMCTV | https://github.com/Genetik57/es-theme-hypertocera-TMCTV |
Hypertocera-arcade-TMCTV | https://github.com/Genetik57/es-theme-hypertocera-arcade-TMCTV |
Minimal | https://github.com/fabricecaruso/es-theme-minimal |
Next-Level-Remix | https://github.com/ordovice/es-theme-next-level-remix |
OmegaDrive | https://github.com/Arcanthur/OmegaDrive |
RetroFix | https://github.com/20GotoTen/es-theme-retrofix |
RVGM | https://github.com/Darknior/RVGM-BT-Theme |
Sega-CD-Mini | https://github.com/Arcanthur/Sega-CD-Mini |
Simple | https://github.com/RetroPie/es-theme-simple |
Star-Wars-TMCTV | https://github.com/Genetik57/es-theme-starwars-TMCTV |
Tron-TMCTV | https://github.com/Genetik57/es-theme-tron-TMCTV |
VideoGame | https://github.com/jdorigao/es-theme-videogame |
Zoid | https://github.com/RetroPie/es-theme-zoid |
Script for Screenshots
This script works for Raspberr Pi only.
- pishoot.sh
#!/bin/bash res_height=1080 res_width=1920 saveplace="$HOME" compression=6 #level from 0 to 9 mkdir -p "$saveplace" read -p "Enter name of theme now: " theme_name [[ -z $theme_name ]] && echo "Not nice ..." && exit theme_name="${theme_name,,}" #force lowercase cat << _EOF_ We create 3 files now 1. ${theme_name}_system -> For main system view 2. ${theme_name}_list -> For the ROMs list menu 3. ${theme_name}_grid -> For the ROMs grid view These Pictures will be saved into directory $saveplace Select the view for ES (system, list and grid) So press ENTER to create the pictures. _EOF_ for i in system list grid; do read -p "If you are ready then press ENTER for screenshot: ${theme_name}_$i.png" raspi2png -p "${saveplace}/${theme_name}_$i.png" -d 1 -h $res_height -w $res_width -c $compression done
BATOCERA Themes - removed
removed 24.04.2020 | Alekfull | [[https://github.com/jdorigao/es-theme-alekfull|fagnerpc (mod. by jdorigao)]] | {{ :themes:alekfull_system.png?300 |}} | {{ :themes:alekfull_list.png?300 |}} | {{ :themes:alekfull_grid.png?300 |}} |
- themes.txt
- Last modified: 3 months ago
- by genetik57