Wiki/wiki-rtd/docs/wiki_faq/faq-esde.md

63 lines
3.4 KiB
Markdown
Raw Normal View History

2024-02-18 15:40:21 +00:00
# FAQ: ES-DE Frontend General - Questions
<img src="../../wiki_images/logos/es-de-logo.png" width="150">
## Why can't I press the up button in menus to jump to the bottom row and vice versa?
[Source](https://gitlab.com/es-de/emulationstation-de/-/blob/master/FAQ.md#why-cant-i-press-the-up-button-in-menus-to-jump-to-the-bottom-row-and-vice-versa)
Why this does not work is that menus in ES-DE are not lists but grids.
A grid can not only contain selectable rows with text but also other features like buttons. <br>
2024-02-24 09:42:24 +00:00
For example, in one part of the interface there could just be a list of ROMs but in another there could be various button elements as in the scraping menu.
2024-02-18 15:40:21 +00:00
2024-02-24 09:42:24 +00:00
Enabling the up and down buttons to wrap around would therefore not work consistently as it would sometimes jump to the last row of the grid or to a button at random depending on the layout of the grid.
Every time it would require a different number of button presses depending on the grid layout.
2024-02-18 15:40:21 +00:00
2024-02-24 09:42:24 +00:00
This type of contextual navigation feels very weird in practice, especially when you must press the up button twice to find the underlying cause of a list in some lists but more times in others depending on the button layout.
2024-02-18 15:40:21 +00:00
The solution we opted for instead is:
- `L1` or `Page Up` Jumps up 6 rows in menus and 10 rows in gamelists.
- `R1` or `Page Down` Jumps down 6 rows in menus and 10 rows in gamelists.
- `L2` or `Home` Jumps to the top of the menu or gamelist.
- `R2` or `End` Jumps to the bottom of the menu or gamelist.
## How can I add more themes?
2024-05-10 10:33:02 +00:00
ES-DE comes with a built in Theme Downloader `UI Settings - Theme Downloader`. But you can also add themes manually in the: `~/retrodeck/ES-DE/themes` folder.
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
## Is there a list of themes?
Yes, check here: [ES-DE: Themes List](https://gitlab.com/es-de/themes/themes-list).
## How do you switch between themes inside of RetroDECK?
2024-02-24 09:42:24 +00:00
You can switch between them by opening the menu and then navigate to `UI Settings - Theme Set` to select the theme you want to use.
2024-02-18 15:40:21 +00:00
## "Why does the theme I am using not work?" or "Why does the layout look broken?" (black screen with blue text)?
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
- Please make sure you are specifically using a theme that is compatible with [ES-DE](https://www.es-de.org).
2024-02-24 09:42:24 +00:00
- If you are trying to use a theme that was built for Batocera it will not be compatible.
2024-02-18 15:40:21 +00:00
- ES-DE uses a unique theme engine so themes are not directly portable from Batocera.
See the ES-DE's Guide 📘 for more details.
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
## Why does the theme layout look squished?
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
- The Steam Deck has a screen aspect ratio of `16:10` and most themes that you will find are built for an aspect ratio of `16:9`. Depending on the theme's design this may cause the layout to appear squished when using it on the Steam Deck's display.
2024-02-24 09:42:24 +00:00
- All the included themes are built for 16:10 aspect ratio so you should not see this issue with any of them; however, if you are downloading a theme from another source there is a chance this can occur for you.
2024-02-18 15:40:21 +00:00
- There are 2 ways to fix this if it does occur: (1) see if a specific version was built for `16:10` aspect ratio and use that instead or (2) edit the theme to make it compatible with that aspect ratio.
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
## Can I manually add custom game images/videos/media for games that I can not scrape?
2024-02-24 09:42:24 +00:00
2024-02-18 15:40:21 +00:00
Yes, check the file structure over at Emulationstation DE's user guide on gitlab.
[Manually copying game media files](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#manually-copying-game-media-files)
2024-02-24 09:42:24 +00:00