diff --git a/.github/workflows/cooker-selfhosted.yml b/.github/workflows/cooker-selfhosted.yml
index fc96a040..1171a8b7 100644
--- a/.github/workflows/cooker-selfhosted.yml
+++ b/.github/workflows/cooker-selfhosted.yml
@@ -4,6 +4,7 @@ on:
push:
branches:
- cooker*
+ - feat*
paths:
- '.github/workflows/**'
- 'automation_tools/**'
@@ -57,8 +58,8 @@ jobs:
- name: "Adding flatpak portal for automated updates (cooker only)"
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/cooker_flatpak_portal_add.sh"
- # - name: "Updating release notes in appdata"
- # run: "automation_tools/appdata_management.sh"
+ - name: "Updating release notes in appdata"
+ run: "automation_tools/appdata_management.sh"
- name: "[DEBUG] Outputting manifest"
run: cat net.retrodeck.retrodeck.yml
@@ -69,6 +70,9 @@ jobs:
continue-on-error: true
# Sometimes flatpak download fails, in this case it tries a second time
+ - name: Run pre-build automation tasks (retry)
+ if: steps.flatpak-download.outcome == 'failure'
+ run : "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
- name: "Build flatpak: download only (retry)"
if: steps.flatpak-download.outcome == 'failure'
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
@@ -101,13 +105,27 @@ jobs:
id: commits
continue-on-error: true
+ - name: Get branch name
+ id: branch_name
+ run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
+
+ # if it's a feature branch it will not marked as "latest" cooker version
+ - name: "Set makeLatest (cooker only)"
+ run: |
+ if [[ "$BRANCH_NAME" == 'feat/'* ]]; then
+ echo "MAKE_LATEST=false" >> $GITHUB_ENV
+ else
+ echo "MAKE_LATEST=true" >> $GITHUB_ENV
+ fi
+
- name: Publish the flatpak in a new cooker release
uses: ncipollo/release-action@v1
with:
- tag: "${{ env.GITHUB_REF_SLUG }}-${{ env.buildid }}"
+ tag: "${{env.BRANCH_NAME}}-${{ env.buildid }}"
body: |
# Release Notes (Cooker)
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
+ On branch [${{env.BRANCH_NAME}}](https://github.com/XargonWan/RetroDECK/tree/${{env.BRANCH_NAME}}).
## Commits since last release
${{ steps.commits.outputs.commits }}
@@ -119,7 +137,7 @@ jobs:
artifacts: "RetroDECK-cooker.flatpak,RetroDECK-Artifact.tar.gz"
allowUpdates: true
- makeLatest: true
+ makeLatest: ${{env.MAKE_LATEST}} # if it's a feat branch is not considered the latest build
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
repo: RetroDECK-cooker
continue-on-error: true
@@ -131,3 +149,4 @@ jobs:
name: retrodeck-flatpak
path: RetroDECK-cooker.flatpak
continue-on-error: true
+
diff --git a/.readthedocs.yaml b/.readthedocs.yaml
index 5bf1fa68..a55683e6 100644
--- a/.readthedocs.yaml
+++ b/.readthedocs.yaml
@@ -9,14 +9,11 @@ build:
os: ubuntu-22.04
tools:
python: "3.11"
- # You can also specify other tool versions:
- # nodejs: "19"
- # rust: "1.64"
- # golang: "1.19"
# Build documentation in the "docs/" directory with Sphinx
-sphinx:
- configuration: wiki-rtd/conf.py
+mkdocs:
+ configuration: wiki-rtd/mkdocs.yml
+ fail_on_warning: false
# Optionally build your docs in additional formats such as PDF and ePub
formats:
@@ -27,5 +24,5 @@ formats:
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
- install:
+ install:
- requirements: wiki-rtd/requirements.txt
\ No newline at end of file
diff --git a/automation_tools/automation_task_list.cfg b/automation_tools/automation_task_list.cfg
index eece6367..8301ec03 100644
--- a/automation_tools/automation_task_list.cfg
+++ b/automation_tools/automation_task_list.cfg
@@ -1,7 +1,6 @@
# The proper format for this file is
# ACTION^PLACEHOLDERTEXT^URL^REPO(Optional)
# hash^DOOMSHAPLACEHOLDER^https://buildbot.libretro.com/assets/cores/DOOM/Doom%20%28Shareware%29.zip
-hash^VITASHAPLACEHOLDER^https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip
hash^DUCKSTATIONSHAPLACEHOLDER^https://github.com/stenzek/duckstation/releases/download/preview/DuckStation-x64.AppImage
hash^SAMEDUCKSHAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/latest/sameduck_libretro.so.zip
hash^PPSSPPBIOSHASHPLACEHOLDER^https://github.com/hrydgard/ppsspp/archive/refs/heads/master.zip
diff --git a/automation_tools/flatpak_build_download_only.sh b/automation_tools/flatpak_build_download_only.sh
index 009db9de..122b244f 100755
--- a/automation_tools/flatpak_build_download_only.sh
+++ b/automation_tools/flatpak_build_download_only.sh
@@ -4,7 +4,7 @@
git config --global protocol.file.allow always
-if [ "${GITHUB_REF##*/}" = "main" ]; then
+if [[ "${GITHUB_REF##*/}" == "main" ]]; then
BUNDLE_NAME="RetroDECK.flatpak"
FOLDER=retrodeck-flatpak-cooker
else
@@ -12,13 +12,12 @@ else
FOLDER=retrodeck-flatpak-cooker
fi
-mkdir -vp ${GITHUB_WORKSPACE}/local
-mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
+mkdir -vp "${GITHUB_WORKSPACE}"/{local,retrodeck-flatpak-cooker}
flatpak-builder --user --force-clean \
--install-deps-from=flathub \
--install-deps-from=flathub-beta \
- --repo=${GITHUB_WORKSPACE}/local \
+ --repo="${GITHUB_WORKSPACE}/local" \
--download-only \
- ${GITHUB_WORKSPACE}/"$FOLDER" \
+ "${GITHUB_WORKSPACE}/${FOLDER}" \
net.retrodeck.retrodeck.yml
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_generic.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_generic.vdf
new file mode 100644
index 00000000..4f5e4dd8
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_generic.vdf
@@ -0,0 +1,1154 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "84"
+ "title" "RetroDECK: Official Layout - Generic"
+ "description" "RetroDECK: Generic"
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_generic"
+ "controller_caps" "1590271"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-1069299824"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "17"
+ "mode" "joystick_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_joystick" "2"
+ }
+ }
+ "group"
+ {
+ "id" "18"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, RetroDECK - Set, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button select, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "10" "switch active"
+ "11" "button_diamond active"
+ "12" "joystick inactive"
+ "18" "joystick active"
+ "13" "left_trigger active"
+ "14" "right_trigger active"
+ "15" "right_joystick inactive"
+ "17" "right_joystick active"
+ "16" "dpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/RetroDECK_controller_config.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_neptune.vdf
similarity index 100%
rename from emu-configs/defaults/retrodeck/RetroDECK_controller_config.vdf
rename to emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_neptune.vdf
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps3.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps3.vdf
new file mode 100644
index 00000000..6cd8052f
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps3.vdf
@@ -0,0 +1,1154 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "84"
+ "title" "RetroDECK: Official Layout - PS3"
+ "description" "RetroDECK: PS3"
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_ps3"
+ "controller_caps" "1590271"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-1069299824"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "17"
+ "mode" "joystick_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_joystick" "2"
+ }
+ }
+ "group"
+ {
+ "id" "18"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, RetroDECK - Set, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button select, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "10" "switch active"
+ "11" "button_diamond active"
+ "12" "joystick inactive"
+ "18" "joystick active"
+ "13" "left_trigger active"
+ "14" "right_trigger active"
+ "15" "right_joystick inactive"
+ "17" "right_joystick active"
+ "16" "dpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps4.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps4.vdf
new file mode 100644
index 00000000..79e44094
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps4.vdf
@@ -0,0 +1,1397 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "67"
+ "title" "RetroDECK: Official Layout - PS4"
+ "description" "RetroDECK: PS4"
+ "creator" ""
+ "progenitor" ""
+ "url" "f"
+ "export_type" ""
+ "controller_type" "controller_ps4"
+ "controller_caps" "35085311"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-640753472"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "single_button"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button START, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "single_button"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "19"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press A, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press B, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "20"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "21"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "22"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "23"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "24"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "25"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "26"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "29"
+ "mode" "joystick_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_joystick" "2"
+ }
+ }
+ "group"
+ {
+ "id" "30"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Esacpe, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "33"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button MIDDLE, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "35"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button MIDDLE, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "18"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, , "
+ }
+ }
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "1" "left_trackpad inactive"
+ "11" "left_trackpad inactive"
+ "15" "left_trackpad active"
+ "2" "right_trackpad inactive"
+ "6" "right_trackpad inactive"
+ "10" "right_trackpad inactive"
+ "14" "right_trackpad active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ "35" "center_trackpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "18" "switch active"
+ "19" "button_diamond active"
+ "20" "left_trackpad active"
+ "21" "right_trackpad active"
+ "22" "joystick inactive"
+ "30" "joystick active"
+ "23" "left_trigger active"
+ "24" "right_trigger active"
+ "25" "right_joystick inactive"
+ "29" "right_joystick active"
+ "26" "dpad active"
+ "33" "center_trackpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps5.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps5.vdf
new file mode 100644
index 00000000..4aa48205
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_ps5.vdf
@@ -0,0 +1,1429 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "71"
+ "title" "RetroDECK: Official Layout - PS5"
+ "description" "RetroDECK: PS5"
+ "creator" ""
+ "progenitor" ""
+ "url" "f"
+ "export_type" ""
+ "controller_type" "controller_ps5"
+ "controller_caps" "43473919"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-636502528"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "single_button"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button START, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "single_button"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "25"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "26"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "30"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "31"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "32"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "33"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, Swap Screens, , "
+ "binding" "controller_action empty_sub_command, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "34"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "35"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "36"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "37"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "40"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button MIDDLE, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "41"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button MIDDLE, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "42"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "43"
+ "mode" "joystick_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_joystick" "2"
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button select, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action set_led 255 0 0 100 100 2, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "29"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, , "
+ }
+ }
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action set_led 255 0 0 100 100 2, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "1" "left_trackpad inactive"
+ "11" "left_trackpad inactive"
+ "26" "left_trackpad active"
+ "2" "right_trackpad inactive"
+ "6" "right_trackpad inactive"
+ "10" "right_trackpad inactive"
+ "25" "right_trackpad active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ "41" "center_trackpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "29" "switch active"
+ "30" "button_diamond active"
+ "31" "left_trackpad active"
+ "32" "right_trackpad active"
+ "33" "joystick inactive"
+ "42" "joystick active"
+ "34" "left_trigger active"
+ "35" "right_trigger active"
+ "36" "right_joystick inactive"
+ "43" "right_joystick active"
+ "37" "dpad active"
+ "40" "center_trackpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamcontroller_gordon.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamcontroller_gordon.vdf
new file mode 100644
index 00000000..da304181
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_steamcontroller_gordon.vdf
@@ -0,0 +1,1069 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "60"
+ "title" "RetroDECK: Official Layout - Steam Controller"
+ "description" "RetroDECK: Steam Controller"
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_steamcontroller_gordon"
+ "controller_caps" "2179063"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-952722512"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "0"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "0"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "0"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "0"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "0"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press KEYPAD_DASH, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press KEYPAD_PLUS, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "19"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "20"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "23"
+ "mode" "absolute_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ }
+ }
+ "group"
+ {
+ "id" "25"
+ "mode" "mouse_joystick"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "26"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" "#Description"
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button select, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "1" "left_trackpad active"
+ "2" "right_trackpad inactive"
+ "6" "right_trackpad inactive"
+ "19" "right_trackpad inactive"
+ "25" "right_trackpad active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "23" "gyro inactive"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "10" "switch active"
+ "11" "button_diamond active"
+ "12" "left_trackpad active"
+ "13" "right_trackpad inactive"
+ "20" "right_trackpad active"
+ "14" "joystick inactive"
+ "26" "joystick active"
+ "15" "left_trigger active"
+ "16" "right_trigger active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_switchpro.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_switchpro.vdf
new file mode 100644
index 00000000..62bcdd2f
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_switchpro.vdf
@@ -0,0 +1,1180 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "72"
+ "title" "RetroDECK: Official Layout - Switch Pro"
+ "description" "RetroDECK: Switch Pro"
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_switch_pro"
+ "controller_caps" "68699135"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-643537072"
+ "actions"
+{
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "17"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "19"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RETURN, Enter, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ }
+ }
+ "group"
+ {
+ "id" "20"
+ "mode" "joystick_mouse"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "mouse_button LEFT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_joystick" "2"
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action SCREENSHOT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press RIGHT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action SCREENSHOT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "11" "switch active"
+ "12" "button_diamond active"
+ "13" "joystick inactive"
+ "19" "joystick active"
+ "14" "left_trigger active"
+ "15" "right_trigger active"
+ "16" "right_joystick inactive"
+ "20" "right_joystick active"
+ "17" "dpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xbox360.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xbox360.vdf
new file mode 100755
index 00000000..7c0904d3
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xbox360.vdf
@@ -0,0 +1,1046 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "84"
+ "title" "RetroDECK: Official Layout - XBOX360"
+ "description" "RetroDECK: XBOX360"
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_xbox360"
+ "controller_caps" "1590271"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-1069299824"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "localization"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, RetroDECK - Set, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button select, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "10" "switch active"
+ "11" "button_diamond active"
+ "12" "joystick active"
+ "13" "left_trigger active"
+ "14" "right_trigger active"
+ "15" "right_joystick active"
+ "16" "dpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xboxone.vdf b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xboxone.vdf
new file mode 100644
index 00000000..855b2312
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/controller_configs/RetroDECK_controller_xboxone.vdf
@@ -0,0 +1,1142 @@
+"controller_mappings"
+{
+ "version" "3"
+ "revision" "79"
+ "title" "RetroDECK: Official Layout - Xbox One/S/X"
+ "description" ""
+ "creator" ""
+ "progenitor" ""
+ "url" ""
+ "export_type" ""
+ "controller_type" "controller_xboxone"
+ "controller_caps" "1590271"
+ "major_revision" "0"
+ "minor_revision" "0"
+ "Timestamp" "-5320"
+ "actions"
+ {
+ "Default"
+ {
+ "title" "RetroDECK - Set"
+ "legacy_set" "1"
+ }
+ "Preset_1000001"
+ {
+ "title" "Global Hotkeys - Set"
+ "legacy_set" "1"
+ }
+ }
+ "action_layers"
+ {
+ }
+ "localization"
+ {
+ }
+ "group"
+ {
+ "id" "0"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button A, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button B, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button X, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button Y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "1"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_up, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_down, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_right, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button dpad_left, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "2"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "3"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "4"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "5"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button TRIGGER_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "6"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "8"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button JOYSTICK_RIGHT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "9"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_UP, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_DOWN, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_RIGHT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button DPAD_LEFT, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "11"
+ "mode" "four_buttons"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_a"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Pause / Resume, , "
+ "binding" "key_press P, Pause / Resume, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_b"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Take Screenshot, , "
+ "binding" "key_press X, Take Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_x"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fullscreen Toggle, , "
+ "binding" "key_press RETURN, Fullscreen Toggle, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_y"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Open Menu, , "
+ "binding" "key_press M, Open Menu, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "12"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Swap Screens, , "
+ "binding" "key_press TAB, Swap Screens, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "13"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Rewind, , "
+ "binding" "key_press KEYPAD_DASH, Rewind, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "1"
+ }
+ }
+ "group"
+ {
+ "id" "14"
+ "mode" "trigger"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Fast forward, , "
+ "binding" "key_press KEYPAD_PLUS, Fast forward, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "2"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "output_trigger" "2"
+ }
+ }
+ "group"
+ {
+ "id" "15"
+ "mode" "joystick_move"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "click"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press ESCAPE, Escape, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "16"
+ "mode" "dpad"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "dpad_north"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Increase Emulation Speed, , "
+ "binding" "key_press 1, Increase Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_south"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Decrease Emulation Speed, , "
+ "binding" "key_press 2, Decrease Emulation Speed, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_east"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Next State Slot, , "
+ "binding" "key_press K, Next State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "dpad_west"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Previous State Slot, , "
+ "binding" "key_press J, Previous State Slot, , "
+ }
+ "settings"
+ {
+ "haptic_intensity" "1"
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ "settings"
+ {
+ "requires_click" "0"
+ "haptic_intensity_override" "0"
+ }
+ }
+ "group"
+ {
+ "id" "7"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button start, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 2 0 1, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_left, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button shoulder_right, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left_upper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right_upper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button b, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action SCREENSHOT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "group"
+ {
+ "id" "10"
+ "mode" "switches"
+ "name" ""
+ "description" ""
+ "inputs"
+ {
+ "button_escape"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Quit Emulator, , "
+ "binding" "key_press Q, Quit Emulator, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_menu"
+ {
+ "activators"
+ {
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "controller_action CHANGE_PRESET 1 0 1, , "
+ }
+ }
+ "release"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button SELECT, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "left_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Load State, , "
+ "binding" "key_press A, Load State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "right_bumper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "key_press LEFT_CONTROL, Save State, , "
+ "binding" "key_press S, Save State, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button y, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button a, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_left_upper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button x, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_back_right_upper"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "xinput_button b, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ "button_capture"
+ {
+ "activators"
+ {
+ "Full_Press"
+ {
+ "bindings"
+ {
+ "binding" "controller_action SCREENSHOT, Take Steam Screenshot, , "
+ }
+ }
+ }
+ "disabled_activators"
+ {
+ }
+ }
+ }
+ }
+ "preset"
+ {
+ "id" "0"
+ "name" "Default"
+ "group_source_bindings"
+ {
+ "7" "switch active"
+ "0" "button_diamond active"
+ "3" "joystick active"
+ "4" "left_trigger active"
+ "5" "right_trigger active"
+ "8" "right_joystick active"
+ "9" "dpad active"
+ }
+ }
+ "preset"
+ {
+ "id" "1"
+ "name" "Preset_1000001"
+ "group_source_bindings"
+ {
+ "10" "switch active"
+ "11" "button_diamond active"
+ "12" "joystick active"
+ "13" "left_trigger active"
+ "14" "right_trigger active"
+ "15" "right_joystick active"
+ "16" "dpad active"
+ }
+ }
+ "settings"
+ {
+ "left_trackpad_mode" "0"
+ "right_trackpad_mode" "0"
+ }
+}
diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-custom-emulators.txt b/emu-configs/defaults/retrodeck/helper_files/how-to-install-custom-emulators.txt
new file mode 100644
index 00000000..2c35cf4a
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/helper_files/how-to-install-custom-emulators.txt
@@ -0,0 +1,16 @@
+There is the possibility to provide custom emutlators provided by the user.
+
+At the moment the only one available is Yuzu.
+Place your custom Yuzu files (AppImage and such) in the custom/yuzu folder without any other subfolders, like in the example:
+retrodeck/customs/yuzu/yuzu*.AppImage
+
+WARNINGS on custom emulators:
+- Custom emulators are self managed: means that RetroDECK Team is not supporting nor troubleshooting them.
+- Custom emulators could potentially break other included emulators configs: use them at your own risk.
+- Remember to make the binary executable, otherwise they won't be launched.
+- Hotkeys might not be working if not configured by the users.
+
+Related wiki article can be found here:
+---
+
+The RetroDECK Team
diff --git a/emu-configs/defaults/retrodeck/helper_files/how-to-install-psvita-games.txt b/emu-configs/defaults/retrodeck/helper_files/how-to-install-psvita-games.txt
new file mode 100644
index 00000000..aae12260
--- /dev/null
+++ b/emu-configs/defaults/retrodeck/helper_files/how-to-install-psvita-games.txt
@@ -0,0 +1,19 @@
+Please note that the PSVita support is still experimental, and for the way Vita3K is working the automation is limited.
+In order to install a PSVita games is needed to:
+
+- Install a game opening the Vita3K emulator via Configurator, the supported formats are pkg, zip, vpk.
+- Upon installation the zRIF may be asked, it's different for each game, you can find it via web search.
+- Install DLCs and patches in the same way.
+- Create an empty file in roms/psvita/gamename.psvita, please mind the .psvita extension. For example: roms/psvita/WipEout 2048 (EU).psvita.
+- Edit the empty file adding the game Title ID (more below).
+- The game should appear in the game list after RetroDECK is re-opened.
+
+How to find a title ID
+It can be found inside the Vita3K GUI in the Title ID column, or found via web search.
+For example the game WipEout 2048 (EU) has an ID that is PCSF00007.
+So simply add PCSF00007 to the WipEout 2048 (EU).psvita file and the setup for this game is complete.
+
+Related wiki article can be found here:
+--
+
+The RetroDECK Team
\ No newline at end of file
diff --git a/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg b/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg
index aaa8ad51..8a3b9744 100644
--- a/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg
+++ b/emu-configs/defaults/retrodeck/reference_lists/helper_files_list.cfg
@@ -16,3 +16,9 @@ how-to-install-PCSX2-textures.txt^$texture_packs_folder/PCSX2
how-to-install-Mupen64Plus-textures.txt^$texture_packs_folder/RetroArch-Mupen64Plus/cache
how-to-install-Mupen64Plus-textures.txt^$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture
how-to-install-Duckstation-textures.txt^$texture_packs_folder/Duckstation
+
+# customs
+how-to-install-custom-emulators.txt^$rdhome/customs
+
+# emulators
+how-to-install-psvita-games.txt^$roms_folder/psvita
diff --git a/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg b/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg
index 94bf763a..f324a56d 100644
--- a/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg
+++ b/emu-configs/defaults/retrodeck/reference_lists/pretty_system_names.cfg
@@ -12,5 +12,6 @@ ppsspp^PPSSPP (Sony PSP Standalone Emulator)
primehack^Primehack (Metroid Prime Standalone Emulator)
psx_ra^Sony Playstation (RetroArch Core)
retroarch^RetroArch (Multi-emulator Frontend)
+ryujinx^Ryujinx (Nintendo Switch Standalone Emulator)
snes^Nintendo Super Nintendo
yuzu^Yuzu (Nintendo Switch Standalone Emulator)
diff --git a/emu-configs/ryujinx/Config.json b/emu-configs/ryujinx/Config.json
index 15cbf4e2..e58b6ead 100644
--- a/emu-configs/ryujinx/Config.json
+++ b/emu-configs/ryujinx/Config.json
@@ -1,14 +1,17 @@
{
- "version": 42,
+ "version": 48,
"enable_file_log": true,
"backend_threading": "Auto",
"res_scale": 1,
"res_scale_custom": 1,
"max_anisotropy": -1,
"aspect_ratio": "Fixed16x9",
+ "anti_aliasing": "None",
+ "scaling_filter": "Bilinear",
+ "scaling_filter_level": 80,
"graphics_shaders_dump_path": "",
"logging_enable_debug": false,
- "logging_enable_stub": true,
+ "logging_enable_stub": false,
"logging_enable_info": true,
"logging_enable_warn": true,
"logging_enable_error": true,
@@ -21,20 +24,21 @@
"system_region": "Europe",
"system_time_zone": "UTC",
"system_time_offset": 0,
- "docked_mode": true,
+ "docked_mode": false,
"enable_discord_integration": true,
- "check_updates_on_start": true,
- "show_confirm_exit": true,
- "hide_cursor_on_idle": false,
+ "check_updates_on_start": false,
+ "show_confirm_exit": false,
+ "hide_cursor": 2,
"enable_vsync": true,
"enable_shader_cache": true,
"enable_texture_recompression": false,
"enable_macro_hle": true,
+ "enable_color_space_passthrough": false,
"enable_ptc": true,
"enable_internet_access": false,
"enable_fs_integrity_checks": true,
"fs_global_access_log_mode": 0,
- "audio_backend": "SDL2",
+ "audio_backend": "OpenAl",
"audio_volume": 1,
"memory_manager_mode": "HostMappedUnsafe",
"expand_ram": false,
@@ -58,6 +62,21 @@
"game_dirs": [
"RETRODECKHOMEDIR/roms/switch"
],
+ "shown_file_types": {
+ "nsp": true,
+ "pfs0": true,
+ "xci": true,
+ "nca": true,
+ "nro": true,
+ "nso": true
+ },
+ "window_startup": {
+ "window_size_width": 1280,
+ "window_size_height": 800,
+ "window_position_x": 0,
+ "window_position_y": 0,
+ "window_maximized": true
+ },
"language_code": "en_US",
"enable_custom_theme": false,
"custom_theme_path": "",
@@ -67,12 +86,12 @@
"grid_size": 2,
"application_sort": 0,
"is_ascending_order": true,
- "start_fullscreen": false,
+ "start_fullscreen": true,
"show_console": true,
"enable_keyboard": false,
"enable_mouse": false,
"hotkeys": {
- "toggle_vsync": "Tab",
+ "toggle_vsync": "F1",
"screenshot": "F8",
"show_ui": "F4",
"pause": "F5",
@@ -104,12 +123,12 @@
"deadzone_right": 0,
"range_left": 1,
"range_right": 1,
- "trigger_threshold": 0,
+ "trigger_threshold": 0.5,
"motion": {
"motion_backend": "GamepadDriver",
"sensitivity": 100,
"gyro_deadzone": 1,
- "enable_motion": false
+ "enable_motion": true
},
"rumble": {
"strong_rumble": 1,
@@ -133,18 +152,20 @@
"button_zr": "RightTrigger",
"button_sl": "Unbound",
"button_sr": "Unbound",
- "button_x": "X",
+ "button_x": "Y",
"button_b": "A",
- "button_y": "Y",
+ "button_y": "X",
"button_a": "B"
},
"version": 1,
"backend": "GamepadSDL2",
"id": "0-f6790003-28de-0000-ff11-000001000000",
- "controller_type": "JoyconPair",
- "player_index": "Player1"
+ "controller_type": "Handheld",
+ "player_index": "Handheld"
}
],
"graphics_backend": "Vulkan",
- "preferred_gpu": "0x1002_0x163F"
-}
\ No newline at end of file
+ "preferred_gpu": "0x1002_0x163F",
+ "multiplayer_lan_interface_id": "0",
+ "use_hypervisor": true
+}
diff --git a/emu-configs/vita3k/config.yml b/emu-configs/vita3k/config.yml
new file mode 100644
index 00000000..6e1b12dd
--- /dev/null
+++ b/emu-configs/vita3k/config.yml
@@ -0,0 +1,121 @@
+---
+initial-setup: true
+gdbstub: false
+log-active-shaders: false
+log-uniforms: false
+log-compat-warn: false
+validation-layer: true
+pstv-mode: false
+show-mode: false
+demo-mode: false
+show-gui: false
+show-info-bar: false
+apps-list-grid: false
+display-system-apps: true
+stretch_the_display_area: false
+show-live-area-screen: true
+icon-size: 64
+archive-log: false
+backend-renderer: OpenGL
+gpu-idx: 0
+high-accuracy: true
+resolution-multiplier: 1
+disable-surface-sync: true
+screen-filter: Bilinear
+v-sync: true
+anisotropic-filtering: 1
+texture-cache: true
+show-compile-shaders: true
+hashless-texture-cache: false
+boot-apps-full-screen: true
+audio-backend: SDL
+ngs-enable: true
+sys-button: 1
+sys-lang: 1
+sys-date-format: 2
+sys-time-format: 0
+cpu-pool-size: 10
+modules-mode: 0
+delay-background: 4
+delay-start: 10
+background-alpha: 0.300000012
+log-level: 0
+cpu-backend: Dynarmic
+cpu-opt: true
+pref-path: RETRODECKHOMEDIR/bios/Vita3K/Vita3K/
+discord-rich-presence: true
+wait-for-debugger: false
+color-surface-debug: false
+show-touchpad-cursor: true
+performance-overlay: false
+perfomance-overlay-detail: 0
+perfomance-overlay-position: 0
+keyboard-button-select: 229
+keyboard-button-start: 40
+keyboard-button-up: 82
+keyboard-button-right: 79
+keyboard-button-down: 81
+keyboard-button-left: 80
+keyboard-button-l1: 20
+keyboard-button-r1: 8
+keyboard-button-l2: 24
+keyboard-button-r2: 18
+keyboard-button-l3: 9
+keyboard-button-r3: 11
+keyboard-button-triangle: 25
+keyboard-button-circle: 6
+keyboard-button-cross: 27
+keyboard-button-square: 29
+keyboard-leftstick-left: 4
+keyboard-leftstick-right: 7
+keyboard-leftstick-up: 26
+keyboard-leftstick-down: 22
+keyboard-rightstick-left: 13
+keyboard-rightstick-right: 15
+keyboard-rightstick-up: 12
+keyboard-rightstick-down: 14
+keyboard-button-psbutton: 19
+keyboard-gui-toggle-gui: 10
+keyboard-gui-fullscreen: 68
+keyboard-gui-toggle-touch: 23
+user-id: 00
+user-auto-connect: true
+dump-textures: false
+display-info-message: true
+show-welcome: false
+asia-font-support: false
+shader-cache: true
+spirv-shader: false
+current-ime-lang: 4
+psn-status: 0
+http-enable: true
+http-timeout-attempts: 50
+http-timeout-sleep-ms: 100
+http-read-end-attempts: 10
+http-read-end-sleep-ms: 250
+tracy-primitive-impl: false
+controller-binds:
+ - 0
+ - 1
+ - 2
+ - 3
+ - 4
+ - 5
+ - 6
+ - 7
+ - 8
+ - 9
+ - 10
+ - 11
+ - 12
+ - 13
+ - 14
+controller-led-color:
+ []
+lle-modules:
+ []
+ime-langs:
+ - 4
+tracy-advanced-profiling-modules:
+ []
+...
\ No newline at end of file
diff --git a/emu-configs/vita3k/ux0/user/00/user.xml b/emu-configs/vita3k/ux0/user/00/user.xml
new file mode 100644
index 00000000..03849f03
--- /dev/null
+++ b/emu-configs/vita3k/ux0/user/00/user.xml
@@ -0,0 +1,12 @@
+
+
+ /app/retrodeck/retrodeck.png
+
+
+ default
+
+
+
+
+
+
\ No newline at end of file
diff --git a/es-configs/es_find_rules.xml b/es-configs/es_find_rules.xml
index 29b708f5..a7b5f073 100644
--- a/es-configs/es_find_rules.xml
+++ b/es-configs/es_find_rules.xml
@@ -721,21 +721,16 @@
- Ryujinx
- Ryujinx.Ava
+ Ryujinx.shorg.ryujinx.Ryujinx/var/lib/flatpak/exports/bin/org.ryujinx.Ryujinx~/.local/share/flatpak/exports/bin/org.ryujinx.Ryujinx
- ~/Applications/publish/Ryujinx
- ~/.local/share/applications/publish/Ryujinx
- ~/.local/bin/publish/Ryujinx
- ~/bin/publish/Ryujinx
- ~/Applications/publish/Ryujinx.Ava
- ~/.local/share/applications/publish/Ryujinx.Ava
- ~/.local/bin/publish/Ryujinx.Ava
- ~/bin/publish/Ryujinx.Ava
+ ~/Applications/publish/Ryujinx.sh
+ ~/.local/share/applications/publish/Ryujinx.sh
+ ~/.local/bin/publish/Ryujinx.sh
+ ~/bin/publish/Ryujinx.sh
@@ -1025,6 +1020,12 @@
~/.local/share/flatpak/exports/bin/org.yuzu_emu.yuzu
+
+
+
+ ~/retrodeck/customs/yuzu/yuzu*.AppImage
+
+
@@ -1037,4 +1038,4 @@
~/bin/ZEsarUX/zesarux
-
\ No newline at end of file
+
diff --git a/es-configs/es_systems.xml b/es-configs/es_systems.xml
index f41ea160..ff882dd5 100644
--- a/es-configs/es_systems.xml
+++ b/es-configs/es_systems.xml
@@ -96,19 +96,19 @@
androidandroid
-
+
%STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/apple2 apple2e -flop1 %ROM%apple2apple2
--->
+
apple2gsApple IIGS
@@ -119,6 +119,7 @@
apple2gsapple2gs
+
arcadeArcade
@@ -141,7 +142,7 @@
arcadearcade
-
+
c64Commodore 64
@@ -368,7 +368,7 @@
channelfchannelf
-
+
colecovisionColeco ColecoVision
@@ -420,7 +420,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2010_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2003_plus_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2000_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/cps %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbalpha2012_libretro.so %ROM%
@@ -439,7 +439,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2010_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2003_plus_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2000_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/cps1 %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbalpha2012_libretro.so %ROM%
@@ -456,7 +456,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2010_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2003_plus_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2000_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/cps2 %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbalpha2012_libretro.so %ROM%
@@ -473,7 +473,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2010_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2003_plus_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2000_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/cps3 %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbalpha2012_libretro.so %ROM%
@@ -481,7 +481,7 @@
arcadecps3
-
+
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/gameandwatch %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/gw_libretro.so %ROM%gameandwatchgameandwatch
-
+
gamegearSega Game Gear
@@ -835,7 +835,7 @@
genesisgenesis
-
+
gx4000Amstrad GX4000
@@ -854,7 +854,7 @@
.bin .BIN .cdt .CDT .cpr .CPR .dsk .DSK .kcr .KCR .m3u .M3U .sna .SNA .tap .TAR .voc .VOC .7z .7Z .zip .ZIP%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/cap32_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/crocods_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/gx4000 gx4000 -cart %ROM%gx4000gx4000
@@ -905,7 +905,7 @@
%ROMPATH%/lcdgames.mgw .MGW .7z .7Z .zip .ZIP
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/lcdgames %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/gw_libretro.so %ROM%lcdgames, gameandwatchlcdgames
@@ -939,7 +939,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2010_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2003_plus_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame2000_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/mame %BASENAME%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbalpha2012_libretro.so %ROM%
@@ -1035,12 +1035,14 @@
messmess
+
model2Sega Model 2%ROMPATH%/model2.7z .7Z .zip .ZIP%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/mame_libretro.so %ROM%
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/model2 %BASENAME%
@@ -1234,7 +1236,7 @@
.7z .7Z .zip .ZIP%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/neogeo %BASENAME%neogeoneogeo
@@ -1246,7 +1248,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/neocd_libretro.so %ROM%%EMULATOR_RETROARCH% --subsystem neocd -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/neogeocd neocdz -cdrm %ROM%neogeocdneogeocd
@@ -1258,7 +1260,7 @@
%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/neocd_libretro.so %ROM%%EMULATOR_RETROARCH% --subsystem neocd -L %CORE_RETROARCH%/fbneo_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/neogeocdjp neocdz -cdrm %ROM%neogeocdneogeocdjp
@@ -1495,7 +1497,7 @@
psppsp
-
+
psxSony PlayStation
@@ -1520,7 +1522,7 @@
psxpsx
-
+
quakeQuake
@@ -1611,7 +1613,7 @@
scummvmscummvm
-
+
sega32xSega Mega Drive 32X
@@ -1746,7 +1748,7 @@
snessnesna
-
+
spectravideoSpectravideo
@@ -1841,7 +1843,8 @@
%ROMPATH%/switch.nca .NCA .nro .NRO .nso .NSO .nsp .NSP .xci .XCI%INJECT%=%BASENAME%.esprefix %EMULATOR_YUZU% -f -g %ROM%
-
+ %EMULATOR_RYUJINX% %ROM%
+ %INJECT%=%BASENAME%.esprefix %EMULATOR_YUZU-CUSTOM% -f -g %ROM%switchswitch
@@ -1892,7 +1895,7 @@
pcenginecdtg-cd
-
+
tic80TIC-80 Game Engine
@@ -2013,7 +2016,7 @@
vpinball
-->
-
+
wasm4WASM-4 Fantasy Console
@@ -2091,7 +2094,7 @@
%ROMPATH%/x68000.dim .DIM .img .IMG .d88 .D88 .88d .88D .hdm .HDM .dup .DUP .2hd .2HD .xdf .XDF .hdf .HDF .cmd .CMD .m3u .M3U .7z .7Z .zip .ZIP%EMULATOR_RETROARCH% -L %CORE_RETROARCH%/px68k_libretro.so %ROM%
-
+ %STARTDIR%=~/.mame %EMULATOR_MAME% -rompath %GAMEDIR%\;%ROMPATH%/x68000 x68000 -flop1 %ROM%x68000x68000
diff --git a/functions/functions.sh b/functions/functions.sh
index a3548a3f..56403bbe 100644
--- a/functions/functions.sh
+++ b/functions/functions.sh
@@ -467,7 +467,7 @@ install_retrodeck_controller_profile() {
# USAGE: install_retrodeck_controller_profile
if [[ -d "$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/" && -d "$HOME/.steam/steam/controller_base/templates/" ]]; then
rsync -rlD --mkpath "/app/retrodeck/binding_icons/" "$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/"
- cp -f "$emuconfigs/defaults/retrodeck/RetroDECK_controller_config.vdf" "$HOME/.steam/steam/controller_base/templates/RetroDECK_controller_config.vdf"
+ cp -f "$emuconfigs/defaults/retrodeck/controller_configs/*.vdf" "$HOME/.steam/steam/controller_base/templates"
else
configurator_generic_dialog "RetroDECK Controller Profile Install" "The target directories for the controller profile do not exist.\n\nThis may happen if you do not have Steam installed or the location is does not have permission to be read."
fi
diff --git a/functions/post_update.sh b/functions/post_update.sh
index bbc06539..e6366076 100644
--- a/functions/post_update.sh
+++ b/functions/post_update.sh
@@ -244,8 +244,7 @@ post_update() {
fi
if [[ -f "$HOME/.steam/steam/controller_base/templates/RetroDECK_controller_config.vdf" ]]; then # If RetroDECK controller profile has been previously installed
- cp -f "$emuconfigs/defaults/retrodeck/RetroDECK_controller_config.vdf" "$HOME/.steam/steam/controller_base/templates/RetroDECK_controller_config.vdf"
- rsync -rlD --mkpath "/app/retrodeck/binding_icons/" "$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/"
+ install_retrodeck_controller_profile
fi
update_splashscreens
diff --git a/functions/prepare_emulator.sh b/functions/prepare_emulator.sh
index 18118a69..3dfb60cd 100644
--- a/functions/prepare_emulator.sh
+++ b/functions/prepare_emulator.sh
@@ -539,32 +539,32 @@ prepare_emulator() {
fi
fi
- # if [[ "$emulator" =~ ^(ryujunx|Ryujinx|all)$ ]]; then
- # if [[ "$action" == "reset" ]]; then # Run reset-only commands
- # echo "------------------------"
- # echo "Initializing RYUJINX"
- # echo "------------------------"
- # if [[ $multi_user_mode == "true" ]]; then
- # rm -rf "$multi_user_data_folder/$SteamAppUser/config/Ryujinx"
- # mkdir -p "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/system"
- # cp -fv $emuconfigs/ryujinx/* "$multi_user_data_folder/$SteamAppUser/config/Ryujinx"
- # sed -i 's#/home/deck/retrodeck#'$rdhome'#g' "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/Config.json"
- # dir_prep "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" "/var/config/Ryujinx"
- # else
- # # removing config directory to wipe legacy files
- # rm -rf /var/config/Ryujinx
- # mkdir -p /var/config/Ryujinx/system
- # cp -fv $emuconfigs/ryujinx/* /var/config/Ryujinx
- # sed -i 's#/home/deck/retrodeck#'$rdhome'#g' "$ryujinxconf"
- # fi
- # fi
- # if [[ "$action" == "reset" ]] || [[ "$action" == "postmove" ]]; then # Run commands that apply to both resets and moves
- # dir_prep "$bios_folder/switch/keys" "/var/config/Ryujinx/system"
- # fi
- # if [[ "$action" == "postmove" ]]; then # Run only post-move commands
- # sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "$ryujinxconf" # This is an unfortunate one-off because set_setting_value does not currently support JSON
- # fi
- # fi
+ if [[ "$emulator" =~ ^(ryujunx|Ryujinx|all)$ ]]; then
+ if [[ "$action" == "reset" ]]; then # Run reset-only commands
+ echo "------------------------"
+ echo "Initializing RYUJINX"
+ echo "------------------------"
+ if [[ $multi_user_mode == "true" ]]; then
+ rm -rf "$multi_user_data_folder/$SteamAppUser/config/Ryujinx"
+ mkdir -p "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/system"
+ cp -fv $emuconfigs/ryujinx/* "$multi_user_data_folder/$SteamAppUser/config/Ryujinx"
+ sed -i 's#/home/deck/retrodeck#'$rdhome'#g' "$multi_user_data_folder/$SteamAppUser/config/Ryujinx/Config.json"
+ dir_prep "$multi_user_data_folder/$SteamAppUser/config/Ryujinx" "/var/config/Ryujinx"
+ else
+ # removing config directory to wipe legacy files
+ rm -rf /var/config/Ryujinx
+ mkdir -p /var/config/Ryujinx/system
+ cp -fv $emuconfigs/ryujinx/* /var/config/Ryujinx
+ sed -i 's#/home/deck/retrodeck#'$rdhome'#g' "$ryujinxconf"
+ fi
+ fi
+ if [[ "$action" == "reset" ]] || [[ "$action" == "postmove" ]]; then # Run commands that apply to both resets and moves
+ dir_prep "$bios_folder/switch/keys" "/var/config/Ryujinx/system"
+ fi
+ if [[ "$action" == "postmove" ]]; then # Run only post-move commands
+ sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "$ryujinxconf" # This is an unfortunate one-off because set_setting_value does not currently support JSON
+ fi
+ fi
if [[ "$emulator" =~ ^(xemu|XEMU|all)$ ]]; then
if [[ "$action" == "reset" ]]; then # Run reset-only commands
@@ -642,6 +642,7 @@ prepare_emulator() {
dir_prep "$logs_folder/yuzu" "/var/data/yuzu/log"
dir_prep "$screenshots_folder" "/var/data/yuzu/screenshots"
dir_prep "$mods_folder/Yuzu" "/var/data/yuzu/load"
+ mkdir -pv "$rdhome/customs/yuzu"
# removing dead symlinks as they were present in a past version
if [ -d $bios_folder/switch ]; then
find $bios_folder/switch -xtype l -exec rm {} \;
@@ -666,6 +667,53 @@ prepare_emulator() {
fi
fi
+ if [[ "$emulator" =~ ^(vita3k|Vita3K|all)$ ]]; then
+ # TODO: do a proper script
+ # This is just a placeholder script to test the emulator's flow
+ echo "----------------------"
+ echo "Initializing Vita3K"
+ echo "----------------------"
+
+ # extracting the emulator
+ # NOTE: the emulator is writing in "." so it must be placed in the rw filesystem. A symlink of the binary is already placed in /app/bin/Vita3K
+ rm -rf "/var/data/Vita3K"
+ mkdir -p "/var/data/Vita3K"
+ unzip "/app/retrodeck/vita3k.zip" -d "/var/data/Vita3K"
+ chmod +x "/var/data/Vita3K/Vita3K"
+ rm -f "/var/data/Vita3K/update-vita3k.sh"
+
+ # copying config file
+ cp -fvr "$emuconfigs/vita3k/config.yml" "/var/data/Vita3K"
+ # TODO: this step is to be done properly: Replacing RETRODECKHOMEDIR placeholder
+ sed -i 's#RETRODECKHOMEDIR#'$rdhome'#g' "/var/data/Vita3K/config.yml"
+
+ # copying vita user config
+ cp -fvr "$emuconfigs/vita3k/ux0" "$bios_folder/Vita3K/Vita3K"
+
+ # prep saves folder
+ dir_prep "$saves_folder/psvita/vita3k" "$bios_folder/Vita3K/Vita3K/ux0/user/00/savedata"
+
+ # Installing firmware
+ # TODO: at the moment this is here instead of a tool because it seems like it cannot run without Firmware
+ curl "http://dus01.psv.update.playstation.net/update/psv/image/2022_0209/rel_f2c7b12fe85496ec88a0391b514d6e3b/PSVUPDAT.PUP" -po /tmp/PSVUPDAT.PUP
+ curl "http://dus01.psp2.update.playstation.net/update/psp2/image/2019_0924/sd_8b5f60b56c3da8365b973dba570c53a5/PSP2UPDAT.PUP?dest=us" -po /tmp/PSP2UPDAT.PUP
+ Vita3K --firmware /tmp/PSVUPDAT.PUP
+ Vita3K --firmware /tmp/PSP2UPDAT.PUP
+
+ fi
+
+ if [[ "$emulator" =~ ^(mame|MAME|all)$ ]]; then
+ # TODO: do a proper script
+ # This is just a placeholder script to test the emulator's flow
+ echo "----------------------"
+ echo "Initializing MAME"
+ echo "----------------------"
+
+ mkdir -p "/var/config/mame"
+ mkdir -p "$emuconfigs/mame/**" "/var/config/mame"
+
+ fi
+
# Update presets for all emulators after any reset or move
if [[ ! "$emulator" == "retrodeck" ]]; then
build_retrodeck_current_presets
diff --git a/functions/steam-sync/steam-sync.py b/functions/steam-sync/steam-sync.py
new file mode 100644
index 00000000..eb696a29
--- /dev/null
+++ b/functions/steam-sync/steam-sync.py
@@ -0,0 +1,435 @@
+"""Sync RetroDECK favorites games with steam shortcuts"""
+import binascii
+import os
+import re
+import shlex
+import shutil
+import glob
+import vdf
+import sys
+
+import xml.etree.ElementTree as ET
+
+command_list_default={
+"3do": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/opera_libretro.so",
+"amiga": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"amiga1200": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"amiga600": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"amigacd32": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"amstradcpc": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/cap32_libretro.so",
+"arcade": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"arduboy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/arduous_libretro.so",
+"astrocde": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"atari2600": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/stella_libretro.so",
+"atari5200": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/a5200_libretro.so",
+"atari7800": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/prosystem_libretro.so",
+"atari800": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/atari800_libretro.so",
+"atarijaguar": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/virtualjaguar_libretro.so",
+"atarijaguarcd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/virtualjaguar_libretro.so",
+"atarilynx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/handy_libretro.so",
+"atarist": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/hatari_libretro.so",
+"atarixe": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/atari800_libretro.so",
+"atomiswave": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/flycast_libretro.so",
+"c64": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_x64sc_libretro.so",
+"cavestory": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/nxengine_libretro.so",
+"cdimono1": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/same_cdi_libretro.so",
+"cdtv": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"chailove": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/chailove_libretro.so",
+"channelf": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/freechaf_libretro.so",
+"colecovision": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"cps": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"cps1": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"cps2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"cps3": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"doom": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/prboom_libretro.so",
+"dos": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/dosbox_pure_libretro.so",
+"dreamcast": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/flycast_libretro.so",
+"easyrpg": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/easyrpg_libretro.so",
+"famicom": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen_libretro.so",
+"fba": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbalpha2012_libretro.so",
+"fbneo": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbneo_libretro.so",
+"fds": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen_libretro.so",
+"gameandwatch": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gw_libretro.so",
+"gamegear": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"gb": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gambatte_libretro.so",
+"gba": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mgba_libretro.so",
+"gbc": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gambatte_libretro.so",
+"genesis": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"gx4000": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/cap32_libretro.so",
+"intellivision": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/freeintv_libretro.so",
+"j2me": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/squirreljme_libretro.so",
+"lcdgames": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gw_libretro.so",
+"lutro": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/lutro_libretro.so",
+"mame": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"mastersystem": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"megacd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"megacdjp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"megadrive": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"megaduck": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/sameduck_libretro.so",
+"mess": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mess2015_libretro.so",
+"model2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"moto": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/theodore_libretro.so",
+"msx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"msx1": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"msx2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"msxturbor": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"multivision": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gearsystem_libretro.so",
+"n64": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mupen64plus_next_libretro.so",
+"n64dd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/parallel_n64_libretro.so",
+"naomi": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/flycast_libretro.so",
+"naomigd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/flycast_libretro.so",
+"nds": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/desmume_libretro.so",
+"neogeo": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbneo_libretro.so",
+"neogeocd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/neocd_libretro.so",
+"neogeocdjp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/neocd_libretro.so",
+"nes": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen_libretro.so",
+"ngp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_ngp_libretro.so",
+"ngpc": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_ngp_libretro.so",
+"odyssey2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/o2em_libretro.so",
+"palm": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mu_libretro.so",
+"pc88": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/quasi88_libretro.so",
+"pc98": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/np2kai_libretro.so",
+"pcengine": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so",
+"pcenginecd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so",
+"pcfx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pcfx_libretro.so",
+"pokemini": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/pokemini_libretro.so",
+"psx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/swanstation_libretro.so",
+"quake": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/tyrquake_libretro.so",
+"satellaview": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"saturn": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_saturn_libretro.so",
+"saturnjp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_saturn_libretro.so",
+"scummvm": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/scummvm_libretro.so",
+"sega32x": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/picodrive_libretro.so",
+"sega32xjp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/picodrive_libretro.so",
+"sega32xna": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/picodrive_libretro.so",
+"segacd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"sfc": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"sg-1000": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"sgb": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen-s_libretro.so",
+"snes": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"snesna": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"spectravideo": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"sufami": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"supergrafx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_supergrafx_libretro.so",
+"supervision": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/potator_libretro.so",
+"tg16": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so",
+"tg-cd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so",
+"tic80": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/tic80_libretro.so",
+"to8": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/theodore_libretro.so",
+"uzebox": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/uzem_libretro.so",
+"vectrex": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vecx_libretro.so",
+"vic20": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_xvic_libretro.so",
+"videopac": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/o2em_libretro.so",
+"virtualboy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_vb_libretro.so",
+"wasm4": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/wasm4_libretro.so",
+"wonderswan": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_wswan_libretro.so",
+"wonderswancolor": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_wswan_libretro.so",
+"x1": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/x1_libretro.so",
+"x68000": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/px68k_libretro.so",
+"zx81": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/81_libretro.so",
+"zxspectrum": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fuse_libretro.so",
+"switch": "flatpak run --command=yuzu net.retrodeck.retrodeck -f -g",
+"n3ds": "flatpak run --command=citra net.retrodeck.retrodeck",
+"ps2": "flatpak run --command=pcsx2-qt net.retrodeck.retrodeck -batch",
+"wiiu": "flatpak run --command=Cemu-wrapper net.retrodeck.retrodeck -g",
+"gc": "flatpak run --command=dolphin-emu-wrapper net.retrodeck.retrodeck -b -e",
+"wii": "flatpak run --command=dolphin-emu-wrapper net.retrodeck.retrodeck -b -e",
+"xbox": "flatpak run --command=xemu net.retrodeck.retrodeck -dvd_path",
+"ps3": "flatpak run --command=pcsx3 net.retrodeck.retrodeck --no-gui",
+"psp": "flatpak run --command=PPSSPPSDL net.retrodeck.retrodeck",
+"pico8": "flatpak run --command=pico8 net.retrodeck.retrodeck -desktop_path ~/retrodeck/screenshots -root_path {GAMEDIR} -run"
+}
+
+alt_command_list={
+"PUAE": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae_libretro.so",
+"Caprice32": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/cap32_libretro.so",
+"MAME - CURRENT": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"Stella": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/stella_libretro.so",
+"a5200": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/a5200_libretro.so",
+"Atari800": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/atari800_libretro.so",
+"Handy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/handy_libretro.so",
+"VICE x64sc Accurate": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_x64sc_libretro.so",
+"SAME CDi": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/same_cdi_libretro.so",
+"blueMSX": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bluemsx_libretro.so",
+"MAME - CURRENT": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame_libretro.so",
+"PrBoom": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/prboom_libretro.so",
+"DOSBox-Pure": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/dosbox_pure_libretro.so",
+"Mesen": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen_libretro.so",
+"Genesis Plus GX": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_libretro.so",
+"Gamebatte": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gambatte_libretro.so",
+"mGBA": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mgba_libretro.so",
+"ParaLLEI N64": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/parallel_n64_libretro.so",
+"DeSmuME": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/desmume_libretro.so",
+"NeoCD": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/neocd_libretro.so",
+"Beetle NeoPop": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_ngp_libretro.so",
+"Neko Project II Kai": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/np2kai_libretro.so",
+"Beetle PCE": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so",
+"Swanstation": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/swanstation_libretro.so",
+"TyrQuake": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/tyrquake_libretro.so",
+"Beetle Saturn": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_saturn_libretro.so",
+"Snes 9x - Current": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x_libretro.so",
+"Beetle SuperGrafx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_supergrafx_libretro.so",
+"Yuzu (Standalone)": "flatpak run --command=yuzu net.retrodeck.retrodeck -f -g",
+"Citra (Standalone)": "flatpak run --command=citra net.retrodeck.retrodeck",
+"PCSX2 (Standalone)": "flatpak run --command=pcsx2-qt net.retrodeck.retrodeck -batch",
+"Dolphin (Standalone)": "flatpak run --command=dolphin-emu-wrapper net.retrodeck.retrodeck -b -e",
+"RPCS3 Directory (Standalone)": "flatpak run --command=pcsx3 net.retrodeck.retrodeck --no-gui",
+"PPSSPP (Standalone)": "flatpak run --command=PPSSPPSDL net.retrodeck.retrodeck",
+"PICO-8 (Standalone)": "flatpak run --command=pico8 net.retrodeck.retrodeck -desktop_path ~/retrodeck/screenshots -root_path {GAMEDIR} -run",
+"PUAE 2021": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/puae2021_libretro.so",
+"CrocoDS": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/crocods_libretro.so",
+"CPCemu (Standalone)": "NYI", #NYI
+"MAME 2010": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame2010_libretro.so",
+"MAME 2003-Plus": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame2003_plus_libretro.so",
+"MAME 2000": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mame2000_libretro.so",
+"MAME (Standalone)": "NYI", #NYI
+"FinalBurn Neo": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbneo_libretro.so",
+"FinalBurn Neo (Standalone)": "NYI", #NYI
+"FB Alpha 2012": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbalpha2012_libretro.so",
+"Flycast": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/flycast_libretro.so",
+"Flycast (Standalone)": "NYI", #NYI
+"Kronos": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/kronos_libretro.so",
+"Supermodel (Standalone)": "NYI", #NYI
+"Supermodel [Fullscreen] (Standalone)": "NYI", #NYI
+"Shortcut or script": "TODO: I have to catch how it works", #TODO
+"Atari800 (Standalone)": "NYI", #NYI
+"Stella 2014": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/stella2014_libretro.so",
+"Atari800": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/atari800_libretro.so",
+"Beetle Lynx": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_lynx_libretro.so",
+"VICE x64 Fast": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_x64_libretro.so",
+"VICE x64 SuperCPU": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_xscpu64_libretro.so",
+"VICE x128": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vice_x128_libretro.so",
+"Frodo": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/frodo_libretro.so",
+"CDi 2015": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/cdi2015_libretro.so",
+"Gearcoleco": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gearcoleco_libretro.so",
+"FB Alpha 2012 CPS-1": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbalpha2012_cps1_libretro.so",
+"FB Alpha 2012 CPS-2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbalpha2012_cps2_libretro.so",
+"FB Alpha 2012 CPS-3": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fbalpha2012_cps3_libretro.so",
+"Boom 3": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/boom3_libretro.so",
+"Boom 3 xp": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/boom3_libretro_xp.so",
+"DOSBox-Core": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/dosbox_core_libretro.so",
+"DOSBox-SVN": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/dosbox_svn_libretro.so",
+"Keep ES-DE running": "TODO: I have to catch how it works", #TODO
+"AppImage (Suspend ES-DE)": "TODO: I have to catch how it works", #TODO
+"AppImage (Keep ES-DE running)": "TODO: I have to catch how it works", #TODO
+"Nestopia UE": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/nestopia_libretro.so",
+"FCEUmm": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fceumm_libretro.so",
+"QuickNES": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/quicknes_libretro.so",
+"Genesis Plus GX Wide": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/genesis_plus_gx_wide_libretro.so",
+"Gearsystem": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gearsystem_libretro.so",
+"SMS Plus GX": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/smsplus_libretro.so",
+"SameBoy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/sameboy_libretro.so",
+"Gearboy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gearboy_libretro.so",
+"TGB Dual": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/tgbdual_libretro.so",
+"Mesen-S": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mesen-s_libretro.so",
+"VBA-M": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vbam_libretro.so",
+"bsnes": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bsnes_libretro.so",
+"mGBA": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mgba_libretro.so",
+"VBA Next": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vba_next_libretro.so",
+"gpSP": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/gpsp_libretro.so",
+"Dolphin": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/dolphin_libretro.so",
+"PrimeHack (Standalone)": "flatpak run --command=primehack-wrapper net.retrodeck.retrodeck -b -e",
+"PicoDrive": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/picodrive_libretro.so",
+"BlastEm": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/blastem_libretro.so",
+"CrocoDS": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/crocods_libretro.so",
+"fMSX": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/fmsx_libretro.so",
+"Citra": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/citra_libretro.so",
+"Citra 2018": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/citra2018_libretro.so",
+"Mupen64Plus-Next": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mupen64plus_next_libretro.so",
+"DeSmuME 2015": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/desmume2015_libretro.so",
+"melonDS": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/melonds_libretro.so",
+"melonDS (Standalone)": "flatpak run --command=melonDS net.retrodeck.retrodeck",
+"FinalBurn Neo neogeocd": "flatpak run --command=retroarch net.retrodeck.retrodeck --subsystem neocd -L /var/config/retroarch/cores/fbneo_libretro.so",
+"RACE": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/race_libretro.so",
+"Neko Project II": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/nekop2_libretro.so",
+"Beetle PCE FAST": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_fast_libretro.so",
+"PICO-8 Splore (Standalone)": "flatpak run --command=pico8 net.retrodeck.retrodeck -desktop_path ~/retrodeck/screenshots -root_path {GAMEDIR} -splore",
+"AppImage": "TODO: I have to catch how it works", #TODO
+"LRPS2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/pcsx2_libretro.so",
+"PCSX2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/pcsx2_libretro.so",
+"RPCS3 Shortcut (Standalone)": "TODO: I have to catch how it works", #TODO
+"PPSSPP": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/ppsspp_libretro.so",
+"Beetle PSX": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_psx_libretro.so",
+"Beetle PSX HW": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_psx_hw_libretro.so",
+"PCSX ReARMed": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/pcsx_rearmed_libretro.so",
+"DuckStation (Standalone)": "flatpak run --command=duckstation-qt net.retrodeck.retrodeck -batch",
+"vitaQuake 2": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vitaquake2_libretro.so",
+"vitaQuake 2 [Rogue]": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vitaquake2-rogue_libretro.so",
+"vitaQuake 2 [Xatrix]": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vitaquake2-xatrix_libretro.so",
+"vitaQuake 2 [Zaero]": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vitaquake2-zaero_libretro.so",
+"vitaQuake 3": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/vitaquake3_libretro.so",
+"YabaSanshiro": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/yabasanshiro_libretro.so",
+"Yabause": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/yabause_libretro.so",
+"Snes9x 2010": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/snes9x2010_libretro.so",
+"bsnes-hd": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bsnes_hd_beta_libretro.so",
+"bsnes-mercury Accuracy": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/bsnes_mercury_accuracy_libretro.so",
+"Beetle Supafaust": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_supafaust_libretro.so",
+"Beetle PCE": "flatpak run --command=retroarch net.retrodeck.retrodeck -L /var/config/retroarch/cores/mednafen_pce_libretro.so"
+}
+
+STEAM_DATA_DIRS = (
+ "~/.steam/debian-installation",
+ "~/.steam",
+ "~/.local/share/steam",
+ "~/.local/share/Steam",
+ "~/.steam/steam",
+ "~/.var/app/com.valvesoftware.Steam/data/steam",
+ "~/.var/app/com.valvesoftware.Steam/data/Steam",
+ "/usr/share/steam",
+ "/usr/local/share/steam",
+)
+
+def create_shortcut(games, launch_config_name=None):
+ shortcut_path = get_shortcuts_vdf_path()
+ if os.path.exists(shortcut_path):
+ with open(shortcut_path, "rb") as shortcut_file:
+ shortcuts = vdf.binary_loads(shortcut_file.read())['shortcuts'].values()
+ else:
+ shortcuts = []
+
+ old_shortcuts=[]
+ for shortcut in shortcuts:
+ if "net.retrodeck.retrodeck" in shortcut["Exe"]:
+ keep=False
+ for game in games:
+ gameid=generate_shortcut_id(game[0])
+ if gameid==shortcut["appid"]:
+ shortcut["Exe"]=game[1]
+ game[0]="###"
+ keep=True
+ break
+ if keep:
+ old_shortcuts.append(shortcut)
+ else:
+ old_shortcuts.append(shortcut)
+
+ new_shortcuts=[]
+ for game in games:
+ if not game[0]=="###":
+ new_shortcuts=new_shortcuts+[generate_shortcut(game, launch_config_name)]
+
+ shortcuts = list(old_shortcuts) + list(new_shortcuts)
+
+ updated_shortcuts = {
+ 'shortcuts': {
+ str(index): elem for index, elem in enumerate(shortcuts)
+ }
+ }
+ with open(shortcut_path, "wb") as shortcut_file:
+ shortcut_file.write(vdf.binary_dumps(updated_shortcuts))
+
+def get_config_path():
+ config_paths = search_recursive_in_steam_dirs("userdata/**/config/")
+ if not config_paths:
+ return None
+ return config_paths[0]
+
+def get_shortcuts_vdf_path():
+ config_path = get_config_path()
+ if not config_path:
+ return None
+ return os.path.join(config_path, "shortcuts.vdf")
+
+def search_recursive_in_steam_dirs(path_suffix):
+ """Perform a recursive search based on glob and returns a
+ list of hits"""
+ results = []
+ for candidate in STEAM_DATA_DIRS:
+ glob_path = os.path.join(os.path.expanduser(candidate), path_suffix)
+ for path in glob.glob(glob_path):
+ results.append(path)
+ return results
+
+def generate_shortcut(game, launch_config_name):
+ return {
+ 'appid': generate_shortcut_id(game[0]),
+ 'appname': f'{game[0]}',
+ 'Exe': f'{game[1]}',
+ 'StartDir': f'{os.path.expanduser("~")}',
+ 'icon': "",
+ 'LaunchOptions': "",
+ 'IsHidden': 0,
+ 'AllowDesktopConfig': 1,
+ 'AllowOverlay': 1,
+ 'OpenVR': 0,
+ 'Devkit': 0,
+ 'DevkitOverrideAppID': 0,
+ 'LastPlayTime': 0,
+ }
+
+def generate_preliminary_id(name):
+ unique_id = ''.join(["RetroDECK", name])
+ top = binascii.crc32(str.encode(unique_id, 'utf-8')) | 0x80000000
+ return (top << 32) | 0x02000000
+
+def generate_shortcut_id(name):
+ return (generate_preliminary_id(name) >> 32) - 0x100000000
+
+def addToSteam():
+ print("Open RetroDECK config file: {}".format(os.path.expanduser("~/.var/app/net.retrodeck.retrodeck/config/retrodeck/retrodeck.cfg")))
+
+ fl=open(os.path.expanduser("~/.var/app/net.retrodeck.retrodeck/config/retrodeck/retrodeck.cfg"),"r")
+ lines=fl.readlines()
+ for line in lines:
+ if "rdhome" in line:
+ rdhome=line[7:-1]
+ elif "roms_folder" in line:
+ roms_folder=line[12:-1]
+ fl.close()
+ games=[]
+
+ command_list_default["pico8"]=command_list_default["pico8"].replace("{GAMEDIR}",roms_folder+"/pico8")
+ alt_command_list["PICO-8 Splore (Standalone)"]=alt_command_list["PICO-8 Splore (Standalone)"].replace("{GAMEDIR}",roms_folder+"/pico8")
+
+ for system in os.listdir(rdhome+"/gamelists/"):
+ print("Start parsing system: {}".format(system))
+
+ f=open(rdhome+"/gamelists/"+system+"/gamelist.xml","r")
+ f.readline()
+ parser=ET.XMLParser()
+ parser.feed(b'')
+ parser.feed(f.read())
+ parser.feed(b'')
+ root=parser.close()
+ f.close()
+
+ globalAltEmu=""
+ for subroot in root:
+ if subroot.tag=="alternativeEmulator":
+ for alt in subroot:
+ globalAltEmu=alt.text
+ else:
+ for game in subroot:
+ path=""
+ name=""
+ favorite=""
+ altemulator=globalAltEmu
+ for tag in game:
+ if tag.tag=="path":
+ path=tag.text
+ elif tag.tag=="name":
+ name=tag.text
+ elif tag.tag=="favorite":
+ favorite=tag.text
+ elif tag.tag=="altemulator":
+ altemulator=tag.text
+
+ if favorite=="true" and altemulator=="":
+ print("Find favorite game: {}".format(name))
+ games.append([name,command_list_default[system]+" '"+roms_folder+"/"+system+path[1:]+"'"])
+ elif favorite=="true":
+ print("Find favorite game with alternative emulator: {}, {}".format(name,altemulator))
+ if ("neogeocd" in system) and altemulator=="FinalBurn Neo":
+ games.append([name,alt_command_list[altemulator+" neogeocd"]+" '"+roms_folder+"/"+system+path[1:]+"'"])
+ print(alt_command_list[altemulator+" neogeocd"]+" '"+roms_folder+"/"+system+path[1:]+"'")
+ elif system=="pico8" and altemulator=="PICO-8 Splore (Standalone)":
+ games.append([name,alt_command_list[altemulator]])
+ print(alt_command_list[altemulator])
+ else:
+ games.append([name,alt_command_list[altemulator]+" '"+roms_folder+"/"+system+path[1:]+"'"])
+ print(alt_command_list[altemulator]+" '"+roms_folder+"/"+system+path[1:]+"'")
+
+ create_shortcut(games)
+
+if __name__=="__main__":
+ addToSteam()
diff --git a/functions/steam-sync/vdf/__init__.py b/functions/steam-sync/vdf/__init__.py
new file mode 100644
index 00000000..6e7f136b
--- /dev/null
+++ b/functions/steam-sync/vdf/__init__.py
@@ -0,0 +1,467 @@
+"""
+Module for deserializing/serializing to and from VDF
+
+https://github.com/ValvePython/vdf
+
+MIT License
+"""
+# pylint: disable=raise-missing-from
+
+__version__ = "3.2"
+__author__ = "Rossen Georgiev"
+
+import re
+import struct
+from binascii import crc32
+from io import StringIO as unicodeIO
+
+string_type = str
+int_type = int
+BOMS = '\ufffe\ufeff'
+
+
+def strip_bom(line):
+ return line.lstrip(BOMS)
+
+
+# string escaping
+_unescape_char_map = {
+ r"\n": "\n",
+ r"\t": "\t",
+ r"\v": "\v",
+ r"\b": "\b",
+ r"\r": "\r",
+ r"\f": "\f",
+ r"\a": "\a",
+ r"\\": "\\",
+ r"\?": "?",
+ r"\"": "\"",
+ r"\'": "\'",
+}
+_escape_char_map = {v: k for k, v in _unescape_char_map.items()}
+
+
+def _re_escape_match(m):
+ return _escape_char_map[m.group()]
+
+
+def _re_unescape_match(m):
+ return _unescape_char_map[m.group()]
+
+
+def _escape(text):
+ return re.sub(r"[\n\t\v\b\r\f\a\\\?\"']", _re_escape_match, text)
+
+
+def _unescape(text):
+ return re.sub(r"(\\n|\\t|\\v|\\b|\\r|\\f|\\a|\\\\|\\\?|\\\"|\\')", _re_unescape_match, text)
+
+# parsing and dumping for KV1
+
+
+def parse(fp, mapper=dict, merge_duplicate_keys=True, escaped=True):
+ """
+ Deserialize ``s`` (a ``str`` or ``unicode`` instance containing a VDF)
+ to a Python object.
+
+ ``mapper`` specifies the Python object used after deserializetion. ``dict` is
+ used by default. Alternatively, ``collections.OrderedDict`` can be used if you
+ wish to preserve key order. Or any object that acts like a ``dict``.
+
+ ``merge_duplicate_keys`` when ``True`` will merge multiple KeyValue lists with the
+ same key into one instead of overwriting. You can se this to ``False`` if you are
+ using ``VDFDict`` and need to preserve the duplicates.
+ """
+ if not issubclass(mapper, dict):
+ raise TypeError("Expected mapper to be subclass of dict, got %s" % type(mapper))
+ if not hasattr(fp, 'readline'):
+ raise TypeError("Expected fp to be a file-like object supporting line iteration")
+
+ lineno = 0
+ stack = [mapper()]
+ expect_bracket = False
+
+ re_keyvalue = re.compile(r'^("(?P(?:\\.|[^\\"])+)"|(?P#?[a-z0-9\-\_\\\?]+))'
+ r'([ \t]*('
+ r'"(?P(?:\\.|[^\\"])*)(?P")?'
+ r'|(?P[a-z0-9\-\_\\\?\*\.]+)'
+ r'))?',
+ flags=re.I)
+
+ for lineno, line in enumerate(fp, 1):
+ if lineno == 1:
+ line = strip_bom(line)
+
+ line = line.lstrip()
+
+ # skip empty and comment lines
+ if line == "" or line[0] == '/':
+ continue
+
+ # one level deeper
+ if line[0] == "{":
+ expect_bracket = False
+ continue
+
+ if expect_bracket:
+ raise SyntaxError("vdf.parse: expected openning bracket",
+ (getattr(fp, 'name', '<%s>' % fp.__class__.__name__), lineno, 1, line))
+
+ # one level back
+ if line[0] == "}":
+ if len(stack) > 1:
+ stack.pop()
+ continue
+
+ raise SyntaxError("vdf.parse: one too many closing parenthasis",
+ (getattr(fp, 'name', '<%s>' % fp.__class__.__name__), lineno, 0, line))
+
+ # parse keyvalue pairs
+ while True:
+ match = re_keyvalue.match(line)
+
+ if not match:
+ try:
+ line += next(fp)
+ continue
+ except StopIteration:
+ raise SyntaxError("vdf.parse: unexpected EOF (open key quote?)",
+ (getattr(fp, 'name', '<%s>' % fp.__class__.__name__), lineno, 0, line))
+
+ key = match.group('key') if match.group('qkey') is None else match.group('qkey')
+ val = match.group('val') if match.group('qval') is None else match.group('qval')
+
+ if escaped:
+ key = _unescape(key)
+
+ # we have a key with value in parenthesis, so we make a new dict obj (level deeper)
+ if val is None:
+ if merge_duplicate_keys and key in stack[-1]:
+ _m = stack[-1][key]
+ else:
+ _m = mapper()
+ stack[-1][key] = _m
+
+ stack.append(_m)
+ expect_bracket = True
+
+ # we've matched a simple keyvalue pair, map it to the last dict obj in the stack
+ else:
+ # if the value is line consume one more line and try to match again,
+ # until we get the KeyValue pair
+ if match.group('vq_end') is None and match.group('qval') is not None:
+ try:
+ line += next(fp)
+ continue
+ except StopIteration:
+ raise SyntaxError("vdf.parse: unexpected EOF (open quote for value?)",
+ (getattr(fp, 'name', '<%s>' % fp.__class__.__name__), lineno, 0, line))
+
+ stack[-1][key] = _unescape(val) if escaped else val
+
+ # exit the loop
+ break
+
+ if len(stack) != 1:
+ raise SyntaxError("vdf.parse: unclosed parenthasis or quotes (EOF)",
+ (getattr(fp, 'name', '<%s>' % fp.__class__.__name__), lineno, 0, line))
+
+ return stack.pop()
+
+
+def loads(s, **kwargs):
+ """
+ Deserialize ``s`` (a ``str`` or ``unicode`` instance containing a JSON
+ document) to a Python object.
+ """
+ if not isinstance(s, string_type):
+ raise TypeError("Expected s to be a str, got %s" % type(s))
+ fp = unicodeIO(s)
+ return parse(fp, **kwargs)
+
+
+def load(fp, **kwargs):
+ """
+ Deserialize ``fp`` (a ``.readline()``-supporting file-like object containing
+ a JSON document) to a Python object.
+ """
+ return parse(fp, **kwargs)
+
+
+def dumps(obj, pretty=False, escaped=True):
+ """
+ Serialize ``obj`` to a VDF formatted ``str``.
+ """
+ if not isinstance(obj, dict):
+ raise TypeError("Expected data to be an instance of``dict``")
+ if not isinstance(pretty, bool):
+ raise TypeError("Expected pretty to be of type bool")
+ if not isinstance(escaped, bool):
+ raise TypeError("Expected escaped to be of type bool")
+
+ return ''.join(_dump_gen(obj, pretty, escaped))
+
+
+def dump(obj, fp, pretty=False, escaped=True):
+ """
+ Serialize ``obj`` as a VDF formatted stream to ``fp`` (a
+ ``.write()``-supporting file-like object).
+ """
+ if not isinstance(obj, dict):
+ raise TypeError("Expected data to be an instance of``dict``")
+ if not hasattr(fp, 'write'):
+ raise TypeError("Expected fp to have write() method")
+ if not isinstance(pretty, bool):
+ raise TypeError("Expected pretty to be of type bool")
+ if not isinstance(escaped, bool):
+ raise TypeError("Expected escaped to be of type bool")
+
+ for chunk in _dump_gen(obj, pretty, escaped):
+ fp.write(chunk)
+
+
+def _dump_gen(data, pretty=False, escaped=True, level=0):
+ indent = "\t"
+ line_indent = ""
+
+ if pretty:
+ line_indent = indent * level
+
+ for key, value in data.items():
+ if escaped and isinstance(key, string_type):
+ key = _escape(key)
+
+ if isinstance(value, dict):
+ yield '%s"%s"\n%s{\n' % (line_indent, key, line_indent)
+ for chunk in _dump_gen(value, pretty, escaped, level + 1):
+ yield chunk
+ yield "%s}\n" % line_indent
+ else:
+ if escaped and isinstance(value, string_type):
+ value = _escape(value)
+
+ yield '%s"%s" "%s"\n' % (line_indent, key, value)
+
+
+# binary VDF
+class BASE_INT(int_type):
+ def __repr__(self):
+ return "%s(%s)" % (self.__class__.__name__, self)
+
+
+class UINT_64(BASE_INT):
+ pass
+
+
+class INT_64(BASE_INT):
+ pass
+
+
+class POINTER(BASE_INT):
+ pass
+
+
+class COLOR(BASE_INT):
+ pass
+
+
+BIN_NONE = b'\x00'
+BIN_STRING = b'\x01'
+BIN_INT32 = b'\x02'
+BIN_FLOAT32 = b'\x03'
+BIN_POINTER = b'\x04'
+BIN_WIDESTRING = b'\x05'
+BIN_COLOR = b'\x06'
+BIN_UINT64 = b'\x07'
+BIN_END = b'\x08'
+BIN_INT64 = b'\x0A'
+BIN_END_ALT = b'\x0B'
+
+
+def binary_loads(s, mapper=dict, merge_duplicate_keys=True, alt_format=False):
+ """
+ Deserialize ``s`` (``bytes`` containing a VDF in "binary form")
+ to a Python object.
+
+ ``mapper`` specifies the Python object used after deserializetion. ``dict` is
+ used by default. Alternatively, ``collections.OrderedDict`` can be used if you
+ wish to preserve key order. Or any object that acts like a ``dict``.
+
+ ``merge_duplicate_keys`` when ``True`` will merge multiple KeyValue lists with the
+ same key into one instead of overwriting. You can se this to ``False`` if you are
+ using ``VDFDict`` and need to preserve the duplicates.
+ """
+ if not isinstance(s, bytes):
+ raise TypeError("Expected s to be bytes, got %s" % type(s))
+ if not issubclass(mapper, dict):
+ raise TypeError("Expected mapper to be subclass of dict, got %s" % type(mapper))
+
+ # helpers
+ int32 = struct.Struct(' idx:
+ t = s[idx:idx + 1]
+ idx += 1
+
+ if t == CURRENT_BIN_END:
+ if len(stack) > 1:
+ stack.pop()
+ continue
+ break
+
+ key, idx = read_string(s, idx)
+
+ if t == BIN_NONE:
+ if merge_duplicate_keys and key in stack[-1]:
+ _m = stack[-1][key]
+ else:
+ _m = mapper()
+ stack[-1][key] = _m
+ stack.append(_m)
+ elif t == BIN_STRING:
+ stack[-1][key], idx = read_string(s, idx)
+ elif t == BIN_WIDESTRING:
+ stack[-1][key], idx = read_string(s, idx, wide=True)
+ elif t in (BIN_INT32, BIN_POINTER, BIN_COLOR):
+ val = int32.unpack_from(s, idx)[0]
+
+ if t == BIN_POINTER:
+ val = POINTER(val)
+ elif t == BIN_COLOR:
+ val = COLOR(val)
+
+ stack[-1][key] = val
+ idx += int32.size
+ elif t == BIN_UINT64:
+ stack[-1][key] = UINT_64(uint64.unpack_from(s, idx)[0])
+ idx += uint64.size
+ elif t == BIN_INT64:
+ stack[-1][key] = INT_64(int64.unpack_from(s, idx)[0])
+ idx += int64.size
+ elif t == BIN_FLOAT32:
+ stack[-1][key] = float32.unpack_from(s, idx)[0]
+ idx += float32.size
+ else:
+ raise SyntaxError("Unknown data type at offset %d: %s" % (idx - 1, repr(t)))
+
+ if len(s) != idx or len(stack) != 1:
+ raise SyntaxError("Binary VDF ended at offset %d, but length is %d" % (idx, len(s)))
+
+ return stack.pop()
+
+
+def binary_dumps(obj, alt_format=False):
+ """
+ Serialize ``obj`` to a binary VDF formatted ``bytes``.
+ """
+ return b''.join(_binary_dump_gen(obj, alt_format=alt_format))
+
+
+def _binary_dump_gen(obj, level=0, alt_format=False):
+ if level == 0 and len(obj) == 0:
+ return
+
+ int32 = struct.Struct(' 0:
+ for idx in _range(start_idx, len(self.__omap)):
+ if self.__omap[idx][1] == skey:
+ oldkey = self.__omap[idx]
+ newkey = (dup_idx, skey)
+ super().__setitem__(newkey, self[oldkey])
+ super().__delitem__(oldkey)
+ self.__omap[idx] = newkey
+
+ dup_idx += 1
+ tail_count -= 1
+ if tail_count == 0:
+ break
+
+ if self.__kcount[skey] == 0:
+ del self.__kcount[skey]
+
+ return result
+
+ def __iter__(self):
+ return iter(self.iterkeys())
+
+ def __contains__(self, key):
+ return super().__contains__(self._normalize_key(key))
+
+ def __eq__(self, other):
+ if isinstance(other, VDFDict):
+ return list(self.items()) == list(other.items())
+ return False
+
+ def __ne__(self, other):
+ return not self.__eq__(other)
+
+ def clear(self):
+ super().clear()
+ self.__kcount.clear()
+ self.__omap = []
+
+ def get(self, key, *args):
+ return super().get(self._normalize_key(key), *args)
+
+ def setdefault(self, key, default=None):
+ if key not in self:
+ self.__setitem__(key, default)
+ return self.__getitem__(key)
+
+ def pop(self, key):
+ key = self._normalize_key(key)
+ value = self.__getitem__(key)
+ self.__delitem__(key)
+ return value
+
+ def popitem(self):
+ if not self.__omap:
+ raise KeyError("VDFDict is empty")
+ key = self.__omap[-1]
+ return key[1], self.pop(key)
+
+ def update(self, data=None, **kwargs):
+ if isinstance(data, dict):
+ data = data.items()
+ elif not isinstance(data, list):
+ raise TypeError("Expected data to be a list or dict, got %s" % type(data))
+
+ for key, value in data:
+ self.__setitem__(key, value)
+
+ def iterkeys(self):
+ return (key[1] for key in self.__omap)
+
+ def keys(self):
+ return _kView(self)
+
+ def itervalues(self):
+ return (self[key] for key in self.__omap)
+
+ def values(self):
+ return _vView(self)
+
+ def iteritems(self):
+ return ((key[1], self[key]) for key in self.__omap)
+
+ def items(self):
+ return _iView(self)
+
+ def get_all_for(self, key):
+ """ Returns all values of the given key """
+ if not isinstance(key, _string_type):
+ raise TypeError("Key needs to be a string.")
+ return [self[(idx, key)] for idx in _range(self.__kcount[key])]
+
+ def remove_all_for(self, key):
+ """ Removes all items with the given key """
+ if not isinstance(key, _string_type):
+ raise TypeError("Key need to be a string.")
+
+ for idx in _range(self.__kcount[key]):
+ super().__delitem__((idx, key))
+
+ self.__omap = list(filter(lambda x: x[1] != key, self.__omap))
+
+ del self.__kcount[key]
+
+ def has_duplicates(self):
+ """
+ Returns ``True`` if the dict contains keys with duplicates.
+ Recurses through any all keys with value that is ``VDFDict``.
+ """
+ for n in getattr(self.__kcount, _iter_values)():
+ if n != 1:
+ return True
+
+ def dict_recurse(obj):
+ for v in getattr(obj, _iter_values)():
+ if isinstance(v, VDFDict) and v.has_duplicates():
+ return True
+ if isinstance(v, dict):
+ return dict_recurse(v)
+ return False
+
+ return dict_recurse(self)
diff --git a/net.retrodeck.retrodeck.yml b/net.retrodeck.retrodeck.yml
index e8d16eb1..83b8a39a 100644
--- a/net.retrodeck.retrodeck.yml
+++ b/net.retrodeck.retrodeck.yml
@@ -27,6 +27,7 @@ finish-args:
- --filesystem=home
- --filesystem=/run/media
- --filesystem=/media
+ - --filesystem=home/.var/app/com.valvesoftware.Steam
- --allow=multiarch
- --talk-name=org.freedesktop.ScreenSaver
- --talk-name=org.freedesktop.PowerManagement.Inhibit
@@ -90,7 +91,6 @@ modules:
# on cooker will be THISBRANCH
VERSION="0.7.5b"
-
git checkout ${GITHUB_REF_NAME}
mkdir -p ${FLATPAK_DEST}/retrodeck/
if [[ $VERSION == *"cooker"* ]];
@@ -303,6 +303,20 @@ modules:
stable-only: true
url-template: https://github.com/Tencent/rapidjson/archive/refs/tags/v$version.tar.gz
+ # dependency of: CEMU, SOLARUS
+ - name: glm
+ buildsystem: cmake-ninja
+ cleanup: ['*']
+ no-make-install: true
+ post-install:
+ - install -d ${FLATPAK_DEST}/include
+ - cp -R glm ${FLATPAK_DEST}/include
+ - cp -R cmake/glm ${FLATPAK_DEST}/lib/cmake
+ sources:
+ - type: archive
+ url: https://github.com/g-truc/glm/releases/download/0.9.9.8/glm-0.9.9.8.zip
+ sha256: 37e2a3d62ea3322e43593c34bae29f57e3e251ea89f4067506c94043769ade4c
+
# dependency of: CEMU, ES-DE
- name: pugixml
buildsystem: cmake-ninja
@@ -1116,19 +1130,6 @@ modules:
project-id: 10649
url-template: https://libzip.org/download/libzip-$version.tar.xz
- - name: glm
- buildsystem: cmake-ninja
- cleanup: ['*']
- no-make-install: true
- post-install:
- - install -d ${FLATPAK_DEST}/include
- - cp -R glm ${FLATPAK_DEST}/include
- - cp -R cmake/glm ${FLATPAK_DEST}/lib/cmake
- sources:
- - type: archive
- url: https://github.com/g-truc/glm/releases/download/0.9.9.8/glm-0.9.9.8.zip
- sha256: 37e2a3d62ea3322e43593c34bae29f57e3e251ea89f4067506c94043769ade4c
-
- name: fmt
buildsystem: cmake-ninja
config-opts:
@@ -1228,6 +1229,84 @@ modules:
# Cemu - END
+ # Vita3K - START
+ # Vita3K is writing some files in its own directory
+ # So that is placed in /var/data/Vita3K and not in the readonly filesystem
+ # This module is just fetching the file so it will be unique for this build
+
+ - name: vita3k
+ buildsystem: simple
+ build-commands:
+ # Creating an empty symlink that will point to Vita3K binary
+ - ln -s /var/data/Vita3K/Vita3K ${FLATPAK_DEST}/bin/Vita3K
+ # Copying the user icon
+ - mkdir -p ${FLATPAK_DEST}/retrodeck
+ - cp retrodeck.png ${FLATPAK_DEST}/retrodeck
+ # preparing the vita3k zip for later
+ - mv ubuntu-latest.zip ${FLATPAK_DEST}/retrodeck/vita3k.zip
+ sources:
+ - type: file
+ url: https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip
+ sha256: VITA3KSHAPLACEHOLDER
+ - type: file
+ path: res/retrodeck.png
+
+ # Vita3K - END
+
+ # SOLARUS - START
+ # https://github.com/flathub/org.solarus_games.solarus.Launcher
+
+ - name: luajit
+ no-autogen: true
+ cleanup:
+ - /bin
+ - /lib/*.a
+ - /include
+ - /lib/pkgconfig
+ - /share/man
+ sources:
+ - type: archive
+ url: https://luajit.org/download/LuaJIT-2.0.5.tar.gz
+ sha256: 874b1f8297c697821f561f9b73b57ffd419ed8f4278c82e05b48806d30c1e979
+ - type: shell
+ commands:
+ - sed -i 's|/usr/local|/app|' ./Makefile
+
+ - name: libmodplug
+ cleanup:
+ - /include
+ sources:
+ - type: archive
+ url: https://download.sourceforge.net/project/modplug-xmms/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz
+ sha512: 880e10154fd367ee24ace53ca7e32a5c1fee7dfff1f934e6499944c12779427da63e2f55f8d6ce25db0a42a5b4424053bf64305b31dbfc4ef6a8909924d655fd
+
+ - name: physfs
+ buildsystem: cmake-ninja
+ config-opts:
+ - -DPHYSFS_BUILD_TEST=OFF
+ sources:
+ - type: archive
+ url: https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2
+ sha256: 304df76206d633df5360e738b138c94e82ccf086e50ba84f456d3f8432f9f863
+ size: 194888
+ x-checker-data:
+ type: anitya
+ project-id: 3631
+ url-template: https://icculus.org/physfs/downloads/physfs-$version.tar.bz2
+
+ - name: solarus
+ buildsystem: cmake-ninja
+ builddir: true
+ config-opts:
+ - -DSOLARUS_GUI=OFF
+ sources:
+ - type: git
+ url: https://gitlab.com/solarus-games/solarus.git
+ tag: v1.6.5
+ commit: 3aec70b0556a8d7aed7903d1a3e4d9a18c5d1649
+
+ # SOLARUS - END
+
# External manifests end
- name: retrodeck
@@ -1260,14 +1339,12 @@ modules:
# Tools
- mkdir -p /app/tools
- - cp tools/configurator.sh /app/tools/configurator.sh
- - chmod +x /app/tools/configurator.sh
- - cp tools/retrodeck_function_wrapper.sh /app/tools/retrodeck_function_wrapper.sh
- - chmod +x /app/tools/retrodeck_function_wrapper.sh
+ - cp -r tools/** /app/tools
+ - find /app/tools -name '*.py|*.sh' -exec chmod +x {} \;
# Function libraries
- mkdir -p /app/libexec
- - cp -r functions/* "/app/libexec/"
+ - cp -r functions/** "/app/libexec/"
# Desktop entries
- cp net.retrodeck.retrodeck.desktop /app/share/applications/net.retrodeck.retrodeck.desktop
@@ -1295,4 +1372,4 @@ modules:
sources:
- type: git
url: https://github.com/XargonWan/RetroDECK.git
- branch: THISBRANCH
+ branch: THISBRANCH
\ No newline at end of file
diff --git a/old/removed-modules.yml b/old/removed-modules.yml
index 968982ed..43d5cab3 100644
--- a/old/removed-modules.yml
+++ b/old/removed-modules.yml
@@ -129,26 +129,64 @@
# Ryujinx Appimage - END
- # Vita3K - START
- # Very broken, disabled
- # NOTE: this is a continuos release, it's provided but not supported
- # to update this module:
- # wget https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip -O rd-submodules/vita3k/vita3k-14-01-23.zip
- # sha256sum rd-submodules/vita3k/vita3k*.zip
- # change url and sha
- # check the branch in the url
+ # Ryujinx - START
+ # https://github.com/flathub/org.ryujinx.Ryujinx
- # - name: Vita3K
- # buildsystem: simple
- # build-commands:
- # - |
- # mkdir -p ${FLATPAK_DEST}/vita3k
- # cp -r * ${FLATPAK_DEST}/vita3k
- # chmod +x ${FLATPAK_DEST}/vita3k/Vita3K
- # ln -s ${FLATPAK_DEST}/vita3k/Vita3K /app/bin/Vita3K
- # sources:
- # - type: archive
- # url: https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip
- # sha256: VITASHAPLACEHOLDER
+ - name: Ryujinx
+ buildsystem: simple
+ build-options:
+ no-debuginfo: true
+ no-debuginfo-compression: true
+ strip: false
+ arch:
+ x86_64:
+ env:
+ RUNTIME: linux-x64
+ env:
+ PKG_CONFIG_PATH: /app/lib/pkgconfig:/app/share/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
+ DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true'
+ RYUJINX_VERSION: 1.1.1014
+ RYUJINX_TARGET_RELEASE_CHANNEL_OWNER: flathub
+ RYUJINX_TARGET_RELEASE_CHANNEL_REPO: org.ryujinx.Ryujinx
+ RYUJINX_TARGET_RELEASE_CHANNEL_NAME: master
+ build-commands:
+ - |
+ export PATH=$PATH:/run/build/Ryujinx/dotnet-sdk
+ export RYUJINX_GIT_SHORT_HASH=$(git rev-parse --short HEAD)
+ export RUNTIME_FRAMEWORK_VERSION=$(find nuget-sources -name 'microsoft.netcore.app.host.linux-x64.*' | grep -oP '(\d.\d.\d+.nupkg)' | grep -oP '(\d.\d.\d+)')
+ sed -r --in-place "s/\%\%RYUJINX_BUILD_VERSION\%\%/$RYUJINX_VERSION/g;" src/Ryujinx.Common/ReleaseInformation.cs
+ sed -r --in-place "s/\%\%RYUJINX_BUILD_GIT_HASH\%\%/$RYUJINX_GIT_SHORT_HASH/g;" src/Ryujinx.Common/ReleaseInformation.cs
+ sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_NAME\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_NAME/g;" src/Ryujinx.Common/ReleaseInformation.cs
+ sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_OWNER\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_OWNER/g;" src/Ryujinx.Common/ReleaseInformation.cs
+ sed -r --in-place "s/\%\%RYUJINX_TARGET_RELEASE_CHANNEL_REPO\%\%/$RYUJINX_TARGET_RELEASE_CHANNEL_REPO/g;" src/Ryujinx.Common/ReleaseInformation.cs
+ mkdir -p /app/bin
+ dotnet publish -c Release -r $RUNTIME /p:DebugType=embedded src/Ryujinx /p:Version=$RYUJINX_VERSION /p:SourceRevisionId=$RYUJINX_GIT_SHORT_HASH /p:ExtraDefineConstants="DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" /p:RuntimeFrameworkVersion=$RUNTIME_FRAMEWORK_VERSION --self-contained --source nuget-sources
+ if [ $? -ne 0 ]; then
+ exit 1;
+ fi;
+ cp -r --remove-destination /run/build/Ryujinx/src/Ryujinx/bin/Release/net7.0/$RUNTIME/publish/* /app/bin/
+ chmod +x /app/bin/Ryujinx.sh
+ mkdir -p /app/lib/ffmpeg
+ ln -s /usr/lib/x86_64-linux-gnu/libX11.so.6 /app/lib/libX11.so
+ install -Dm755 ryujinx-wrapper /app/bin/ryujinx-wrapper
+ install -Dm644 distribution/misc/Logo.svg /app/share/icons/hicolor/scalable/apps/ryujinx.svg
+ sources:
+ - type: archive
+ only-arches:
+ - x86_64
+ dest: dotnet-sdk
+ url: https://dotnetcli.azureedge.net/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-x64.tar.gz
+ sha256: 4634fa4da7ae4e3dadb83e320a87fb26f0cb12a7ca02bf9f10e6c3c1c91d645c
+ x-checker-data:
+ type: rotating-url
+ url: https://aka.ms/dotnet/7.0/dotnet-sdk-linux-x64.tar.gz
+ pattern: https://dotnetcli.azureedge.net/dotnet/Sdk/^([\d\.a-z-]+)$/dotnet-sdk-^([\d\.a-z-]+)$-linux-x64.tar.gz
+ - rd-submodules/ryujinx/nuget_sources.json
+ - type: git
+ url: https://github.com/Ryujinx/Ryujinx.git
+ commit: 7ccff037e87f82f3461f3e1422235e29800eaa2f
+ - type: file
+ path: rd-submodules/ryujinx/ryujinx-wrapper
- # Vita3K - END
\ No newline at end of file
+ # Ryujinx - END
\ No newline at end of file
diff --git a/rd-submodules/SDL2-no-libdecor.json b/rd-submodules/SDL2-no-libdecor.json
deleted file mode 100644
index f101d4b0..00000000
--- a/rd-submodules/SDL2-no-libdecor.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "SDL2",
- "buildsystem": "autotools",
- "config-opts": ["--disable-static"],
- "sources": [
- {
- "type": "archive",
- "url": "https://github.com/libsdl-org/SDL/archive/refs/tags/release-2.26.3.tar.gz",
- "sha256": "af0ff86e4a268bc12c915a0ea19ea1a16419ab1426d92bad5f4e26eb31583967"
- }
- ],
- "cleanup": [ "/bin/sdl2-config",
- "/include",
- "/lib/libSDL2.la",
- "/lib/libSDL2main.a",
- "/lib/libSDL2main.la",
- "/lib/libSDL2_test.a",
- "/lib/libSDL2_test.la",
- "/lib/cmake",
- "/share/aclocal",
- "/lib/pkgconfig"]
-}
diff --git a/rd-submodules/vita3k/vita3k-14-01-23.zip b/rd-submodules/vita3k/vita3k-14-01-23.zip
deleted file mode 100644
index 4cd7532e..00000000
Binary files a/rd-submodules/vita3k/vita3k-14-01-23.zip and /dev/null differ
diff --git a/res/retrodeck.png b/res/retrodeck.png
new file mode 100755
index 00000000..d16329c3
Binary files /dev/null and b/res/retrodeck.png differ
diff --git a/tools/configurator.sh b/tools/configurator.sh
index 8e8c5740..7638c73d 100644
--- a/tools/configurator.sh
+++ b/tools/configurator.sh
@@ -29,11 +29,14 @@ source /app/libexec/global.sh
# - Citra
# - Dolphin
# - Duckstation
+# - MAME
# - MelonDS
# - PCSX2
# - PPSSPP
# - Primehack
# - RPCS3
+# - Ryujinx
+# - Vita3K
# - XEMU
# - Yuzu
# - Tools
@@ -74,6 +77,7 @@ source /app/libexec/global.sh
# - Reset PPSSPP
# - Reset Primehack
# - Reset RPCS3
+# - Reset Ryujinx
# - Reset XEMU
# - Reset Yuzu
# - Reset All Emulators
@@ -84,6 +88,7 @@ source /app/libexec/global.sh
# - Full changelog
# - Version-specific changelogs
# - RetroDECK Credits
+# - Add to Steam
# - Developer Options (Hidden)
# - Change Multi-user mode
# - Change Update channel
@@ -100,13 +105,15 @@ configurator_welcome_dialog() {
"RetroDECK: Tools" "Compress games, move RetroDECK and install optional features" \
"RetroDECK: Troubleshooting" "Backup data, perform BIOS / multi-disc file checks checks and emulator resets" \
"RetroDECK: About" "Show additional information about RetroDECK" \
+ "Sync with Steam" "Sync with Steam all the favorites games" \
"Developer Options" "Welcome to the DANGER ZONE")
else
welcome_menu_options=("Presets & Settings" "Here you find various presets, tweaks and settings to customize your RetroDECK experience" \
"Open Emulator" "Launch and configure each emulators settings (for advanced users)" \
"RetroDECK: Tools" "Compress games, move RetroDECK and install optional features" \
"RetroDECK: Troubleshooting" "Backup data, perform BIOS / multi-disc file checks checks and emulator resets" \
- "RetroDECK: About" "Show additional information about RetroDECK" )
+ "RetroDECK: About" "Show additional information about RetroDECK" \
+ "Add to Steam" "Add to Steam all the favorite games, it will not remove added games")
fi
choice=$(zenity --list --title="RetroDECK Configurator Utility" --cancel-label="Quit" \
@@ -136,6 +143,10 @@ configurator_welcome_dialog() {
configurator_about_retrodeck_dialog
;;
+ "Sync with Steam" )
+ configurator_add_steam
+ ;;
+
"Developer Options" )
configurator_generic_dialog "RetroDECK Configurator - Developer Options" "The following features and options are potentially VERY DANGEROUS for your RetroDECK install!\n\nThey should be considered the bleeding-edge of upcoming RetroDECK features, and never used when you have important saves/states/roms that are not backed up!\n\nYOU HAVE BEEN WARNED!"
configurator_developer_dialog
@@ -427,13 +438,16 @@ configurator_open_emulator_dialog() {
"Citra" "Open the N3DS emulator Citra" \
"Dolphin" "Open the Wii & GC emulator Dolphin" \
"Duckstation" "Open the PSX emulator Duckstation" \
+ "MAME" "Open the Multiple Arcade Machine Emulator emulator MAME" \
"MelonDS" "Open the NDS emulator MelonDS" \
"PCSX2" "Open the PS2 emulator PSXC2" \
"PPSSPP" "Open the PSP emulator PPSSPP" \
"Primehack" "Open the Metroid Prime emulator Primehack" \
"RPCS3" "Open the PS3 emulator RPCS3" \
+ "Ryujinx" "Open the Switch emulator Ryujinx" \
+ "Vita3K" "Open the PSVita emulator Vita3K" \
"XEMU" "Open the Xbox emulator XEMU" \
- "Yuzu" "Open the Switch emulator Yuzu" )
+ "Yuzu" "Open the Switch emulator Yuzu")
case $emulator in
@@ -457,6 +471,10 @@ configurator_open_emulator_dialog() {
duckstation-qt
;;
+ "MAME" )
+ mame
+ ;;
+
"MelonDS" )
melonDS
;;
@@ -477,6 +495,14 @@ configurator_open_emulator_dialog() {
rpcs3
;;
+ "Ryujinx" )
+ ryujinx-wrapper
+ ;;
+
+ "Vita3K" )
+ Vita3K
+ ;;
+
"XEMU" )
xemu
;;
@@ -516,7 +542,7 @@ configurator_retrodeck_tools_dialog() {
;;
"Install: RetroDECK SD Controller Profile" )
- configurator_generic_dialog "RetroDECK Configurator - Install: RetroDECK Controller Profile" "We are now offering a new official RetroDECK controller profile!\nIt is an optional component that helps you get the most out of RetroDECK with a new in-game radial menu for unified hotkeys across emulators.\n\nThe files need to be installed outside of the normal ~/retrodeck folder, so we wanted your permission before proceeding.\n\nThe files will be installed at the following shared Steam locations:\n\n$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/\n$HOME/.steam/steam/controller_base/templates/RetroDECK_controller_config.vdf"
+ configurator_generic_dialog "RetroDECK Configurator - Install: RetroDECK Controller Profile" "We are now offering a new official RetroDECK controller profile!\nIt is an optional component that helps you get the most out of RetroDECK with a new in-game radial menu for unified hotkeys across emulators.\n\nThe files need to be installed outside of the normal ~/retrodeck folder, so we wanted your permission before proceeding.\n\nThe files will be installed at the following shared Steam locations:\n\n$HOME/.steam/steam/tenfoot/resource/images/library/controller/binding_icons/\n$HOME/.steam/steam/controller_base/templates"
if [[ $(configurator_generic_question_dialog "Install: RetroDECK Controller Profile" "Would you like to install the official RetroDECK controller profile?") == "true" ]]; then
install_retrodeck_controller_profile
configurator_generic_dialog "RetroDECK Configurator - Install: RetroDECK Controller Profile" "The RetroDECK controller profile install is complete.\nSee the Wiki for more details on how to use it to its fullest potential!"
@@ -979,6 +1005,7 @@ configurator_reset_dialog() {
"PPSSPP" "Reset the PSP emulator PPSSPP to default settings" \
"Primehack" "Reset the Metroid Prime emulator Primehack to default settings" \
"RPCS3" "Reset the PS3 emulator RPCS3 to default settings" \
+ "Ryujinx" "Reset the Switch emulator Ryujinx to default settings" \
"XEMU" "Reset the XBOX emulator XEMU to default settings" \
"Yuzu" "Reset the Switch emulator Yuzu to default settings" )
@@ -1091,6 +1118,11 @@ configurator_about_retrodeck_dialog() {
esac
}
+configurator_add_steam() {
+ python3 /app/libexec/steam-sync/steam-sync.py
+ configurator_welcome_dialog
+}
+
configurator_version_history_dialog() {
local version_array=($(xml sel -t -v '//component/releases/release/@version' -n $rd_appdata))
local all_versions_list=()
diff --git a/wiki-rtd/EmulationStation-DE-Themes.md b/wiki-rtd/EmulationStation-DE-Themes.md
deleted file mode 100644
index 2aee3876..00000000
--- a/wiki-rtd/EmulationStation-DE-Themes.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Themes general information
-
-## How to switch between themes?
-Go into `Main Menu` - `UI Settings` - `Theme Set` to select the theme you want to use.
-
-## ES-DE Theme List
-Look over at the [Theme List](https://gitlab.com/es-de/themes/themes-list) and find themes you like.
-
-## How do I add additional themes?
-
-RetroDECK uses [ES-DE](https://www.es-de.org) for its interface so any theme that is compatible with ES-DE can also be used with RetroDECK
-
-### From the Theme Downloader
-
-Go into `Main Menu` - `UI Settings` - `Theme Downloader` from there you can download a wide array of themes.
-
-### From the Internet
-If you find a theme you would like to use that is not in the `Theme Downloader` please download it and place it in `~/retrodeck/themes` (make sure the theme has its own folder in that directory).
-
-## FAQs: Frequently asked questions on Themes
-
-["Why does the theme I am using not work?" or "Why does the layout look broken?" (black screen with blue text)](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#why-does-the-theme-i-am-using-not-work-or-why-does-the-layout-look-broken-black-screen-with-blue-text)
-
-[Why does the theme layout look squished?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#why-does-the-theme-layout-look-squished)
-
-# RetroDECK: Included Theme
-
-## Art Book Next
-
-| System View | Gamelist View |
-|----|----|
-| ![rd-theme-ArtBookNext-SystemView](https://user-images.githubusercontent.com/1454947/193457029-9a7a1207-fe05-4cd1-8b18-eb4112e903e9.jpeg)| ![rd-theme-ArtBookNext-GamelistView](https://user-images.githubusercontent.com/1454947/193457123-505ccd23-6477-43d8-baaa-1360ed3c250e.jpeg) |
-
-**Description:**
-Art Book Next is a theme that tries to emulate the feeling of flipping trough your game library as if they where pages of a coffee table book.
-
-Source: [Art Book Next on Github](https://github.com/anthonycaccese/art-book-next-retropie)
-Created by: [anthonycaccese](https://github.com/anthonycaccese)
diff --git a/wiki-rtd/Emulators-Diffrent-controller-layouts.md b/wiki-rtd/Emulators-Diffrent-controller-layouts.md
deleted file mode 100644
index 6bce1f64..00000000
--- a/wiki-rtd/Emulators-Diffrent-controller-layouts.md
+++ /dev/null
@@ -1,60 +0,0 @@
-# Different controller layouts in games
-
-## Configurator Switch Y-X and A-B
-You can enable a mode that switches the Y-X and A-B buttons for supported Emulators inside the `RetroDECK Configurator`.
-
-## XBOX layout
-Many devices like the `Steam Deck` uses the XBOX layout
-
-**XBOX button layout:**
-
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `Y` |
-| Left | `X` |
-| Right | `B` |
-| Bottom | `A` |
-
-
-**Example:**
-So if you are emulating a Xbox game that calls for the button `B` to be pressed it corresponds to the right button.
-
-### Nintendo Layout
-
-**Nintendo - button layout:**
-
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `X` |
-| Left | `Y` |
-| Right | `A` |
-| Bottom | `B` |
-
-
-**Example:**
-So if you are emulating a Nintendo game that calls for the button `A` to be pressed it corresponds to the right button.
-
-
-
-## Sony PlayStation Layout
-The Sony PlayStation uses it's icon glyphs to represent it's buttons.
-
-**Sony PlayStation - button layout:**
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `Triangle` |
-| Left | `Square` |
-| Right | `Circle` |
-| Bottom | `X` |
-
-**Example:**
-
-So if you are emulating a PlayStation game that calls for the button `Square` to be pressed it corresponds to the right button.
-
-**Regional differences:**
-
-Depending on the region of your Playstation game, the buttons `Circle` and `X` switches the meaning for confirm and cancel (they are still at the same physical location). But it is good to keep in mind if you are used to exiting out of menus with a certain button and wondering why it works in some games while others not.
-
-**Example:**
-
-In the EU/US `X` is confirm while in Japan `X` is cancel.
\ No newline at end of file
diff --git a/wiki-rtd/Emulators-What's-included.md b/wiki-rtd/Emulators-What's-included.md
deleted file mode 100644
index c8bb4b49..00000000
--- a/wiki-rtd/Emulators-What's-included.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# General information
-The goal is to add more emulators and functions over course of the development cycle.
-
-What follows is a list of all the emulators currently included in RetroDECK:
-
-# RetroArch
-RetroDECK ships will all cores under the stable branch of RetroArch.
-
-# Standalone Emulators
-The following standalone emulators are included
-
-## Yuzu (Switch)
-## Citra (3DS)
-## PCSX2 (PS2)
-## Cemu (WiiU)
-As of 0.7b
-## Dolphin (GameCube/Wii)
-## Primehack (Metroid Prime - Dolphin Fork)
-As of 0.6b
-## Xemu (XBOX)
-## MelondDS (DS)
-## RPCS3 (PS3)
-## PPSSPP (PSP)
\ No newline at end of file
diff --git a/wiki-rtd/FAQs-Frequently-asked-questions.md b/wiki-rtd/FAQs-Frequently-asked-questions.md
deleted file mode 100644
index 16028587..00000000
--- a/wiki-rtd/FAQs-Frequently-asked-questions.md
+++ /dev/null
@@ -1,503 +0,0 @@
-# General questions:
-
-## What is the scope of this project?
-Click here to see the answer
-
-Read the "Whats the long term vision and goals" on the Home page of this wiki.
-
-
-
-## Do you include any games, firmware or BIOS?
-Click here to see the answer
-No, this can never be done for legal reasons.
-
-
-
-### Can you at least point me towards where I can get them?
-Click here to see the answer
-Again...no, this can never be done for legal reasons.
-
-
-
-## Why are games call ROMs?
-Click here to see the answer
-
-ROM stands for "Read Only Memory" and was a common method to store games.
-The games where later dumped from their ROM chips into digitalized files that can be played with an emulator.
-Read more on [wikipedia](https://en.wikipedia.org/wiki/Read-only_memory)
-
-
-
-## What is sudo?
-Click here to see the answer
-The command stands for "superuser do" and in the windows world it is called "run as administrator".
-Su in "sudo" refers to the "superuser" or in the windows called the "administrator".
-
-
-
-## Retrodeck is a flatpak, what is it?
-
-Click here to see the answer
-
-A flatpak is generated from a manifest, our manifest is this: https://github.com/XargonWan/RetroDECK/blob/main/net.retrodeck.retrodeck.yml
-There is a software named flatpak-builder that is reading that manifest and downloads and builds everything that is needed.
-
-This is creating the RetroDECK.flatpak file that can be distributed as a file or be included in the official Flathub repository accessible from Discovery.
-
-[Flaptak](https://docs.flatpak.org/en/latest/introduction.html) is like a sandbox, with its own read only filesystem that is different from your computer's filesystem, that's why flatpak is safer than installing something directly in your filesystem, moreover it persists after any SteamOS update.
-
-
-
-## What is RetroDECK cooker?
-Click here to see the answer
-
- Cooker is a bleeding edge snapshot of the current commits, the action of uploading code to GitHub is called commit.
-As you can understand, the code may not be always reviewed and so the cooker it's unstable by its nature, it's just suggested to testers or developer to try bleeding edge function or to contribute.
-
-More info on the pinned post in #💙-i-want-to-help on our [Discord Server](discord.gg/Dz3szYsP8g).
-I don't support the cooker user side.
-
-
-
-### Why the name cooker? 🍲
-Click here to see the answer
-
-That's what cooking in the pot at this moment and not yet ready to be served (released). This name was also used by Linux Mandrake and Mandriva for the bleeding edge channel.
-
-
-
-# Updates, feature requests and more devices/OS questions:
-
-## Will you support the general Linux desktop and not only the Steam Deck?
-Click here to see the answer
-
-Technically it is working, but the user experience might not be that great it could contain desktop specific bugs and other issues.
-You will also need to manually configure the input to match your desktop and might need to tweak more settings. If you want to try it make sure that your distribution has native flatpak support else, you might need to install it.
-We will start to tackle desktop bugs and have a bigger desktop focus after the beta period is over.
-
-
-
-## Will you support other SteamOS or Linux handheld gaming devices with flatpak support?
-Click here to see the answer
-
-
-We do plan to support other SteamOS based devices in the future. But during the BETA we are focusing on the Steam Deck.
-You can get it to run on other Linux based devices it is not just as seamless as we want it to be and does not live up to our higher standards.
-You will need to manually configure the input to match your device and might need to tweak more settings if you try it on a none Steam Deck device. There might also be some hardware specific bugs.
-
-
-
-## Will you support Windows or Windows based devices like the ROG Ally?
-Click here to see the answer
-No, RetroDECK doesn't support Windows, but the project is fully open source so you can port it if you wish.
-As an alternative you could try https://www.retrobat.ovh/ that offers similar functionality.
-
-
-## Will you support MacOS?
-Click here to see the answer
-Not supported and not planned.
-
-
-## Will you support Android/IOS?
-Click here to see the answer
-Not supported and not planned.
-
-
-
-## Will you implement X/Y/Z emulator?
-Click here to see the answer
-
-Our goal is to implement and configure a selection of the best emulators for each system. If your favorite system is not integrated you can request its integration by opening an issue on this github page.
-
-
-
-## Will you implement none emulator software inside of RetroDECK like Batocera?
-Click here to see the answer
-
-Nothing in the short term but maybe in the future. It also need to fit inside the scope of project for example: GZDoom would be ok. But another project like a multimedia center solution like Kodi would not fit.
-
-
-
-## When does the next version of RetroDECK come out?
-Click here to see the answer
-> When it's ready.
-
-
-
-### When does the version after the upcoming version come out?
-Click here to see the answer
-
-After the upcoming version.
-
-### When does the version 1.0 of RetroDECK come out?
-Click here to see the answer
-
-Some time in the future.
-
-
-
-# Documentation questions
-
-## I see ~ refereed in documentation and examples, what does it mean?
-Click here to see the answer
-
-The tilde character ~ is the a short way of saying the logged in users home directory in the UNIX world.
-
-So for example the Steam Deck
-
-`~ = /home/deck`
-
-Read more on [Wikipedia](https://en.wikipedia.org/wiki/Home_directory)
-
-## I see SA refereed in documentation about emulators what does it mean?
-Click here to see the answer
-
-SA means Standalone and the emulator is not inside RetroArch/LibRetro but a separate program launched within RetroDECK.
-
-## I see CLI refereed in documentation what does it mean?
-Click here to see the answer
-CLI stands for command-line interface and is often refereed commands you can run in the the Linux Terminal
-
-
-
-# Other Emulation Solutions questions:
-
-## Are you related to EmuDeck?
-Click here to see the answer
-
-No, the two projects are not related.
-
-
-
-### So what's the difference between RetroDECK and EmuDeck?
-Click here to see the answer
-
-Apart of that from the user point of view EmuDeck and RetroDECK may sound similar but technically they're completely different.
-
-EmuDeck is a shell script that you run in the Steam Decks desktop mode that downloads and configures all the separate emulators & plugins for you from various sources using a built in electron based gui.
-
-RetroDECK is an all-in-one application contained in a sandboxed environment called "flatpak", that is downloaded from Discover (Flathub). This is Valves and other Linux desktops recommended way of distributing applications on the Steam Deck and Linux desktop in a safe way. It grantees for example even if Valve makes major changes to the file system in a SteamOS update, RetroDECK and it’s configurations will not be touched and will be safe.
-
-RetroDECK only writes in these two folders: `~/retrodeck` for roms/configurations/bios etc.. And an hidden flatpak folder located in `~/.var/net.retrodeck.retrodeck`.
-
-As everything is contained within those two folders it will not have conflict if you decide to install an emulator from another source like Yuzu or RetroArch with your RetroDECK setup. Even if you uninstall RetroDECK all your roms/bios/saves/etc.. are safe until you remove the `~/retrodeck` folder. So if you for some reason don't like the application after playing for a while you can easily move out your important files after an uninstall (or you can just reinstall RetroDECK again and start where you left off).
-
-This approach of everything is in a all-in-one package will also allow RetroDECK to do tighter integrations with each bundled emulator in the future and expose all those settings when you are inside RetroDECK, so you do not need to go into Steam Decks desktop mode to do changes and tweaks. All things should be, in the long term, inside the application itself and you can already see a part of that inside the RetroDECK Configurator in the Tools menu.
-
-
-
-### Can I install RetroDECK if I have EmuDeck already?
-Click here to see the answer
-
-Yes, as RetroDECK is completely standalone.
-
-
-
-## Are you related anyway to Batocera?
-Click here to see the answer
-No, but RetroDECK had some dialog before the project started with some of the Batocera crew if there where any plans to start a Batocera non-OS application (there where no plans at that moment and their focus is to make the best retro gaming operative system). RetroDECK and Batocera also have good dialog together with representatives of each projects inside the internal development channels.
-
-
-
-
-## Batocera or EmuDeck or RetroDECK I still don't get it?
-Click here to see the answer
-
-- Batocera is a retro emulation operative system that you need to boot into separately (like from an SDCard) or replace your current OS. For the Steam Deck you lose access to the SteamOS features and your emulation gaming is separate from your SteamOS gamemode gaming. That said; Batocera has many years of development time, is a great mature OS with a lot of features.
-
-- EmuDeck is a shell script that you download and run. The script downloads & configures all the separate emulators & plugins for you from various sources for various operative systems.
-
-- RetroDECK is an all-in-one application that already provides everything you need without to many extra steps for the user.It is on flathub and thus allows the users to update the application via standard safe operative system update methods.
-You can see RetroDECK as the in between of EmuDeck and Batocera. We hope that one day we can offer a complete Batocera-like experience right inside your operative system.
-
-
-
-## What is your relationship with EmulationStation Desktop Edition (ES-DE)?
-Click here to see the answer
-
-ES-DE and RetroDECK are separate projects, but we collaborate to give the best possible user experience.
-We have a unique partnership where inside the ES-DE code is a section just for RetroDECK specific features.
-[Read more on ES-DE FAQs](https://gitlab.com/es-de/emulationstation-de/-/blob/master/FAQ.md#what-is-the-relationship-between-es-de-and-retrodeck)
-
-
-
-# RetroDECK usage questions:
-
-## Can I launch RetroDECK from inside of the Steam Decks gamemode?
-Click here to see the answer
-Yes, RetroDECK currently only supports Steam Deck's gamemode as it relies on Steam Controller configs.
-To add it into Steam please check the second step of [[Steam Deck: Installation and updates]].
-
-
-
-
-## Do I have to partition or format my disk/sdcard to install RetroDECK?
-
-Click here to see the answer
-
-No, partitioning or formatting is not needed at all. RetroDECK (differently from AmberELEC, Batocera and others) comes as a flatpak. Just install it as any other application and launch it from your desktop and/or Steam library.
-
-
-
-## Can I move the ROMs folder to another place?
-Click here to see the answer
-
-Yes, you can do so inside the configurator and the `Move RetroDECK` option.
-
-
-
-## Is there a way to reset RetroDECK?
-Click here to see the answer
-
-Yes, you can reset various parts of the software using the RetroDECK configurator under the option reset
-
-Or you can use CLI arguments in the terminal.
-
-Resets the whole RetroDECK at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset-all
-```
-Resets RetroArch configs at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset-ra
-```
-Resets all the standalone emulators configs at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset-sa
-```
-
-
-
-## How do I uninstall RetroDECK?
-Click here to see the answer
-
-**On the Steam Deck:**
-
-Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
-
-* Go into Discover
-* Press the `Installed` tab and find RetroDECK
-* Press the `Uninstall` button
-* Manually backup then remove the ~\RetroDECK folder. Warning! Make a backup your data roms/bios/saves etc if you want to save them else they will be gone.
-
-
-
-
-## Does uninstalling RetroDECK remove my roms, bios and saves?
-Click here to see the answer
-No, as long as you don't manually don't delete the ~\RetroDECK folder and it's content your data is safe. You could uninstall RetroDECK and install it again and keep going.
-
-
-
-
-## Where can I find the logfiles?
-Click here to see the answer
-> In `~/retrodeck/logs/retrodeck.log`
-
-
-
-## Can I add a single game to my Steam Library or with Steam Rom Manager?
-Click here to see the answer
-
-Not yet but might be in the future, it is technical possible but quite complicated and needs to be done via launch script. We hope we can simplify this in the future via an API call or inside the Configurator.
-
-Example of a launch script to launch to launch a Wii game called Baloon World:
-
-`flatpak run --command=dolphin-emu-wrapper net.retrodeck.retrodeck -e "/run/media/mmcblk0p1/retrodeck/roms/wii/Baloon World.rvz" -b `
-
-
-
-## If I installed RetroDECK from outside of discover, do I need to uninstall the application to update?
-Click here to see the answer
-If you previously installed from outside of Discover, you can find the instructions here to
-
-[install from discover](https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck-Installation-and-updates)
-
-or here
-
-[to install .flatpak file](https://github.com/XargonWan/RetroDECK/wiki/Developer-notes#managing-retrodeck-flatpak-file).
-
-## After installing RetroDECK manually, Discover is not opening or giving me some errors?
-Click here to see the answer
-
-This bug is appearing only when installing RetroDECK manually and not from Discover. The discover release is suggested for all the users.
-However you can run this to fix it: `flatpak remote-delete retrodeck-origin`
-
-
-
-
-# General emulation & games questions:
-
-## What emulators and software is included in RetroDECK?
-Click here to see the answer
-
-You can check this wiki what emulators are currently bundled. We plan to have support for most of the emulators ES-DE support in the long term.
-
-
-
-## How can I set another default emulator?
-
-Click here to see the answer
-
-The ES-DE interface allows you to change emulators for systems that has many different emulators. In the main menu go to `Other Settings` - `Alternative Emulators` to set other defaults.
-
-
-
-## Game X/Y/Z is not working or showing black screen
-Click here to see the answer
-
-Some emulators needs BIOS and/or firmware files, first you can check if you got the [needed ones](https://github.com/XargonWan/RetroDECK/wiki/BIOS-&-Firmware).
-
-Then you can check if your got a bad dump by comparing your hash with the ones of the official lists on the internet, such as [no-intro](https://datomatic.no-intro.org/index.php?page=search&s=64) or even [RetroAchievements](https://retroachievements.org) if your game is supported.
-Moreover please mind that some emulator require very specific roms, please [read here](https://github.com/XargonWan/RetroDECK/wiki/How-to-Manage-your-games#special-roms-formats).
-If it still not working you are welcome to ask for support on our [Discord Server](discord.gg/Dz3szYsP8g).
-
-
-
-## PS2 games are not working or buggy in the RetroArch Core.
-Click here to see the answer
-
-It's a known issue with if you are using the libretro core but you can use the the standalone pcsx2 emulator to solve this issue.
-Be sure to check that the bios files are in the correct folder. Read more on the [Emulators: BIOS and Firmware](https://github.com/XargonWan/RetroDECK/wiki/Emulators%3A-BIOS-and-Firmware)# page on this wiki.
-
-
-
-## I configured RetroArch but the configuration was not saved.
-Click here to see the answer
-
-Configuring RetroArch can be dangerous for an inexperienced user, so RetroDECK is set to don't save the RetroArch configuration upon exiting.
-The configuration must be saved willingly by going to: `Main Menu` -> `Configuration File` -> `Save Current Configuration`.
-If you find some better configurations however, you may contribute by sharing it on the #💙-i-want-to-help channel on our [Discord Server](discord.gg/Dz3szYsP8g) that may be included in the next version.
-
-
-
-## Will you support Lightguns (Sinden, Gun4IR, Samco etc...)?
-Click here to see the answer
-
-The long term answer is yes, but there are several issues that need to be addressed from various dependencies that are beyond the scope of what RetroDECK can do by it self. We are talking to several projects and hope to have those issues addressed in the future. Right now the best way to use lightgun hardware is to use Batocera as they have developed native support in their OS.
-
-
-
-# Steam Deck emulation questions:
-
-## XBOX games are slow on the Steam Deck
-Click here to see the answer
-
-Unfortunately on thanks to missing optimizations focusing on the Steam Deck and the hardware is limited in scope makes performance not great. Like most emulators they will get improvements over time and we will follow the XBOX emulators progress with great interest.
-
-
-
-## The games are stuck at 30FPS on the Steam Deck!
-Click here to see the answer
-
-Press the [...] button on the Steam Deck, go into the Power menu and see if the Framerate Limit is set to 30FPS and set it to 60FPS or off.
-
-
-
-## Fast forwarding is slow on the Steam Deck!
-Click here to see the answer
-
-Same as above: Check the Power menu Framerate Limit.
-
-
-
-
-# Theme questions:
-
-## How can I add more themes?
-Click here to see the answer
-In the future we wish to include a themes browser and downloader, but for the moment you can put your own themes here:
-~/retrodeck/themes
-
-
-
-## How do you switch between themes inside of RetroDECK?
-Click here to see the answer
-
-**On the Steam Deck:**
-you can switch between them by pressing the `☰` button to open the menu and then navigate to `UI Settings > Theme Set` to select the theme you want to use.
-
-
-
-## "Why does the theme I am using not work?" or "Why does the layout look broken?" (black screen with blue text)?
-Click here to see the answer
-
-* Please make sure you are specifically using a theme that is compatible with [ES-DE](https://www.es-de.org).
-
-* If you are trying to use a theme that was built for Batocera it will likely not be compatible.
-
-* ES-DE uses a unique theme engine so themes are not directly portable from Batocera.
-
-* Please see ES-DE's [User Guide](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#themes) for more details.
-
-
-
-
-## Why does the theme layout look squished?
-Click here to see the answer
-
-* 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.
-
-* All of 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.
-
-* 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.
-
-
-
-# Scraping questions
-
-## Can I manually add custom game images/videos/media for games that I can not scrape?
-Click here to see the answer
-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)
-
-
-
-## Where is my scraped data?
-Click here to see the answer
-In `~/retrodeck/downloaded_media`
-
-
-
-
-## I got some weird error message about quota after scraping!
-Click here to see the answer
-
-The error message mentions something about quota. You have a quota limit on how much you can scrape each day from [Screenscraper.fr ](https://www.screenscraper.fr/) where each item you scrape counts as 1 quota of the daily total.
-You can pay them to get a bit more daily quota and show your support or just wait 24 hours.
-
-
-## I got some weird error message about about server or service!
-Click here to see the answer
-
-The website is down, check [Screenscraper.fr](https://www.screenscraper.fr/) when they get back up.
-
-
-
-## The scraping is too slow!
-Click here to see the answer
-
-[Screenscraper.fr](https://www.screenscraper.fr/) offers different types of donations that can increase your speed with extra threads.
-
-
-
-## My systems storage ran out after scraping!
-Click here to see the answer
-
-Images and videos takes a lot of space, you can clean some out under `~/retrodeck/downloaded_media`
-
-
-
-### But I still want them!
-Click here to see the answer
-
-Delete something else or buy more storage.
-
-
-## Can I move the downloaded_media folder?
-Click here to see the answer
-
-You can move it with the the move RetroDECK option inside the configurator.
-
-
diff --git a/wiki-rtd/How-to-Getting-started.md b/wiki-rtd/How-to-Getting-started.md
deleted file mode 100644
index 12eea100..00000000
--- a/wiki-rtd/How-to-Getting-started.md
+++ /dev/null
@@ -1,104 +0,0 @@
-# Getting started
-
-This is a guide on how to get started with RetroDECK
-
-# Step 0: Prerequisites
-
-## What do I need?
-You need to meet the following prerequisites before you start following this guide:
-
-* You need to have a device to install RetroDECK on (we currently only support the Steam Deck).
-* Read up on the FAQs pages:
-[Do you include any games, firmware or BIOS?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#do-you-include-any-games-firmware-or-bios)
-[Where can I get them?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#can-you-at-least-point-me-towards-where-i-can-get-them)
-[What does ~ mean?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#i-see--refereed-in-documentation-and-examples-what-does-it-mean)
-* Have related BIOS & Firmware ready
-* Have backup rom files of the games you want to play ready
-
-# Step 1: Installation & Configuration
-Only install RetroDECK from the official channels via flathub!
-
-## Steam Deck - Installation
-Read and follow the:
-
-* [Installation guide for the Steam Deck](https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck-Installation-and-updates)
-
-## Linux Desktop - Installation
-
-(more information later)
-
-
-## Other SteamOS devices - Installation
-
-(more information later)
-
-# Step 2: BIOS & Firmware
-
-**NOTE:** On the Steam Deck this step needs to be done in Desktop Mode
-
-## Information
-Read up on [BIOS & Firmware](https://github.com/XargonWan/RetroDECK/wiki/BIOS-and-Firmware)
-
-* The BIOS & Firmware files go into the `~/retrodeck/bios/` directory
-
-
-**Example:**
-You have a BIOS for the PSX called `exampleBIOSPSX.bin`, you just put that file into the `~/retrodeck/bios/` folder.
-
-# Step 3: ROMs
-
-**NOTE:** On the Steam Deck this step needs to be done in Desktop Mode
-
-## On ROMs
-
-Rom files needs to be put in their corresponding system directory inside the `roms` folder.
-Note that the `roms` folder location can be different depending on where you choose to put it during the installation process. The following options are available during the installation:
-
-### **Choice: Internal**
-If during the installation of RetroDECK you choose the Internal option for the roms folder:
-The roms folder is:`~/retrodeck/roms/`
-
-### **Choice: SDCard**
-If during the installation of RetroDECK you choose the SDCard option for the roms folder:
-The roms folder is: `/retrodeck/roms/`
-
-(Please note that the `` is an example and not called so inside your Linux/SteamOS system but rather your unique per SDCard ID number).
-
-
-## Let's get started on ROMs:
-
-Read up on [Emulators: Folders & File extensions](https://github.com/XargonWan/RetroDECK/wiki/Emulators-Folders-&-File-extensions) to see what folder each system has.
-* Put the corresponding roms inside the corresponding system folder
-
-**Example:**
-You have an example NES game called `ExampleNESGame.nes`
-You have to put that game into the `/retrodeck/roms/nes` folder.
-
-# Step 4: Playing the ROMs
-
-## Steam Deck - Gamemode
-Return to gamemode on the Steam Deck and start up RetroDECK. Now the systems you put rom files for should be shown and be able to be played.
-
-**Example:**
-The NES column should now be shown with our `ExampleNESGame.nes` from `Step 3`
-
-# Step 5: Making the games "pretty" with videos, images and art.
-
-Do the following:
-1. Make an account on https://www.screenscraper.fr/
-2. Read up on scraping on the [ES-DE Guide](https://github.com/XargonWan/RetroDECK/wiki/EmulationStation-DE-User-Guide#scraping-and-editing-roms-metadata-images-etc)
-3. Login to your screenscraper account inside RetroDECK and start scraping.
-4. Look at your nice pretty games.
-
-Also read:
-* [I got some weird error message about quota after scraping in a foreign language from screenscraper.fr](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#i-got-some-weird-error-message-about-quota-after-scraping-in-a-foreign-language-from-screenscraperfr)
-* [My system storage ran out after scraping!](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#my-system-storage-ran-out-after-scraping)
-
-# Step 6: Themes
-RetroDECK comes with several themes built in for the ES-DE interface.
-
-## How to switch between themes?
-* On the Steam Deck: you can switch between them by pressing the `☰` button to open the menu and then navigate to `UI Settings > Theme Set` to select the theme you want to use.
-
-## How to add more themes?
-[More information on themes and how to add more](https://github.com/XargonWan/RetroDECK/wiki/EmulationStation-DE-Themes)
diff --git a/wiki-rtd/Known-Issues.md b/wiki-rtd/Known-Issues.md
deleted file mode 100644
index d0076c7a..00000000
--- a/wiki-rtd/Known-Issues.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Not yet officially implemented in RetroDECK
-Some of these features can be configured by the users manually but work is being done to implement across the board over time.
-
-**Missing features:**
-
-* Cloud saves
-* Netplay
-* External controller support *
-* External display resolution support
-* Not all Emulators supported by ES-DE are included as of this moment (more will be added all the time).
-* A configurator that is controller usable
-* Better art
-
-( * External controller support "semi works" in some emulators if you have docked the Steam Deck and pair a Bluetooth controller inside the Steam Gamemode GUI. Not all hotkey combinations will work how ever!)
-
-# Issues, bugs and suggestions
-For a list of reported issues please check here on github: [RetroDECK issues](https://github.com/XargonWan/RetroDECK/issues)
\ No newline at end of file
diff --git a/wiki-rtd/Licences.md b/wiki-rtd/Licences.md
deleted file mode 100644
index 64910a3b..00000000
--- a/wiki-rtd/Licences.md
+++ /dev/null
@@ -1,93 +0,0 @@
-# RetroDECK
-
-https://github.com/XargonWan/RetroDECK/blob/main/LICENSE
-
-# Features, front-end and assets
-
-## ES-DE
-
-https://gitlab.com/es-de/emulationstation-de/-/blob/master/LICENSE
-
-https://gitlab.com/es-de/emulationstation-de/-/tree/master/licenses
-
-## Pixelitos
-
-https://github.com/ItzSelenux/pixelitos-icon-theme/blob/main/LICENSE
-
-## Kenny.nl
-CC0 & CC1 (Various assets)
-https://www.kenney.nl/assets
-
-# Emulators & Software
-
-## RetroArch & LibreRetro
-
-https://docs.libretro.com/development/licenses/
-
-## Duckstation
-
-https://github.com/stenzek/duckstation/blob/master/LICENSE
-
-## RPCS3
-
-https://github.com/RPCS3/rpcs3/blob/master/LICENSE
-
-## Dolphin & Primehack
-
-https://github.com/dolphin-emu/dolphin/blob/master/LICENSE
-
-https://github.com/Kekun/primehack/blob/master/LICENSE
-
-## MAME
-https://github.com/mamedev/mame/blob/master/COPYING
-
-## Yuzu
-
-https://github.com/yuzu-emu/yuzu/blob/master/LICENSE.txt
-
-
-## Ryujinx
-
-https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt
-
-
-## Citra
-
-https://github.com/citra-emu/citra/blob/master/license.txt
-
-## Xenia
-
-https://github.com/xenia-project/xenia/blob/master/LICENSE
-
-## Cemu
-
-https://github.com/cemu-project/Cemu/blob/main/LICENSE.txt
-
-## Xemu
-
-https://github.com/xemu-project/xemu
-
-## PPSSPP
-
-https://github.com/hrydgard/ppsspp/blob/master/LICENSE.TXT
-
-## MelonDS
-
-https://github.com/melonDS-emu/melonDS/blob/master/LICENSE
-
-## PCXS2
-https://github.com/PCSX2/pcsx2/blob/master/COPYING.GPLv3
-
-## Vita3K
-https://github.com/Vita3K/Vita3K/blob/master/COPYING.txt
-
-## ZDoom / GZDoom
-
-https://github.com/ZDoom/gzdoom/blob/master/LICENSE
-
-## ScummVM
-https://github.com/scummvm/scummvm/blob/master/COPYING
-
-## Capsimg
-https://github.com/rsn8887/capsimg/blob/master/LICENCE.txt
-
diff --git a/wiki-rtd/Playstation-3-RPCS3.md b/wiki-rtd/Playstation-3-RPCS3.md
deleted file mode 100644
index 4a622ea9..00000000
--- a/wiki-rtd/Playstation-3-RPCS3.md
+++ /dev/null
@@ -1,87 +0,0 @@
-# Where to put the games?
-PS3 games comes either as a Blu-ray rip directory (folder) with a bunch of different files or a digital PSN title that needs to be installed (see guide on this page).
-
-PS3 games should be put under the `retrodeck/roms/ps3/` directory.
-
-# How to: Install the PS3UPDAT.PUP firmware
-
-There are two ways to install the firmware:
-
-## Install PS3 firmware from RetroDECK Configurator
-
-1. Open RPCS3 `RetroDECK Configurator` - `RetroDECK: Tools` - `Install: PS3 Firmware`.
-2. Press `OK` and this will download the PS3 Firmware and open RPCS3.
-3. You will get a prompt asking if you want to install the firmware from the /tmp/ folder, say `Yes`
-4. Wait for the installation to finish
-5. Exit RPCS3 from the GUI under `File -> Exit`
-
-## Manual Download
-1. Download the latest PS3 firmware `PS3UPDAT.PUP` from Sony [here](https://www.playstation.com/en-us/support/hardware/ps3/system-software/)
-2. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
-3. In the RPCS3 interface navigate to `File -> Install Firmware`.
-4. In the file browser navigate and select the file `PS3UPDAT.PUP` file.
-5. The firmware should now be installed.
-
-# How to: Get games to show up inside the ES-DE interface
-To get the games to show up you need to rename the directory to end with a `.ps3` file extension.
-
-_Example:_
-
-You have directory dump of the a game Blu-ray PlayStation 3 game called Hockey World, the directory is called `Hockey World`.
-
-To get the it to show up you need to rename and add `.ps3` in the end of the directory name.
-
-The directory `Hockey World` becomes `Hockey World.ps3` and the game will show up.
-
-
-# How to: Install DLC or patches on disc based games
-
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`. If you want to do it in `Game Mode` you need to press the `Steam` button and switch between windows using the window switcher.
-
-If you want to install some DLC or patch you can do that trough RPCS3 itself.
-
-1. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
-2. In the RPCS3 interface navigate to `File -> Install Packages/Raps/Edats`.
-3. In the file browser navigate and select the file you want to install.
-4. The file will be installed inside the a new game directory on the RPCS3 hard drive under
- `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` where `GAMEID` is unique for each game [PS3GAMEID-List](https://www.gametdb.com/PS3/List).
-5. The patches or dlc should now be installed and in the GAMEID directory.
-6. Move the content of the GAMEID directory into the games directory inside the `retrodeck/roms/ps3/GAMENAME.ps3` directory and overwrite & replace the files.
-8. You can now remove the `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` directory as the files have been moved.
-9. The game can be launched inside the ES-DE interface with patches and DLC installed.
-
-_Example:_
-
-The game `Hockey World.ps3` inside the `retrodeck/roms/ps3/` has some DLC & and a patch you want to install.
-
-You follow the above guide and install the files.
-
-The installation made a newly created directory called `BCA111111` under `retrodeck/bios/rpcs3/dev_hdd0/game/`.
-
-You open up the directory `retrodeck/bios/rpcs3/dev_hdd0/game/BCA111111` and copy all of it's content and paste it into `retrodeck/roms/ps3/Hockey World.ps3` directory and replace/overwrite the files.
-
-You can then remove the `BCA111111` directory in `retrodeck/bios/rpcs3/dev_hdd0/game/`
-
-# How to: Install digital PSN titles
-
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`. If you want to do it in `Game Mode` you need to press the `Steam` button and switch between windows using the window switcher.
-
-If you want to install some PSN tiltes you can do that trough RPCS3 itself.
-
-1. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
-2. In the RPCS3 interface navigate to `File -> Install Packages/Raps/Edats`.
-3. In the file browser navigate and select the file you want to install.
-4. The file will be installed inside the games directory on the RPCS3 hard drive under
- `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` where `GAMEID` is unique for each game [PS3GAMEID-List](https://www.gametdb.com/PS3/List).
-5. Install any patches or DLC for the game by repeating step .2 and .3 for each file.
-6. After the game is ready move the digital games directory from `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` to `retrodeck/roms/ps3`
-7. Rename the directory to the name of the game and add the .ps3 file extension to the end of the directory (see guide on top).
-8. The game should now show up and be playable inside the ES-DE interface.
-
-
-_Example:_
-
-You installed a file that contained the digital game Hockey World 2, it created a directory called `BCA123456` under `retrodeck/bios/rpcs3/dev_hdd0/game/`
-
-After that you moved `BCA123456` from `retrodeck/bios/rpcs3/dev_hdd0/game/` to `retrodeck/roms/ps3`.
-The directory `BCA123456` is renamed to `Hockey World 2.ps3`.
diff --git a/wiki-rtd/RetroDECK-Configurator.md b/wiki-rtd/RetroDECK-Configurator.md
deleted file mode 100644
index 8490b387..00000000
--- a/wiki-rtd/RetroDECK-Configurator.md
+++ /dev/null
@@ -1,154 +0,0 @@
-# The RetroDECK Configurator
-
-The `RetroDECK Configurator` is a unique multi-use toolbox that exists within RetroDECK to manage/configure/change/reset/edit many aspect of the application and built around the `RetroDECK Framework`.
-
-The`RetroDECK Configurator` can be found:
-
-* In the main menu inside the ES-DE interface
-
-* From CLI
-
-* From the `.desktop` desktop shortcut.
-
-What follows are the commands you can use inside the Configurator (more commands will be added during development).
-
-# Presets & Settings
-
-In this menu you can set various presets.
-
-## Global: Presets & Settings
-In this menu you will find presets and settings that span over multiple emulators.
-
-### RetroAchivements: Login
-Login to RetroAchievements in all supported emulators and cores.
-
-### RetroAchivements: Logut
-Logut from RetroAchievements in all supported emulators and cores.
-
-### RetroAchivements: Hardcore Mode
-Enables `Hardcore Mode` from RetroAchievements in all supported emulators and cores.
-
-### Widescreen: Enable/Disable
-Enables or disable Widescreen in all supported emulators and cores.
-
-### Swap A/B and X/Y: Enable/Disable
-Swaps `A/B` `X/Y` in all supported emulators and cores.
-
-### Ask to Exit prompt: Enable/Disable
-Enables or disables ask to exit prompts in all supported emulators and cores.
-Note: If you disable this, the emulators will directly exit.
-
-## RetroArch: Presets & Settings
-In this menu you will find presets and settings for RetroArch.
-
-### Borders: Enable/Disable
-
-Enable / Disable borders across the RetroArch cores you choose.
-
-### Rewind: Enable/Disable
-
-Enable / Disable rewind across all of RetroArch (this may impact performance on some more demanding systems).
-
-## Wii & Gamecube: Presets & Settings
-In this menu you will find presets and settings for Dolphin and Primehack.
-
-### Dolphin Textures: Universal Dynamic Input
-Enable / Disable Venomalias's Universal Dynamic Input Texture for Dolphin.
-
-### Primehack Textures: Universal Dynamic Input
-Enable / Disable Venomalias's Universal Dynamic Input Texture for Primehack.
-
-# Open Emulator
-Here you launch and configure each emulators settings, the option you choose will open that emulators GUI. For documentation on how to change the settings of each emulators settings please check the website of each emulator.
-
-(Please note that several emulators where not designed with controller input in mind for handling the applications GUI, just the games. So you might need to use other inputs like the Steam Decks touchscreen or a mouse and key board to navigate properly).
-
-The options are the following:
-
-## RetroArch
-Opens RetroArch
-
-## Citra
-Opens Citra
-
-## Dolphin
-Opens Dolphin
-
-## Duckstation
-Opens Duckstation
-
-## MelonDS
-Opens MelonDS
-
-## PCSX2
-Opens PCSX2
-
-## PPSSPP
-Opens PPSSPP
-
-## RPCS3
-Opens RPCS3
-
-## XEMU
-Opens XEMU
-
-## Yuzu
-Opens Yuzu
-
-# RetroDECK: Tools
-
-## Tool: Move files
-
-This option lets you choose the installation path of the RetroDECK folder that handles ROMS,Saves, BIOS etc... to a new location.
-You get the following three options.
-
-`Internal Storage` - Moves the folder to the internal storage.
-`SD CARD` - Moves the folder to the SD CARD
-`Custom Location` - Choose where you want the RetroDECK folder to be.
-
-## Tool: Compress games
-This option enables you to compress disc based game image files `.gdi` `.iso` `.bin` `.cue` to the less space demanding `.chd` format.
-You can choose either a single game or many.
-
-## Install: RetroDECK SD Controller Profile
-This option installs the Steam Deck controller profile to RetroDECK it also resets all emulators configurations to input the correct bindings.
-
-## Install: PS3 Firmware
-This option downloads and installs the latest PS3 firmware. You will have to press OK to install it.
-
-## RetroDECK: Change update settings
-This option lets you turn on or off automatic updates on launch.
-
-# RetroDECK: Troubleshooting
-
-## Backup: RetroDECK Userdata
-Creates backups of the user data folders
-
-## Check & Verify: Multi-file structure
-Verifies to the structure of multi disc/file games that uses `.m3u` files.
-
-## Check & Verify: BIOS
-Shows a detailed BIOS list of missing and current BIOS.
-
-## RetroDECK: Reset
-The reset menu resets various features
-
-### Reset Specific Emulator
-Opens up a menu where you can reset a specific emulator
-
-### Reset All Emulators
-Resets all the emulators at once
-
-### Reset RetroDECK
-Resets the entirety of RetroDECK.
-
-⚠️ WARNING! BACK UP YOUR DATA BEFORE RUNNING THIS! ⚠️
-
-# RetroDECK: About
-This menu contains information about RetroDECK
-
-## Version history
-Displays the changelogs
-
-## Credits
-Displays the credits
\ No newline at end of file
diff --git a/wiki-rtd/RetroDECK-Credits-and-The-Team.md b/wiki-rtd/RetroDECK-Credits-and-The-Team.md
deleted file mode 100644
index 40835378..00000000
--- a/wiki-rtd/RetroDECK-Credits-and-The-Team.md
+++ /dev/null
@@ -1,99 +0,0 @@
-# Credits & The Team
-
-This is the page where we try to introduce the team and thank everyone who have contributed to the project so far.
-If you feel you have contributed to the project but lacks mention, please contact us on discord!
-
-# The Team
-
-## Community Management
-
-### [Lazorne](https://github.com/Lazorne)
-Community management/outreach, testing, documentation, feature suggestions and some design.
-
-.
-Internal meme lord and leader of the "Nordic Pizza Heresy Cult". Instigator of the internal pizza war and "Banana Warlock".
-
-
-## Developers
-
-### [XargonWan](https://github.com/XargonWan)
-RetroDECK project founder and also one of the founding members of [AmberELEC](https://amberelec.org/).
-
-.
-General of the "Italian Pizza Legion" in the internal pizza war.
-
-
-### [IceNine451](https://github.com/icenine451)
-Creator of the `RetroDECK configurator`, the `RetroDECK Framework` and various cool things.
-
-.
-Freedom loving leader of the "Murican Cheese Crust Patriots" in the internal pizza war.
-
-
-### [Lx32](https://github.com/Lx32)
-Develops various new features, functions and tools.
-
-
-.
-1st Commander of the "Italian Pizza Legion" in the internal pizza war.
-
-
-## Testers
-
-### [dottormac](https://github.com/redeemer666)
-Does bleeding edge cooker testing (lives in the danger zone), some feature suggestions and design.
-
-.
-2nd Commander of the "Italian Pizza Legion" in the internal pizza war (might be a spy for the Nordic Cult or Muricans).
-
-
-# Collaborators
-
-### [Niroku / Atari](https://github.com/Hew-ux)
-Helps with community management, is also part of [Batocera](https://batocera.org/)
-
-### [Leon Styhre](https://gitlab.com/leonstyhre)
-Maker of EmulationStation Desktop Edition
-
-### [anthonycaccese](https://github.com/anthonycaccese/)
-Theme creator for ES-DE and [AmberELEC](https://amberelec.org/)
-
-### [Zurdi](https://github.com/zurdi15)
-Creator of RomM and other projects.
-
-# Additional credits
-
-### [RavenKilit](https://github.com/RavenKilit)
-Did some code and testning, contributed to [AmberELEC](https://amberelec.org/)
-
-### MorGuux
-Made the RetroDECK steamdb graphics for the old logo
-
-### Pixelguin
-Made the new logo and steamdb graphics
-
-### teotwaki
-Generous cloud hosting sponsor
-
-### [Gabeboii](https://github.com/gabeeeboii)
-Webmaster
-
-### Draco
-Server Administration
-
-### [ItzSelenux](https://github.com/ItzSelenux)
-Maker of [pixelitos](https://github.com/ItzSelenux/pixelitos-icon-theme)
-
-### [Kenny.nl](https://twitter.com/KenneyNL)
-[The Kenny.nl project](https://www.kenney.nl/) provides several free game assets under open licenses.
-
-# Special Thanks
- We want give special thanks to:
-* Our [Patreons](https://www.patreon.com/RetroDECK) that keeps the build servers running and provide feedback.
-* All related emulation projects.
-* All people that have put both time and money into emulation projects.
-* All the users who help others with support, guidance and good spirit.
-* All the users who help with testing and reporting issues.
-* All the community creators who creates various art and assets for the community.
-
-You are the ones that makes this project possible.
\ No newline at end of file
diff --git a/wiki-rtd/RetroDECK-Social-media-rules.md b/wiki-rtd/RetroDECK-Social-media-rules.md
deleted file mode 100644
index 860dfff2..00000000
--- a/wiki-rtd/RetroDECK-Social-media-rules.md
+++ /dev/null
@@ -1,80 +0,0 @@
-# Discord
-
-## Rules: DO NOT
-
-1. DO NOT: Discuss any type of piracy whatsoever.
-
-2. DO NOT: Ask for roms, bios, games and where/how to find them and don't PM the RetroDECK team members about it either.
-
-3. DO NOT: Post NSFW & NSFL content.
-
-4. DO NOT: Try to sell or promote your products and/or services, this is not a store or a marketplace (discussing experiences, asking for advice and reviews of products related to gaming and retro gaming is fine).
-
-5. DO NOT: Post hateful comments.
-
-6. DO NOT: Discuss your political or religious viewpoints here.
-
-7. DO NOT: Attack server members in the channels or private in PMs on: political viewpoints, religious/non religious believes, gender, race, sexual orientation, age or any other way (if you have been attacked please message a mod in a PM).
-
-8. DO NOT: Spam or flood the channels.
-
-9. DO NOT: Share information or pictures about leaked games.
-
-10. DO NOT: spoil any new or old game or media. If you want to write about it, use the ||spoiler tag|| to prevent to ruin other user's fruition.
-
-Rule 42
-
-DO NOT : Break the space time continuum with time travel and/or para dimensional travelling.
-
-
-
-## Rules: DO
-
-11. DO: Try to keep memes, light spam and funny posts in the 🐸-random-memes channel (however flooding is always prohibited and all server rules must till be respected even in this channel).
-
-12. DO: Be patient, be polite, don’t swear and be respectful to each other.
-
-13. DO: Try your best to keep the topic in the correct channel.
-
-14. DO: Try your best to help each other.
-
-15. DO: Be mindful that the RetroDECK team is working on this project out of passion and spending their own free time to make it happen. You can't expect 24/7 hours support and help. When you do feel the need to ask for help or advice from the RetroDECK team respect rule 11.
-
-
-
-# Lemmy / Reddit
-
-### 1. DO NOT: Post links/discussion of illegal, copyrighted, pirated or leaked content.
-
-* Post links directly to pirated games, ROMs, BIOSes or shader caches.
-* Partake in discussion or encouragement to in piracy.
-* Ask for technical support for pirated games/software.
-* Post links or discussions to leaked content of any kind.
-* Censoring or obfuscating parts of an link to any part of the content above to bypass filters.
-
-### 2. DO NOT: Post NSFW & NSFL content.
-
-### 3. DO NOT: Make posts about: buying, selling, trading, begging, giveaways, self or crowd-funding without asking.
-
-* You can’t promote crowd-funding, begging, affiliate links or other form of raising funds without asking.
-* Discussing experiences, giving advice or reviews of products related to gaming and retro gaming is always OK!
-* All promotions or marketing must be vetted and approved by the RetroDECK team on Discord.
-
-### 4. DO NOT: Make posts about anything other then RetroDECK, Emulation or community relevant content.
-
-### 5. DO NOT: Post hateful comments or posts.
-
-* Don’t attack any community member on: political viewpoints, religious/non religious believes, gender, race, sexual orientation, age or any other way (if you have been attacked please message the a mod here or on discord).
-* Be patient, be polite, be kind, don’t swear and be respectful to each other.
-
-### 6. DO NOT: Discuss your political or religious viewpoints here.
-
-### 7. DO NOT: Spread misinformation
-
-* Spread intentional misinformation.
-* Impersonate another: entity, company or person.
-
-
-
-# Vivi e lascia vivere
-// RetroDECK Team
\ No newline at end of file
diff --git a/wiki-rtd/RetroDECK-The-story-of-RetroDECK.md b/wiki-rtd/RetroDECK-The-story-of-RetroDECK.md
deleted file mode 100644
index 3e19af99..00000000
--- a/wiki-rtd/RetroDECK-The-story-of-RetroDECK.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# How RetroDECK was born?
-Let's take a step back.
-
-RetroDECK was born on March 4th 2022 in Kyoto, Japan, with the name of [351EDECK](https://imgur.com/a/tGC9ZGO) because I am also one of the founding members of 351ELEC, now [AmberELEC](https://amberelec.org/).
-What I wanted to do was to "port" 351ELEC to the Steam Deck, but instead of doing a custom firmware to flash, doing it as an application that could be launched from Steam.
-Eventually, after talking to the other team members, we decided that we didn't want to support another platform such as Steam Deck, so I decided to continue the project on my own, renaming it to RetroDECK.
-
-Back then I had many options on how to create 351EDECK, such as a bash script, appimage and flatpak.
-In the beginning I opted for a simple shell script, in fact RetroDECK/351EDECK v0.1a existed as a mere shell script.
-However I had bad feedbacks from the community because someone was feeling unsafe to give my script the root privileges so evaluating the Steam Deck use case I felt like it was not the right direction to take, the people was not feeling comfortable to give the sudo to a random script downloaded from the internet, so they asked to packetize it in some way.
-
-Valve suggests the flatpak technology to port the applications on Steam Deck so, I decided to follow their guidelines, and I created the RetroDECK that you know today, starting from a Manjaro virtual machine as a development environment because I didn't have a Steam Deck yet.
-
--Xargon
\ No newline at end of file
diff --git a/wiki-rtd/Steam-Deck-Installation-and-updates.md b/wiki-rtd/Steam-Deck-Installation-and-updates.md
deleted file mode 100644
index 72734548..00000000
--- a/wiki-rtd/Steam-Deck-Installation-and-updates.md
+++ /dev/null
@@ -1,110 +0,0 @@
-# How do I install RetroDECK on the Steam Deck?
-
-## Quick start guide
-
-- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
-- Install RetroDECK from Discover
-- Start RetroDECK first time in Desktop Mode
-- Choose where RetroDECK should create the `roms` folders `Internal` or `SDCard`.
-- Put the BIOS inside `~/retrodeck/bios/` for more information read: [[Emulators: BIOS and Firmware]]
-- Put the ROMS inside `~/retrodeck/roms/` or `/retrodeck/roms/` depending on your choice
-- In Steam desktop go to the tab `Games` press `Add non Steam game to My library` and select RetroDECK to add it into your library. If that is not working you can `Right Click` on the RetroDECK desktop icon and press `Add to Steam` in the menu.
-- **Optional way:** Get RetroDECK Steam Grid art and add it to your Steam library with BoilR. Or add the art manually from [SteamgridDB](https://www.steamgriddb.com/search/grids?term=RetroDeck) for the Steam Grid.
-- Switch over to game mode and go to RetroDECK on the Steam Grid under `Library > Non-Steam`
-- Add the Official Layout under `Controller Settings` -> `Controller Layouts` -> `Templates` in the Steam Deck called `RetroDECK: Official Layout` with a version number and apply
-- Launch RetroDECK and enjoy
-
-### Other quick tips:
-- Read up on the [[Steam Deck: Hotkeys and controls]] to ease your navigation.
-- Read up on the [[EmulationStation DE: User Guide]]
-- Check out our other software recommendations [[Steam Deck: Software recommendations]].
-- Check various optional optimizations that can make some emulators run even better [[Steam Deck: Optimizations]].
-
-
-## Full step by step guide:
-
-### Step 1: Go to Desktop Mode
-- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
-
-### Step 2: Install from Discover
-
-- Open the Discover application.
-- **NOTE:** Depending on what language you have set in Desktop mode your Discover application can be named differently.
-- Inside Discover search for RetroDECK and press the install button.
-- After the installation is finished, launch RetroDECK from Discover or in the program menu under `Games > RetroDECK`.
-- Follow the first time setup instructions and choose where RetroDECK should create the `roms` folders `Internal` or `SDCard`.
-- Open Steam while still in desktop mode.
-- Inside Steam go to the tab `Games` press `Add non Steam game to My library` and select RetroDECK to add it into your library.
-- After this is done you can now see RetroDECK in Steam Deck's gamemode after you return to it from desktop mode.
-
-### Step 3: Configure the official controller layout
-- Go back into gamemode by pressing the return to gamemode icon on the desktop.
-- Go to RetroDECK on the Steam Grid under `Library > Non-Steam`
-- Press the `Controller Icon`
-- Go into `Controller Layouts` and press `Templates`
-- Add the layout for RetroDECK called `RetroDECK: Official Layout` with a version number.
-- You can now use RetroDECK and it's ready to populate with ROMS.
-- If you are unsure on how to add ROMS and BIOS to RetroDECK follow the [Getting Started Guide ](https://github.com/XargonWan/RetroDECK/wiki/How-to-Getting-started) from Step 2 and onward on how to add them.
-
-
-### Step 4 (Optional): Extras
-- Get RetroDECK Steam Grid art with BoilR or add it manually from [SteamgridDB](https://www.steamgriddb.com/search/grids?term=RetroDeck) for the Steam Grid.
-- Check various optional optimizations that can make some emulators run even better [[Steam Deck: Optimizations]].
-- Read up on the [[Steam Deck: Hotkeys and controls]] to ease your navigation.
-- Read up on the [[EmulationStation DE: User Guide]]
-- Check out our other software recommendations [[Steam Deck: Software recommendations]].
-
-
-# How do I update RetroDECK on the Steam Deck?
-
-## Automatic Updates
-RetroDECK features Automatic Updates and should download the latest version when you start the application.
-This feature can be turned off inside the `RetroDECK Configurator`.
-
-## Manually from Desktop Mode:
-- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
-- Open the Discover application.
-- Click on the updates tab.
-- If there are any updates available it will be shown here.
-- Click on the `Update` or `Update all` buttons.
-
-
-
-# How do I move my installation to a new Steam Deck?
-
-**Note:** depending on how comfortable you are using the Steam Deck controller to navigate the desktop environment, this may be easier to do with a connected mouse and keyboard.
-
-The general process is as follows:
-1. Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`.
-2. Back up existing RetroDECK files.
-3. Install RetroDECK on your new Steam Deck [from the Discover store](#step-2-install-from-discover).
-4. Before starting RetroDECK, restore files that were backed up in Step 1.
-5. Start RetroDECK.
-
-### Step 1: Back up your existing files
-You will need to backup two directories: the main `retrodeck` folders and a hidden `net.retrodeck.retrodeck` folder.
-
-- First put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`.
-- Main `retrodeck` folder
- - Open the Dolphin File Manager (the folder icon in the taskbar).
- - Navigate to `/home/retrodeck/`. This folder should contain sub-folders such as `bios`, `roms`, and `saves`.
- - Copy all contents of this directory to a folder on another device, such as a thumb drive, microSD Card, or NAS
-- Hidden `net.retrodeck.retrodeck` folder
- - Return to `home`
- - Find the "hamburger" menu button (three horizontal lines in the top-right). Open the menu and select `Show Hidden Files`. If on a keyboard, you can type `Ctrl+H`.
- - Navigate to `home/.var/app/net.retrodeck.retrodeck/`. Again, copy all contents of this directory to a folder another device, such as a thumb drive, microSD Card, or NAS.
-- Ensure that you are keeping your backups of these two directories in two separate folders.
-
-### Step 2: Install RetroDECK on your new Steam Deck
-- Follow steps 1 and 2 of the [standard installation guide](#step-2-install-from-discover).
-- Stop after Step 2.
-- **Do not open RetroDECK yet!**
-
-### Step 3: Restore your backed up files
-- Restore your backed up contents of `retrodeck` to `/home/retrodeck/` on the new device.
-- Restore your backed up contents of `net.retrodeck.retrodeck` to `home/.var/app/net.retrodeck.retrodeck/` on the new device.
-- In both cases, you can safely overwrite all existing files.
-
-### Step 4: Return to Game Mode and launch RetroDECK
-- Launch RetroDECK from Game Mode and continue with steps 3 and 4 of the [standard installation guide](#step-4-optional-extras).
-- Don't forget to install the official controller profile!
\ No newline at end of file
diff --git a/wiki-rtd/Steam-Deck-Optimizations.md b/wiki-rtd/Steam-Deck-Optimizations.md
deleted file mode 100644
index 8b7cee2c..00000000
--- a/wiki-rtd/Steam-Deck-Optimizations.md
+++ /dev/null
@@ -1,65 +0,0 @@
-# What are some optimizations for the Steam Deck to make emulation even better?
-These optimizations are entirely optional and but they can give you better performance on some more demanding emulators.
-
-
-## Increase the VRAM to 4GB
-This increases the VRAM to 4GB in the BIOS, this can give you improvements in certain emulators.
-
-* Power off your Steam Deck completely
-* Hold the `Power Button` and `Volume Up Button` until you hear a chime/beep and release the buttons.
-* Click on `Setup Utility`
-* Click on `Advanced`
-* Change`UMA Frame buffer Size` to 4GB
-* Save and Exit
-
-## Setup a sudo password
-[What is sudo?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#what-is-sudo)
-
-This is a requirement for many optimizations and solutions, it also makes your Deck safer.
-It enables you to run commands/applications heighten sudo privileges.
-
-* Go to `Desktop Mode`
-* Open `Konsole` or another `Terminal`
-* Type `passwd`
-* You will now set your new sudo password
-* After you are done you can close the terminal
-
-## Install CryoUtilities
-This requires that you have set up a sudo password.
-
-This will create a 16GB SWAP file that can improve the performance for some emulators. Note that it will take up that extra space on your Steam Deck.
-
-There is a official video [here](https://www.youtube.com/watch?v=C9EjXYZUqUs&t=17s)
-
-* Go to `Desktop Mode`
-* Open a web browser and go to the [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) github page
-* Click on releases
-* Download the latewst `cryo_utilities` version and save to the Desktop or Home folder
-* Double click on the file and it will begin the installation
-* After installation is complete you will find a new desktop icon `CryoUtilities`
-* Click on `CryoUtilities`
-* Click on `Recommended Settings`
-* It should now be done
-
-## Install Decky Loader
-Decky Loader is a [homebrew plugin store](https://beta.deckbrew.xyz/) for the Steam Deck and it also enables `CEF Remote Debugging` during installation.
-This requires that you have set up a sudo password.
-
-* Go to `Desktop Mode`
-* Open `Konsole` or another `Terminal`
-* Type `curl -L https://github.com/SteamDeckHomebrew/decky-installer/releases/latest/download/install_release.sh | sh`
-* Decky Loader should now be installed and you can go back into `Game Mode`.
-* To access Decky Loader you only need to press the `Menu Button - (•••)`
-
-### Decky Loader: Install Power Tools
-Power Tools allows you to tweak various performance settings of the Steam Deck.
-What the best setting is differs per emulator or even per game.
-Decky Loader is a requirement.
-
-In Game Mode:
-* `Menu Button - (•••)`
-* Go into Decky Loader
-* From the Store install Power Tools
-* This will add a 🔌 icon to the `Menu Button - (•••)` where you can access Power Tools.
-
-
diff --git a/wiki-rtd/Steam-Deck-Software-recommendations.md b/wiki-rtd/Steam-Deck-Software-recommendations.md
deleted file mode 100644
index bf037102..00000000
--- a/wiki-rtd/Steam-Deck-Software-recommendations.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Any other recommended software?
-
-The following software works great with the Steam Deck and might enhance your RetroDECK experience (these are entirely optional to install).
-
-There is a guide on how to install several of them under [Steam Deck: Optimizations](https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck%3A-Optimizations).
-
-# Steam Deck specific recommendations
-
-For general Linux Desktop recommendations go to [Linux Desktop: Software recommendations](https://github.com/XargonWan/RetroDECK/wiki/Linux-Desktop-Software-recommendations) as many of them also work on the Steam Deck.
-
-## CryoUtilities
-Scripts and utilities to improve performance and manage storage on the Steam Deck.
-
-_Made by CryoByte33_
-
-[CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities)
-
-## Decky Loader
-Is a great piece of software that allows custom plugins inside Steam Deck's gamemode. It can open up more advanced features then the standard Steam Deck experience offers. But it's a bit more technical to install, please follow the guide on their github.
-
-_Made by Steam Deck Homebrew Team_
-
-[Decky Loader](https://github.com/SteamDeckHomebrew/decky-loader)
-
-## PowerTools
-If you install the Decky Plugin Loader above you can download the PowerTools application from the plugin store that let's you do advanced tweaking of the Steam Decks hardware. This can greatly improve performance on certain games in the PS2,GC and above generations. But it requires you to find the knowledge of what setting works best for each game and/or emulator.
-
-_Made by NGnius_
-
-[PowerTools](https://github.com/NGnius/PowerTools)
-
-## Discover Overlay
-If you use Discord this is a program that adds Discord integration into the Steam Deck's gamemode UI.
-It's already in on flathub and downloadable in Discover. Note that you need to install and login to Discord as well.
-
-_Made by trigg_
-
-[Discover Overlay](https://trigg.github.io/Discover/)
diff --git a/wiki-rtd/Version-history-Patch-Notes.md b/wiki-rtd/Version-history-Patch-Notes.md
deleted file mode 100644
index 6bcbf8fa..00000000
--- a/wiki-rtd/Version-history-Patch-Notes.md
+++ /dev/null
@@ -1,554 +0,0 @@
-# RetroDECK 0.7.1b
-
-### Release Date: 2023-08-22
-
-## Information:
-- Steam Deck users update RetroDECK from `Discover` in Desktop Mode.
-- Don't forget to reapply the latest controller layout: Go into the `Templates` tab and reapply the new profile ending with 0.7.1b (there is no need to reinstall the entire layout from the Configurator).
-
-
-## Bugfixes & other changes:
-- Fixed an issue to make sure the RD controller layout file at update with each RD update.
-- Fixed an issue with PPSSPP that made `L` and `R` incorrectly bound.
-- Fixed an issue in the Configurator that prevented the Yuzu preset for swapping A/B X/Y from working.
-- Fixed an notification issues on the latest SteamOS Beta releases.
-- Fixed an rsync permissions issue in the RetroDECK Framework.
-- Updated Yuzu presets to handle new config syntax in the RetroDECK Framework.
-- Changed auto-update to notification only, until permissions error can be worked out.
-- Added some new pixelart icons by ItzSelenux (pixelitos-icon-theme)
-
-
-## Updates
-- All Emulators and ES-DE have been updated
-
-## Steam Deck - Global Controller Layout:
-We have done some changes based on community feedback
-
-**Layout Changes:**
-- `Select` is now a hotkey trigger while pressing it down, `L4` and `R4` are still triggers as well.
-- The RetroArch combo of `Select` + `Start` = `Quit` now works on many SA-Emulators.
-- `Open Menu` is removed from `Select`.
-- `R5` = `A` button (this allows for great Wii controls on the right touchpad and pressing down the R5 for A).
-- `L5` = `B` button.
-
-**Global hotkey changes:**
-- `Open Menu` is on `Y`.
-- `Increase Emulation Speed` is on `Dpad-UP`.
-- `Decrease Emulation Speed` is on `Dpad-Down`.
-- `Fullscreen OFF` command is removed (as emulators have migrated to toggle).
-
-## Known issues
-- The built in auto-updater is not working (we are working on it). Discover is ok.
-- Some emulators don't have hotkey support or have bugs affecting their hotkeys.
-
-
-# RetroDECK v0.7.0b - Amazing Aozora
-
-### Release Date: 2023-06-16
-
-## Read First – Important Changes!
-
-* `PCSX2-SA` latest updates are not compatible with old save states. Please make sure you do an in-game save to your virtual memory card before upgrading.
-
-* The following emulators have changed the defaults and now run the stand-alone version: `Dolphin`, `Citra`, `PPSSPP`.
-If you have saves states or just want to go back to the RetroArch version, you can always switch back by pressing: `Other Settings` – `Alternative Emulators` and set them back to the core versions.
-
-* If you decide to install the new `RetroDECK Controller Layout` for the Steam Deck (highly recommended), it will wipe your custom configurations and emulator settings. That’s because all the configs needs to be updated and changed to be compatible.
-The choice is yours (you can always install it later via the Configurator if you change your mind).
-
-
-## New Emulators
-
-- Wii U powered by CEMU
-
-- We had hopes to add MAME standalone as well but we had to push it towards a future update because of various issues. That's why there is a MAME submenu in the new radial menus.
-
-
-
-## New General Features
-
-### New - Steam Deck Controller Layout
-
-Please read up on: https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck%3A-Hotkeys-and-controls
-- All hotkeys for all emulators have been unified where possible.
-
-This Steam Deck Controller Layout features both
-
-- Radial input menus on the left touchpad.
-- Button bound hotkeys you can access by either holding R4 or L4.
-
-**Installation of the layout:**
-
-**From an upgrade:**
-
-A upgrade from a older version to 0.7b you will get a prompt during the upgrade process that asks you if you want to install the layout. If you choose to do this (highly recommended), it will reset your emulators custom configurations if you had them.
-
-**For everyone (upgrade or fresh install):**
-
-After installation need to manually enable the config as under (you also need to do this for a new RetroDECK install):
-`Controller Settings` -> `Controller Layouts` -> `Templates` `RetroDECK: Official Layout` with a version number.
-
-**NOTE:**
-
-Not all Emulators has hotkey support; some have partial support, some has none and some has a majority implemented.
-
-**Known issues:**
-
-PPSSPP has an issue with flatpak hotkeys currently on their github so we have mapped ESC `HK + R3` ( press the `Escape` key from the radial menu) to `Open PPSSPP Menu`. In this way you can shutdown, save and access PPSSPP functions from there.
-As soon as the issue is solved we will remap everything to the correct hotkeys.
-
-### New - RetroDECK system folders
-
-Handling modpacks and texture packs has never been easier! You can read more on the wiki!
-
-https://github.com/XargonWan/RetroDECK/wiki
-
-**New folder: Mods**
-
-`retrodeck/mods/` Inside you will find easy to access mod folders for the following systems: Citra ,Dolphin, Primehack, Yuzu
-
-
-**New folder: Texture Packs**
-
-`retrodeck/texture_packs/` inside you will find easy to access texture pack folders for the following systems: Citra, Dolphin, Duckstation, PCSX2, PPSSPP, Primehack, RetroArch-Mesen, RetroArch-Mupen64Plus
-
-
-**New folder: Gamelists**
-
-`retrodeck/gamelists` gamelists are now moved into by default for ease of access and added security.
-
-
-## New - System features
-
-- The Configurator has a new home inside the ES-DE main menu and thus the tools menu has been removed.
-- The Configurator also has a .deskop icon for ease of access for both Steam Deck desktop mode and Linux Desktop users.
-- Added RetroDECK auto updates on launch, this can be disabled from the Configurator this works in Game Mode for the Steam Deck.
-
-## New RetroDECK Configurator features:
-
-- The Configurator has a new structure, with more menus and options.
-- The compression tool has been updated to allow for even more formats such as .zip in addition to the standard disc-based formats for certain systems.
-- The compression tool has been updated to have an even stronger verification before a compression job starts.
-- Added a global preset to swap A/B and X/Y in all supported emulators (aka N layout).
-- Added a global preset to enable/disable Widescreen in all supported emulators, globally or per core/emulator.
-- Added a global preset to enable/disable Ask-to-Exit prompts in all supported emulators.
-- Added a preset to enable/disable Pegasus and NyNy77 Borders for RetroArch, globally or per core.
-- Added an option to install Venomalia's Universial Dynamic Input Textures for Dolphin https://github.com/Venomalia/UniversalDynamicInput
-- Added an RetroDECK: About section
-- Added an option to install the RetroDECK Steam Deck controller profile
-- Added an “RetroDECK: Auto Updates” function that enables or disables auto updates on RetroDECK launch.
-- Added a Semi-automated RPCS3 firmware installer.
-- The Move Folder tool has been greatly expanded
- - You can now move the entire folder or different folders as you choose. (WARNING! Please do not try to move the data to more exotic locations).
-- The basic BIOS checker has been removed.
-- The BIOS checker has been updated to look for over 120+ BIOS.
-- RetroAchivements Login: Now logs into all supported emulators/cores at once.
-- RetroAchivements Logout: Now logs out of all supported emulators/cores at once.
-- Added RetroAchivements: Hardcore Mode, that lets you toggle hardcore mode for supported emulators/cores with a logged in RetroAchivements account.
-
-## Updates
-
-- Updated ES-DE to the latest version.
-- Updated RetroArch and the cores to latest versions.
-- Updated all standalone emulators and to their latest versions.
-
-
-## Bugfixes & other changes:
-
-- Dolphin/Primehack Wii Mote controls have been redesigned for the Steam Deck to allow both for touch input or right radial as pointer and `R2` emulates the Wii Remote Shake needed for certain games.
-- Updated the RPCS3 to run better and with a better configuration. Read more on the wiki on how to install DLC and patches.
-- RPCS3 and Duckstations save files where in the wrong directory. They have been moved to fit the overall inside the RetroDECK Framework. If you have any issues, contact us on discord or add them on github.
-- We made a unique PICO-8 wrapper that makes it runs better in a flatpak environment.
-- Fixed an avcodec issue that caused some roms for certain emulators to break.
-- Changed the ES-DE progress bar color
-- Changed how Yuzu builds are handled and should allow for better Yuzu updates.
-- Added a low space warning on launch.
-- Various backend improvements and fixes.
-- Added the foss Capsimg BIOS for the Amiga RetroArch core.
-- Implemented ES-DE's experimental theme downloader. For fresh new installs we only now ship one theme: ArtBookNext (as all other themes can be downloaded from the interface).
-
-## Experimental features:
-You can enable the RetroDECK: Multi-user system and other things from CLI for testing purposes.
-Read more here on how to help us with testing:
-
-https://github.com/XargonWan/RetroDECK/wiki/How-can-I-help-with-testing%3F
-
-There is also a Q&A on the latest blog post:
-
-https://www.reddit.com/r/RetroDeck/comments/13x8dva/retrodeck_status_update_202306/
-
-# RetroDECK v0.6.6b
-
-### Release Date: 2023-04-26
-
-### Information:
-This patch is a quick hotfix for ES-DE.
-
-
-## Bug fixes and other changes:
-- ES-DE had the wrong buildflag and pushed the update notification.
-- Reverted to the Swanstation Core for RetroArch
-
-# RetroDECK v0.6.5b
-
-### Release Date: 2023-04-07
-
-### Information:
-Just a quick hotfix for Yuzu (since some games where not working in 0.6.4b).
-So we had to roll back to the latest working version.
-Newer versions will be shipped with v0.7b
-
-## Bug fixes and other changes:
-- Rolled back to latest working Yuzu as some games had issues with the latest update.
-- Slightly improved Yuzu performance by tweaking GPU options
-- Fixed an issue where the default theme was not loaded
-- Removed unavailable emulators entries
-
-# RetroDECK v0.6.4b
-
-### Release Date: 2023-04-04
-
-## New features - General:
-- Updated to ES-DE 2.0
-- Added the NSO Menu Interpreted theme
-- Updated all included themes
-- Updated the Emulators/RetroArch + cores
-
-## Bug fixes and other changes:
-
-- Fixed an audio issue in the Primehack configuration
-- Various backend fixes
-
-# RetroDECK v0.6.3b
-
-### Release Date: 2023-03-24
-
-## New features - General:
-- Added support support for multiple file compression via CLI.
-
-## RetroDECK Configurator:
-- Added support support for multiple file compression in the Configurator.
-- Added safety y/n prompts to the reset functions.
-- Fixed some missing layout changes.
-- Renamed "Reset All" to "Reset RetroDECK".
-- Moved the configurator into the RO partition for futher enhancements.
-
-## Bug fixes and other changes:
-- Fixed a bug in the compression tool with certain filenames with spaces.
-- Fixed a bug where some folders were recursively symlinked.
-- Fixed a bug where some emulator configs were not correctly deployed.
-- Fixed a manifest bug that caused a conflict between Dolphin and Primehack in certain scenarios.
-- Fixed the Configurator BIOS tool looking in the wrong location (Thanks sofauxboho for the report!)
-- Implemented new configurations for Yuzu and Citra thanks to the big config file changes in the latest emulator updates in both emulators.
-- Removed some leftover files from Legacy PCSX2.
-- Removed the legacy "Reset Tools" command from Configurator and CLI.
-
-# RetroDECK v0.6.2b
-
-### Release Date: 2023-03-15
-
-## New features - General:
-- Persistent configurations when updating RetroDECK (This means your custom configurations should be saved across future versions. We also laid groundwork for dynamic persistent configurations, more on that in a future update. This is the reason why it has taken quite long to fix this).
-- Added Primehack controller profiles for both Xbox and Nintendo button layouts
-- Added a warning when running RetroDECK in desktop mode that not all control inputs will work properly. It also comes with a "Never show again" button.
-- Added CLI for CHD compression (chdman) of single games
-- Reworked CLI commands and added safety "y/n" confirmations for the reset arguments.
-
-## New features - RetroDECK Configurator:
-- The RetroDECK Configurator "toolbox" has a new structure for more easy access to various tools
-- The power user prompt has a "Never show again" button
-- Added tool to do CHD compression (chdman) of single games (multi-game batch compression coming in a future update)
-- Added tool to check for common BIOS files
-- Added tool to check for common multi-file game structure issues
-
-## Bug fixes and other changes:
-- Fixed Primehack initial configuration as it was broken (will automatically reset the emulator just this once)
-- Fixed Duckstation initial configuration as it was broken (will require user-performed reset just this once)
-- Fixed Pico-8 initial configuration as it was broken.
-- Fixed Pico-8 dual bios folders. The program files `pico8_dyn`,`pico8.dat` and `pico8` have to be manually moved to the correct location`~/retrodeck/bios/pico-8/`. The old `~/retrodeck/bios/pico8/` is renamed `~/retrodeck/bios/pico8_olddata/` to avoid confusion on where to put files. After the files have moved the `pico8_olddata `folder can be deleted.
-- Fixed a bug that made the Dolphin RetroArch core not working properly (the standalone version of Dolphin always worked and is the default)
-- Various backend fixes
-
-## Updates:
-- Updated all Emulators, RetroArch and libreretro cores. (PLEASE NOTE! ES-DE was not updated to version 2.0, this will be done in the next major version of RetroDECK as we need more time to work on the new theme format).
-
-# RetroDECK v0.6.1b
-
-### Release Date: 2023-02-21
-
-## New features:
-* Added CLI option to run Configurator directly
-* Added "--configure" option to RetroDECK CLI
-
-## Updates:
-* Yuzu updated to mainline-1301
-
-## Fixes & adjustments:
-* Adjusted Configuration window sizes
-* Temporarily removed Ryjuinx as it was broken and had too many issues (will be added back in a future patch).
-* Removed deprecated emulators from Configurator (eg. Legacy PCSX2)
-* Made improvements to file-moving code
-* Fixed Primehack preconfiguration and Configurator entry
-* Fixed a bug where the hidden files were not moved during the directory preparation
-* Fixed a bug where the symlinks were recursively placed inside the prepeared paths
-* Fixed issue with missing symlink after RetroDECK base directory was moved somewhere else
-* Fixed Duckstation preconfiguration
-
-# RetroDECK v0.6.0b
-
-### Release Date: 2022-12-27
-
-## New Emulators
-* Primehack
-* Ryjuinx (Disabled in 0.6.2b)
-
-## New Features
-* Merged all tools into single Configurator
-* The Configurator can now move the whole retrodeck folder eslewhere (not just the ROMs one)
-* The Configurator can now reset a single emulator, all RetroArch or all Standaloned configs (so there is no need to di it via CLI anymore
-* The first install is now asking where to place the whole retrodeck folder instead of requesting the location of the ROMs folder only.
-
-## RetroArch
-* Updated RetroArch to version [v1.14.0](https://www.libretro.com/index.php/retroarch-1-14-0-release/)
-* Updated Cores
-* Updated Cheat_db
-
-## Updated standalone emulators
-These emulators are updated to the latest version available on 31/10/2022.
-* Updated PPSSPP
-* Updated Yuzu
-* Updated Citra
-* Updated PCSX2-QT
-* Updated Dolphin
-* Updated Xemu
-* Updated RPCS3
-* Updated Duckstation
-
-## Fixes
-* PCSX2-QT is now looking for saves in the correct directory `~/retrodeck/saves/ps2/memcards` and not in `~/retrodeck/saves/ps2/pcsx2/memcards`
-
-# RetroDECK v0.5.3b
-
-### Release Date: 2022-10-28
-
-## Bug fixes in v0.5.3b
-
-* Fixed inaccessible RetroArch shaders folder
-* Fixed PSP saving issue when using RetroArch core
-* Fixed ROM visibility for Dolphin when running standalone, which should address ability to use AR/Gecko codes
-* Changed default RPCS3 launch method to fix games not starting properly
-* Fixed PCSX2 (legacy) autosave loading issue
-* (Hopefully) Fixed RetroAchievements login on PCSX2-QT
-
-## Changes in 0.5.3b
-* Made Citra standalone the default 3DS emulator
-
-## Additions in 0.5.3b
-* Added Citra SA sysdata folder to RetroDECK BIOS folder
-* Added Yuzu save folders to RetroDECK saves folder
-* A progress window during emulator initialization where it can look like RetroDECK has crashed
-
-# RetroDECK v0.5.2b
-
-### Release Date: 2022-10-14
-
-## Bug fixes in 0.5.2b
-
-* Fixed a bug where the Citra save folder was duplicated
-* Fixed a bug where scraped videos would not be played correctly for certain systems
-* Fixed the Rewind Tool
-
-# RetroDECK v0.5.1b
-
-### Release Date: 2022-10-13
-
-## Bug fixes in 0.5.1b
-
-* Fixed an issue with Yuzu not being compiled correctly in 0.5.0b
-
-# RetroDECK v0.5.0b
-
-### Release Date: 2022-10-12
-
-## Important: New save folder structure and migration in 0.5.0b
-
-### General information
-
-
-[I see ~ refereed in documentation and examples, what does it mean?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#i-see--refereed-in-documentation-and-examples-what-does-it-mean)
-
-**Saves = game saves and save states**
-The word "saves" is used to reference both save files and save state files in this wiki article. Both files are treated in the same manner, the only difference is that saves are located at.
-
-**PLEASE BE PATIENT:**
-The migration of the saves only needs to be done once.
-Depending on how large roms library you have, this migration can take several minutes.
-If you have an extremely large roms library (+5.000 roms) this process can take over an hour.
-
-### Why are you changing the save folder structure?
-
-In the long run, it is about the safety of your saves and we feel it's better to tackle this now during the beta period then later.
-
-By default, RetroArch (which handles emulation of most older systems) puts all your saves together in one folder.
-This is normally not an issue, but what you if you want to play the same game but different versions of it across multiple systems?
-RetroArch has no way of telling the difference between a save for `Mortal Kombat 3` on the Sega Genesis and on the Super Nintendo when the saves are all bundled together. RetroDECK is moving to a save storage structure where every save file is in a per system sub-folder inside of the `~/retrodeck/saves/` for game saves or `~/retrodeck/states/` for save states.
-
-### How saves are stored in RetroDECK pre 0.5.0b:
-
-_Example: Structure of the `~/retrodeck/saves/` folder_
-
- ~/retrodeck/saves/Final Fantasy 3.save
-
- ~/retrodeck/saves/Sonic the Hedgehog.save
-
-_Example: Structure of the `~/retrodeck/states/` folder_
-
- ~/retrodeck/saves/Final Fantasy VI.savestate
-
- ~/retrodeck/saves/Sonic the Hedgehog 2.savestate
-
-
-### How saves are stored in RetroDECK post 0.5.0b:
-
-_Example: Structure of the `~/retrodeck/saves/` folder and with new sub-folders_
-
- ~/retrodeck/saves/nes/Super Mario Bros. 3.save
-
- ~/retrodeck/saves/genesis/Sonic the Hedgehog.save
-
-_Example: Structure of the `~/retrodeck/states/` folder_
-
- ~/retrodeck/states/snes/Final Fantasy VI.savestate
-
- ~/retrodeck/states/genesis/Sonic the Hedgehog 2.savestate
-
-Since RetroArch will be looking for your saves in new locations, RetroDECK will do its best to sort your saves into the new structure automatically, so you likely won't need to do anything except enjoy knowing your saves are safer than ever.
-
-### How will it work?
-
-* The fist time you run RetroDECK after upgrading from a previews version to 0.5.0b a new dialog prompt will appear letting you that the migration process will start after pressing `OK`.
-
-* The migration process matches up all of your saves with all of your ROMs.
-
-* Once a match is found, the save is moved to where the sub-folder it needs to be in.
-
-* At the end of the process RetroDECK will let you know if any saves could not be sorted automatically.
-
-* **NOTE:** Only saves created by RetroArch need to be sorted, standalone emulators such as Yuzu and Citra already use their own folder structure and don't need to go through this process.
-
-* **NOTE:** If a match can't be found (for instance if you have a save for Mortal Kombat 3 and have both the SNES and Genesis editions in your ROM library) the save will be left alone and will need to be sorted manually, since only you will know for sure what system you were playing that game on.
-
-### Where will my saves be moved to?
-
-The saves will still be in the `~/retrodeck/saves` folder, but will also be moved into a new folder that matches what system the associated game is on.
-
- _Example: Game save - The Legend of Zelda on the NES_
-
-`~/retrodeck/saves/The Legend of Zelda.save`
-
- will be moved to
-
- `~/retrodeck/saves/nes/The Legend of Zelda.save`
-
- _Example 2: Save state - Super Mario Bros 3 on the NES_
-
-`~/retrodeck/states/Super Mario Bros 3.savestate`
-
- will be moved to
-
- `~/retrodeck/states/nes/Super Mario Bros 3.savestate`
-
-### Why could not all saves be moved automatically?
-
-If you have a large ROM library, it is likely you will have multiple versions of the same game across multiple systems.
-
-RetroArch creates save files that have the same name as the original ROM file. If there are multiple ROM files with the same name as a save, there is no way to tell which system the save belongs to.
-
-In the interest of ultimate safety for your saves, we only sort files we can be sure of. It is unfortunate that some saves may need to be sorted manually for some users, but this is a one time process that will keep your saves safer in the long run.
-
-### How do I move them manually?
-
-The saves can be moved like any other file, using the Dolphin file manager included in the Steam Deck desktop mode to the corresponding sub-folder inside `/retrodeck/saves/(system sub-folder)`.
-
-### Where can I find saves that could not be moved?
-
-If you see a message after the migration process saying some of your saves could not be sorted automatically, they will be found where they have always been, in `~/retrodeck/saves` or `~/retrodeck/states`.
-
-In the `~/retrodeck` folder there will also be a file called `manual_sort_needed.log` listing every save that could not be sorted automatically with a reason it was not moved. In order to be used again, these files will need to be moved into the folder matching the name of the system that the game the save belongs to runs on.
-
-For example, this save file could not be sorted automatically, because there are multiple ROMs in the library with the same name.
-
-**Example: Game saves**
-* New theme 1: [Alekfull-NX-Light](https://github.com/anthonycaccese/alekfull-nx-retropie/tree/retro-deck-esde-1.x-light) for ES-DE
-![rd-theme-RetrofixRevisited-GamelistView](https://user-images.githubusercontent.com/1454947/193457594-b803546b-36eb-4e71-9eca-bfee1d81ba36.jpeg)
-![rd-theme-RetrofixRevisited-SystemView](https://user-images.githubusercontent.com/1454947/193457596-05dc4316-9f2a-41ae-aa27-9609c680ec5a.jpeg)
-
-## Updates & minor additions in 0.5.0b
-
-* New variables system: now some variables such as game folder location are saved in /var/config/retrodeck/retrodeck.cfg.
-* Rewritten build and publication workflows
-* Updated ES-DE from 1.2.4 to 1.2.6 (Please note that not all the supported emulators in ES-DE are included in RetroDECK at this moment)
-For the full ES-DE patch notes follow these links:
-[1.2.5 Patch Notes](https://gitlab.com/es-de/emulationstation-de/-/blob/master/CHANGELOG.md#version-125)
-[1.2.6 Patch Notes](https://gitlab.com/es-de/emulationstation-de/-/blob/master/CHANGELOG.md#version-126)
-* Updated RetroArch, updated all cores and added new cores from 1.10.2 to 1.11.1
-[1.10.3 Patch Notes](https://www.libretro.com/index.php/retroarch-1-10-3-release/)
-[1.11.1 Patch Notes](https://www.libretro.com/index.php/retroarch-1-11-0-release/)
-* Updated all the standalone emulators to their latest releases
-* Updated all included themes to their latest version.
-
-## Bug fixes in 0.5.0b
-
-* Removed the unavailable emulators from the ES-DE interface to avoid confusion.
-* Solved an issue where Dolphin (Standalone) was not saving in the intended directories.
-* Various smaller bug fixes, for a more detailed list check the [issues list](https://github.com/XargonWan/RetroDECK/issues?q=is%3Aissue+milestone%3A0.5.0b+)
\ No newline at end of file
diff --git a/wiki-rtd/_Sidebar.md b/wiki-rtd/_Sidebar.md
deleted file mode 100644
index 92752fef..00000000
--- a/wiki-rtd/_Sidebar.md
+++ /dev/null
@@ -1,65 +0,0 @@
-# Wiki startpage
-[Home[(/XargonWan/RetroDECK/wiki)]
-
-## RetroDECK: Getting started
-- [How to: Getting started[(How-to-Getting-started.md)]
-- [FAQs: Frequently asked questions[(FAQs-Frequently-asked-questions.md)]
-- [EmulationStation DE: User Guide[(EmulationStation-DE-User-Guide.md)]
-
-## RetroDECK: General information
-- [How to: Manage your games[(How-to-Manage-your-games.md)]
-- [Emulators: What's included?[(Emulators-What's-included.md)]
-- [Emulators: BIOS and Firmware[(Emulators-BIOS-and-Firmware.md)]
-- [Emulators: Different controller layouts[(Emulators-Diffrent-controller-layouts.md)]
-- [Emulators: Supported folders and files[(Emulators-Supported-folders-and-files.md)]
-- [EmulationStation DE: Themes[é(EmulationStation-DE-Themes.md)]
-
-## RetroDECK: Configuration
-- [RetroDECK: Configurator[(RetroDECK-Configurator.md)]
-- [RetroDECK: CLI[(RetroDECK-CLI.md)]
-- [RetroDECK: Folders and filepaths[(RetroDECK-Folders-and-filepaths.md)]
-
-## RetroDECK: Development
-- [Development: General notes[(Development-General-notes.md)]
-- [Known Issues[(Known-Issues.md)]
-- [Version history: Patch Notes[(Version-history-Patch-Notes.md)]
-- [How can I help with testing?[(How-can-I-help-with-testing.md)]
-
-
-## Emulator Guides:
-- [Playstation 3: RPCS3[(Playstation-3-RPCS3.md)]
-- [Switch: Yuzu[(Switch-Yuzu.md)]
-
-## Mod Guides:
-- [Yuzu: Mods[(Yuzu-Mods.md)]
-- [Citra: Mods[(Citra-Mods.md)]
-- [Dolphin and Primehack: Mods[(Dolphin-and-Primehack-Mods.md)]
-
-## Texture Packs Guides:
-
-- [Citra: Texture Packs[(Citra-Texture-Packs.md)]
-- [Dolphin and Primehack: Texture Packs[(Dolphin-and-Primehack-Texture-Packs.md)]
-- [Duckstation: Texture Packs[(Duckstation-Texture-Packs.md)]
-- [RetroArch Mesen: Texture Packs[(RetroArch-Mesen-Texture-Packs.md)]
-- [RetroArch Mupen64Plus Next: Texture Packs[(RetroArch-Mupen64Plus-Next-Texture-Packs.md)]
-- [PPSSPP: Texture Packs[(PPSSPP-Texture-Packs.md)]
-- [PCXS2: Texture Packs[(PCXS2-Texture-Packs.md)]
-
-## Steam Deck
-- [Steam Deck: Installation and updates[(Steam-Deck-Installation-and-updates.md)]
-- [Steam Deck: Hotkeys and controls[(Steam-Deck-Hotkeys-and-controls.md)]
-- [Steam Deck: Optimizations[(Steam-Deck-Optimizations.md)]
-- [Steam Deck: Software recommendations[(Steam-Deck-Software-recommendations.md)]
-
-## Linux Desktop
-- [Linux Desktop: Software recommendations[(Linux-Desktop-Software-recommendations.md)]
-
-## Other Devices
-- (More information later)
-
-## Credits & Other
-- [RetroDECK: Credits and The Team[(RetroDECK-Credits-and-The-Team.md)]
-- [RetroDECK: The story of RetroDECK[(RetroDECK-The-story-of-RetroDECK.md)]
-- [RetroDECK: Social media rules[(RetroDECK-Social-media-rules.md)]
-- [Licences[(Licences.md)]
-- [Archive[(Archive.md)]
\ No newline at end of file
diff --git a/wiki-rtd/conf.py b/wiki-rtd/conf.py.old
similarity index 58%
rename from wiki-rtd/conf.py
rename to wiki-rtd/conf.py.old
index be805dcb..55cf0a71 100644
--- a/wiki-rtd/conf.py
+++ b/wiki-rtd/conf.py.old
@@ -2,16 +2,17 @@ project = 'RetroDECK'
author = 'RetroDECK Team'
extensions = [
- 'sphinx.ext.autodoc',
- 'sphinx.ext.doctest',
- 'sphinx.ext.intersphinx',
- 'sphinx.ext.todo',
- 'sphinx.ext.coverage',
- 'sphinx.ext.mathjax',
- 'sphinx.ext.ifconfig',
- 'sphinx.ext.viewcode',
- 'sphinx_rtd_theme',
+ # 'sphinx.ext.autodoc',
+ # 'sphinx.ext.doctest',
+ # 'sphinx.ext.intersphinx',
+ # 'sphinx.ext.todo',
+ # 'sphinx.ext.coverage',
+ # 'sphinx.ext.mathjax',
+ # 'sphinx.ext.ifconfig',
+ # 'sphinx.ext.viewcode',
+ # 'sphinx_rtd_theme',
'myst_parser',
+ 'mkdocs-material'
]
language = 'English'
diff --git a/wiki-rtd/docs/blog/index.md b/wiki-rtd/docs/blog/index.md
new file mode 100644
index 00000000..8072e373
--- /dev/null
+++ b/wiki-rtd/docs/blog/index.md
@@ -0,0 +1,2 @@
+# The RetroDECK Blog 📝
+
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-April-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-April-2023.md
new file mode 100644
index 00000000..d29c0b4a
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-April-2023.md
@@ -0,0 +1,78 @@
+---
+date: 2023-04-06
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+We in the team thought we could give you a quick status update on how development is going.
+
+
+# Status update 2023-04:
+
+Controls, Controls, Controls!
+
+Right now we are working on a huge overhaul of the Steam Deck's input profile for GameMode that should feature a more uniform hotkey configuration for version v0.7b across most emulators.
+
+The team have painstakingly made a huge map (excel) with all the emulators hotkeys, how they can be mapped and in the end classified as important, semi-important och not important.
+
+
+
+*The thoughts so far:*
+
+* L4-L5 and R4-R5 (the back buttons) are used for various hotkey combos with the traditional buttons. We have to find a layout that feels right and it should allow us do a lot of hotkey binds.
+* The left touchpad opens a radial menu with sub menus that gives you more quick access to less used and the frequently used hotkeys across all emulators.
+* The right touchpad works as a mouse with left click (WiiMote games, Lightgun, navigate the emulators gui and other things)
+
+
+
+There also will be a community feedback and test phase for the new inputs at a later date. We would love to hear your feedback!
+
+
+
+*Note: You are not forced to use our profile, you can still make your own and rebind how you want.*
+
+
+
+**Expose new folders for ease of access:**
+
+For v0.7b we are going to make it easy to understand where to find the various gamelist.xml and where to put mods and textures. We are adding/exposing folders in the main `retrodeck` folder for ease of access. So you will find new folders for `gamelists` `mods` `textures`.
+
+No more deep diving into various hidden folders of where to put your textures and mods in Citra for your favorite Zelda game!
+
+Just put them in the corresponding mods or texture folder and you should be good to go.
+
+
+
+**CEMU**
+
+We are also trying to get CEMU inside the next version of v0.7b
+
+
+
+**Trivia: Patch names**
+
+We will also start with naming the big patches from v0.7b and forward.
+
+So v0.7b will be called "**RetroDECK v0.7b - Amazing Aozora**".
+
+It will go up one letter for each version so v0.8 will be a word combo that contains "B B" and v0.9 will be a combo with the letters "C C" and so forth.
+
+
+
+**What else?**
+
+There are a lot of other things in the pipeline as well for v0.7b. But we shall save those for a future update (when we have something to share and we don't want to spoil everything).
+
+If you want to help with out with the project or just chat join the discord.
+
+
+
+[Discord Server](https://discord.gg/Dz3szYsP8g)
+
+[Patreon](https://patreon.com/RetroDECK)
+
+
+
+//The RetroDECK team
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-June-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-June-2023.md
new file mode 100644
index 00000000..83683f97
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-June-2023.md
@@ -0,0 +1,308 @@
+---
+date: 2023-06-01
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+We in the team thought we could give you a quick status update on how development is going.
+
+Github link if you don't know what the project is: [https://github.com/XargonWan/RetroDECK](https://github.com/XargonWan/RetroDECK)
+
+
+# Status update 2023-06:
+
+With 0.7b and summer just around the corner we in the team thought this month we should focus more on a mix of topics.
+
+
+
+### Read First – Important Changes in 0.7b!
+
+
+
+* `PCSX2-SA` latest updates are not compatible with old save states. Please make sure you do an in-game save to your virtual memory card before upgrading.
+* The following emulators have changed as the defaults and now run the stand-alone version: `Dolphin`, `Citra`, `PPSSPP`.If you have saves states or just want to go back to the `RetroArch` versions, you can always switch back by pressing: `Other Settings` – `Alternative Emulators` in the main interface and set them there.
+* If you decide to install the new `RetroDECK Controller Layout` for the Steam Deck, it will wipe your custom configurations and emulator settings. That’s because all the configs need to be updated and changed to be compatible. The choice is yours (you can always install it later via the Configurator if you change your mind).
+
+
+
+# What are the upsides of RetroDECKs all-in-one approach?
+
+Quite many actually!
+
+* RetroDECK is updated via standard secure update channels where you update all your other software (we will have an internal updater added in RetroDECK in 0.7b, so users don’t even need to go to the Discover app to update if they don’t want to).
+* It allows us to apply the RetroDECK Framework on the bundled software and apply custom made specific patches for emulators or ES-DE (more on that later).
+* We can optimize the data to take as little space as we possibly could. Our whole application in 0.7b is around 3GB. Since we are using a single package, ~~we can avoid a lot (but not all) of the overlap that takes up space when installing multiple AppImages or Flatpacks.~~ (Flatpak does an even greater job of deduplicating data see [**TiZ\_EX1**](https://www.reddit.com/user/TiZ_EX1/) comment in this thread!).
+* We can expose various hidden/hard to find emulation features and allow the users to customize various experiences directly inside the application itself without needing to go into the Steam Deck’s desktop environment.
+* We are leveraging the power of compiling these emulators ourselves (where possible) to make a more complete unified experience a reality with custom patches.
+
+
+
+**What are the downsides of this approach?**
+
+* You are bound to the software we ship inside our application and cannot add more things. But we are always open to suggestions on what to add next, just tell us on Github or Discord.
+ * *That said we are experimenting with allowing users to import certain emulators early access versions like Yuzu (but no solution in the short term).*
+* Emulator updates need to be in point releases and not daily, since we can’t update emulators inside an existing flatpak. As we apply the RetroDECK Framework on top of the emulators, we sometimes need to do some tinkering before we can release a new version. But you can expect semi-frequent emulator-update point releases, historically we have been fast if we feel the need to get something out quickly. Major new updates that add features to the RetroDECK application itself will take more time.
+ * *There has been some issues with Yuzu in the past, but we have redone our entire Yuzu pipeline for 0.7b s it should allow for faster updates.*
+
+
+
+# What is RetroDECK's vision and design philosophy?
+
+* Valve endorsed the use of flatpaks as their preferred and safe way to distribute software on SteamOS’s immutable system. Many other immutable systems like Fedora Silverblue/Kionite and standard Linux distributions have also endorsed flatpaks. We also share the vision that flatpaks are the future for the Linux desktop and Linux based devices.
+* Everything must be accessible from inside the application itself where possible. Once you launch RetroDECK, you should have all the tools you need to play games and configure the application. For the Steam Deck that means minimizing switching to desktop mode.
+* We need to build a foundation that pushes emulation forward and expose more of the niche hardcore features in an easier way.
+* We shall not be so bound by design choices that others have made but make our own path.
+* We should ship the emulators with optimized settings for Steam Deck (later other devices) but also allow the users full control to create their own configs and make it easy to do so.
+* We should do our best to respect user-made config changes where possible, even during the updates. Any forced changes should always be explained and give the users a prompt to accept them.
+* We believe in a transparent open community: Dialog , user feedback and testing development versions will never be locked behind paywalls or subscription tiers . This comes from deep rooted beliefs in open-source freedom. Subscriptions and donations will always only grant cosmetics like a unique discord color.
+* We want to make the emulation available for everyone; from the casual to the power user. Keep it simple, everything in one application and download it like any other software. Only one thing to update.
+* Prioritize security and keep everything contained as much as possible.
+
+
+
+**How does this vision effect design?**
+
+A good example is the new exposure of `mods` and `texture_packs` under the retrodeck folder.
+
+Before it was quite hard for users to add mods and texture packs into the emulators. No work for any other solution (that we are aware off) has been done to make this very hardcore thing more easy to handle.
+
+For the user it means no more looking into hidden folders of when and where to put the files. Our new approach also has received the blessing of famous texture packs and mod pack creators out there that were happy that someone lowered the barrier.
+
+So if you found it hard before to add:
+
+* A magnificent texture pack for Citra
+* A spooky HD pack for the Mesen Core
+* New 3D polygon racing models for Mupen64Plus-Next Core
+
+Just look our wiki under mods/texture packs and look forward to 0.7b.
+
+[https://github.com/XargonWan/RetroDECK/wiki](https://github.com/XargonWan/RetroDECK/wiki)
+
+
+
+Another example is (as others have done) move `gamelists` to under the retrodeck folder. This is a safer way of doing it and it's easier for the users to take backups.
+
+
+
+**What to expect in the future?**
+
+You can expect most of the standard stuff like that you can except from an emulation solution in the future:
+
+
+
+* Cloud-sync
+* USB and FTP file transfer
+* External controller management
+* Lightgun support
+* Most of the supported ES-DE emulators
+* Automatic Updates from Gamemode on Launch (0.7b it can be disabled in the Configurator)
+* And more...
+
+# What is the RetroDECK Framework?
+
+This is the feature we have been building on since the beginning and the true hidden core of RetroDECK that we are unveiling for the first time today. It’s the foundation we have built over many months of hard work and will keep expanding on in every upcoming update.
+
+The RetroDECK framework is a complete system that applies and adds features, fixes, structure and functions to all applications/data shipped within RetroDECK.
+
+This is also one of the reasons we needed to restructure save file folders in the past updates as well.
+
+
+
+**What does the RetroDECK Framework allow you to do?**
+
+It allows us to ship deeper choices, customization, apply settings globally, create custom patches or functions and expose hidden settings to the front.
+
+But what truly excites us in the team is the more advanced big features that we have not seen anyone else do on SteamOS or other operative systems.
+
+
+
+**Some light examples in 0.7b of the framework is:**
+
+* Move everything everywhere.
+
+**Note:**
+
+Please be careful when moving data to exotic locations don't be like Mr.Angry:
+
+
+
+
+
+* Log in/logout/hardcore mode for RetroAchivements hardcore mode for all supported emulators.
+* Apply Borders, Shaders and Widescreen mode per emulator / core or globally.
+
+
+
+**Note:**
+
+RetroDECK will offer full user choice and not a blanket all or nothing. You could have widescreen on one core while the others have borders.
+
+**What are some advanced big examples that you could do with the Framework?**
+
+Here is one example:
+
+
+
+Think about configurations for emulators. How most other solutions are handling changes or updates is just a blanket call all-or-nothing. Either you accept the changes and remove everything you have done or keep your changes without getting the updates.
+
+What we are building with the framework is a system to inject point changes into configurations.
+
+
+
+*So instead of doing the crude way others are doing:*
+
+Force replace in `config.xml` old with new `config.xml` yes or no?
+
+
+
+***What our goal is and what we are building:***
+
+Be able to open a `config.xml` inject the changed values across all those configs.
+
+If an emulator updates and adds more config options, we can just add them without losing the rest of the user data.
+
+So we can compare changes between the new `config.xml` and the old, then inject the changes.
+
+*But if a emulator totally change how their configuration works and makes a whole new system from scratch (it does not happen often or at all) even we will be out of luck.*
+
+So we hope in the future to be able to save even more custom configs even with the emulator updates. We also hope to make configuring emulators easier... more on that in a future development update after the summer.
+
+
+
+**Another big example:**
+
+If you read the recent article, we in the RetroDECK team are happy to unveil the `RetroDECK: Multiuser Mode`. This is only the first one of the big features we have planned for future updates and stands as an example of the complicated features we can accomplish. There is even more crazy stuff in development for the future big releases then this, so consider this a taste of things to come. It will not be ready for 0.7b but can be enabled with CLI commands for testing.
+
+
+
+See the following Q&A:
+
+# RetroDECK: Multiuser Mode Q&A
+
+First read here:
+
+[https://github.com/XargonWan/RetroDECK/wiki/How-can-I-help-with-testing%3F](https://github.com/XargonWan/RetroDECK/wiki/How-can-I-help-with-testing%3F)
+
+This is for testing only in 0.7b!
+
+
+
+**What does Multiuser Mode mean?**
+
+It creates a new directory structure `retrodeck/multi-user-data/` and allows multiple users to use RetroDECK from one device.
+
+
+
+**Wait... what.. how?! What about saves?! Configurations?! Custom settings?!**
+
+They are all saved per user if you enable it. You, your sister, brother, child, husband, wife, dog, cat could all have their separate saves, states and custom emulator settings just for themselves when they select their own profile.
+
+
+
+**Does it support the Steam Deck’s multiple users in Game Mode? Will RetroDECK hook those Steam Users into the enabled Multiuser system?**
+
+Yes, that is the intent and should work, so you can log into your Steam Deck profile and have your RetroDECK saves/configs.
+
+
+
+**What about a Linux Desktop PC that don't have Steam installed?**
+
+We also support locally created “RetroDECK Users” so, for those Linux Desktop users in the future that don’t use Steam and just want RetroDECK on their device.
+
+
+
+**What happens if I disable multiuser mode?**
+
+You chose one profile as the primary user and the other data still exists under `retrodeck/multi-user-data/`. No data is lost until you delete it manually.
+
+
+
+**What happens if I re-enable multiuser mode?**
+
+If you have had multiuser mode enabled and disable it, then re-enable it and have not deleted any `retrodeck/multi-user-data/` everything should work as it did before.
+
+
+
+**Will there be an easy way transfer/export/import a user profile, like press a button and my can export to my profile (saves, configurations, with/without roms) to my friend's device on something like a USB or other media?**
+
+Not for 0.7b but hopefully for the next major update 0.8b.
+
+
+
+# Other things
+
+**What does Amazing Aozora mean?**
+
+Aozora is Japanese and means blue sky.
+
+So, you could interpret the name as one team member:
+
+*“Amazing blue skies... The first update that shows the exiting new horizon and the path we are heading towards.”*
+
+Or as another:
+
+*“Aozora is just a tiny Japanese banks name! This is clearly just an update to pay some of our dept to the community off! Stop with that horizon nonsense mumbo jumbo!”*
+
+
+
+**What are some examples I can help out with with?**
+
+
+
+**Artist/Creators:**
+
+* Create new pixel art for the Radial menus.
+* Create easter egg art for the new `easter egg system` for various holidays.
+* Create menu art for a new Configurator.
+* Create input art that can be shown when you start a game.
+* Create input art guides for the wiki for the Steam Deck and later various controllers.
+* Create patch note videos.
+* Create instruction videos.
+* Help us make RetroDECK better.
+
+
+
+**Developers:**
+
+* Help us put in new features.
+* Help us make the configurator a godot application with full controller support.
+* Help us get releases out faster.
+* Help us make RetroDECK better.
+
+
+
+**Testers:**
+
+* Help us test cooker builds and submit bugs and feedback.
+* Help us make RetroDECK better.
+
+
+
+**Everyone:**
+
+* Be kind and follow the rules.
+* Spread the word of RetroDECK if you like it, if you don't like it or have suggestions put them on github into issues or discuss them on discord.
+* Engage with the rest of the community.
+* Help us make RetroDECK better.
+
+
+
+**Summer Period**
+
+As the summer period arrives there will be a holiday break on these kind of development posts until after the summer. Some parts of the team is also going on vacation, you can still except semi regular emulator updates and bug fixes as usual in 0.7.X releases (but no major 0.8b - Bonsai Banana version in the middle of the summer!).
+
+
+
+**End Quote**
+
+*We hope you are excited about these features and our vision as we are and we want to get 0.7b out to you as quickly as possible (hopefully next week).*
+
+*We also wish everyone a happy and good summer!*
+
+[Discord Server](https://discord.gg/Dz3szYsP8g)
+
+[Patreon](https://patreon.com/RetroDECK)
+
+*//The RetroDECK Team*
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-March-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-March-2023.md
new file mode 100644
index 00000000..e344a735
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-March-2023.md
@@ -0,0 +1,41 @@
+---
+date: 2023-03-05
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+As we just recently got co-ownership this subreddit (thus making this our official subreddit).
+
+We in the team thought we could give you a quick status update on how development is going.
+
+
+
+# Status update 2023-03:
+
+First of we are working out some bugs and issues with Duckstation and Primehack, the later will have a totally from the ground up redone configuration for a more optimized experience.
+
+
+
+RetroDECK is also moving to another cloud provider for our buildserver and website, sponsored by one generous community member (THANKS!).
+
+Another recent breakthrough was getting chdman the compression tool for disc based games running inside a flatpak (sandbox environment). It should be accessible later in a future version via CLI and we will check if it's possible to a build in GUI for it later in the future.
+
+Also the work to add borders into the emulators that support it has also begun and we are targeting the next major version.
+
+There are some experimenting with ES-DE 2.0 and the new theme engine.
+
+We are also trying to do a totally new universal and uniform controller profile for the Steam Deck that should work for all the emulators (fingers crossed).
+
+
+
+There are a lot of other things in the pipeline as well. But we shall save those for a future update (when we have something to share).
+
+If you want to help with out with the project or just chat join the discord.
+
+
+
+[Discord Server](https://discord.gg/Dz3szYsP8g)
+
+[Patreon](https://patreon.com/RetroDECK)
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-May-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-May-2023.md
new file mode 100644
index 00000000..ae846927
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-May-2023.md
@@ -0,0 +1,197 @@
+---
+date: 2023-05-03
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+We in the team thought we could give you a quick status update on how development is going.
+
+**NOTE: This is still work in progress**
+
+# Status update 2023-05:
+
+*Controls for everything everywhere all at once.*
+
+As a continuation of last months post, some parts of the team have been working on hotkeys and controls (in fact since October 2022 [GitHub: Issue 194](https://github.com/XargonWan/RetroDECK/issues/194)).
+
+
+
+*This is only one part of the 0.7b update.*
+
+
+
+**We set out the following goals for the project for a new Steam Deck layout profile:**
+
+
+
+* The layout needs to be scalable and adapt for new emulators in the future without adding too much clutter.
+* The layout needs to be scalable when a emulator updates and supports new hotkeys.
+* The layout should when possible have the ability to hook as many hotkeys into the same input that represents the same function across all emulators.
+* The layout need to be unified and support players dynamic playstyles to hop between emulators and games in one gaming session. A player could start RetroDECK: Play a little Switch then quit Yuzu, go directly to PPSSPP and play some PSP then end up in RetroArch to play SNES before the session is over.
+
+
+
+**That boiled down into the following points to work on:**
+
+
+
+* Check every hotkey that exists in every emulator and how they work.
+* Check if some hotkeys are hardbound (none rebind-able) and see if those can be worked into the over all structure of all other emulators.
+* Check what rules the hotkeys of each emulator have to bind them (single button only, only keyboard inputs, only gamepad inputs etc..).
+* From the result above: Decide and prioritize what hotkeys are so important they need a physical button combo. What hotkeys are "semi-important / good to have" and can live in a radial menu. Decide what not hotkeys not to bind at all.
+
+
+
+**Results so far:**
+
+*NOTE: Not all functions are supported in all emulators, but they will be added in as soon as they do support them.*
+
+
+
+**Physical button combo input**
+
+* The standard RetroArch = Start + Select to Quit and L3 + R3 for Open Menu is still there for RetroArch.
+* The L4 and R4 buttons changes the layout when hold down and allows button combinations with those buttons, example: "L4 or R4 + R1" = Save State and "L4 or R4 + L1" = Load State. It allows for quick access to the following functions with just button presses:
+ * Save state
+ * Load state
+ * Exit/Quit Emulator
+ * Fullscreen On/Off
+ * Fullscreen Off - (NOTE: Some emulators don't have toggle and have a separated on / off hotkeys)
+ * Fast forward
+ * Rewind
+ * Pause/Resume
+ * Open Menu
+ * Select Previous State Slot
+ * Select Next State Slot
+ * Capture Screenshot
+ * Swap Dual-Screens / Toggle pad screen (DS, 3DS, WiiU)
+ * Escape key - (Useful for some Emulators)
+ * Freelook mode movement for Dolphin on the sticks (NOTE: as long as L4 or R4 is hold down and Freelook mode is activated).
+
+
+
+**Radial Menu System**
+
+The radial menu system that is on the left touchpad gives you access to 70+ hotkeys (including the button bound from above) for various functions while gaming. All functions are labeled (even tho the labels) are not in the picture.
+
+
+
+The Main Menu is your way into the radial system and it's sub-menus bellow:
+
+
+
+The State Menu gives you access to everything to do with states
+
+* Save State
+* Load State
+* Select Previous State Slot
+* Select Next State Slot
+* Undo Save State
+* Undo Load State
+
+
+
+
+
+The Speed Menu gives you access to everything to do with Speed / Frame rate manipulation
+
+* Fast forward
+* Rewind
+* Increase Emulation Speed
+* Decrease Emulation Speed
+* Reset Emulation Speed
+* Disable Emulation Speed Limit
+* Toggle Frame Limit
+
+
+
+
+
+The General Menu gives you access to general emulator functions
+
+* Toggle Cheats
+* Exit/Quit Emulator
+* Open Menu
+* Capture Screenshot
+* Toggle Turbo
+* Pause/Resume
+* Toggle Video Capture / Recording
+
+
+
+
+
+The Display / Graphics Menu gives you access to everything about: screen layout, upscaling, widescreen etc..
+
+* Increase Reslution Scale / Increase Upscale Multiplier
+* Decrease Reslution Scale / Decrease Upscale Multiplier
+* Widescreen / Cycle Aspect Ratio
+* Fullscreen On/Off
+* Fullscreen Off
+* Swap Dual-Screens (3DS, DS, WiiU)
+* Change Dual-Screenlayout (3DS)
+
+
+
+
+
+The Steam Deck Menu gives you access to certain steam deck functions and certain keyboard inputs (that could work in emulators that don't have good hotkey support).
+
+* Show Keyboard
+* Steam Deck Screenshot
+* Steam Deck Zoom
+* Escape
+* ALT + F4
+* Tab
+
+
+
+The Emulator Specific Menu opens up a new menu system where you can access emulator specific functions (I can't show them all in this post!)
+
+* Switch Menu - Gives a radial that supports: Docked / Undocked, Change GPU Accuracy, Amiibo
+* Mame Menu - Gives a radial that supports: Service menu and keys, insert bills and other none credits.
+* Wii/GC (Dolphin) Menu - Gives a radial that supports: Golf Mode, Freelook Mode, Wii Sync Button, Freelook Reset, WiiMote mode: Upright / Sideways
+* DS Menu - Gives a radial that supports: Send Close / Open Lid, Send Microphone Input, Boktai + and - sunlight.
+* 3DS Menu - Gives a radial that supports: Amiibos
+* RetroArch Menu - Gives a radial that supports: Cheats manipulation, AI Service, Netplay Host
+
+
+
+The Quick Access Menu gives you a "best of" hotkeys from the other menus.
+
+* Save / Load
+* Fullscreen On / Offf
+* Fullscreen Off
+* Swap Dual-Screens (3DS, DS, WiiU)
+* Change Dual-Screenlayout (3DS)
+* Escape
+* Quit
+* Open Menu
+* Pause
+* Screenshot
+
+
+
+That is all for today!
+
+If you are an pixelartist, a video editor or a developer that want to help us with the project please contact us on discord.
+
+
+
+**What else?**
+
+There are a lot of other things in the pipeline as well for v0.7b. But we shall save those for a future update (when we have something to share and we don't want to spoil everything).
+
+If you want to help with out with the project or just chat join the discord.
+
+
+
+[Discord Server](https://discord.gg/Dz3szYsP8g)
+
+[Patreon](https://patreon.com/RetroDECK)
+
+
+
+//The RetroDECK team
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-November-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-November-2023.md
new file mode 100644
index 00000000..2fb3924c
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-November-2023.md
@@ -0,0 +1,152 @@
+---
+date: 2023-11-23
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+We in the team thought we could give you a quick status update on how development is going.
+
+If you don’t know what RetroDECK is or want more information check out the wiki.
+
+# Status update 2023-11:
+
+It is the end of November and we want to give you a status update on how things are going with RetroDECK. First off development is going steady, and we have a lot of features in the pipeline but also some IRL things that slow us down a bit (work, new baby etc…). But let us talk about what we are working on and answer some questions.
+
+
+
+**Note:**
+
+Most listed here are subject to change and is just an outline of what we are working on right now. Not all of these features will be a part of 0.8b and we are also working on even more stuff than what we are showing in this post.
+
+##
+
+## Question: How do I move RetroDECK to a new device?
+
+You can find a detailed step-for-step guide here for both Linux Desktop and Steam Deck:
+
+[How to: Move RetroDECK](https://github.com/XargonWan/RetroDECK/wiki/How-to%3A-Move-RetroDECK-to-a-new-device)
+
+**For a ultra-quick guide:**
+
+
+
+* Just copy the \~/retrodeck folder to the new device to the location you want it.
+* Install RetroDECK on the new device and point to it the new location of \~/retrodeck during first setup:
+ * If you put it on the internal drive – choose that option
+ * If you put it on the sd card – choose that option.
+ * If you put it in a custom location – choose that option.
+* Then proceed installation as normal.
+
+
+
+# What are you working on?
+
+## New Emulators/Systems
+
+We will be trying to include all of these in the next big update 0.8b
+
+
+
+* OpenBOR
+* IkemenGO (M.U.G.E.N)
+* Solarus
+* MAME (Standalone)
+* Ryujinx
+* SCUMMVM (Standalone)
+* Vita3K
+* GZDoom (Standalone)
+
+We have worked with several of the development teams of the emulators to add various functions we could use and improve the emulators for everyone regardless of whether you use RetroDECK or not. They have also worked with us to help us integrate into RetroDECK better. We want to give special thanks to the Vita3K Team and Ryujinx Team.
+
+## New Feature: Yuzu (Custom)
+
+Yuzu (Custom) is something we are working on for those that want to use the Early Access version of Yuzu. So, you will get the ability to run the EA .appimage version from inside RetroDECK in some fashion.
+
+But the downside is that it will not fully hook into the RetroDECK Framework, so you will need to configure things like input manually the first time you run it. But the goal is you can select it in the alternative emulator selector in ES-DE and pick Yuzu (Custom) from the list.
+
+## New Feature: Steam Flatpak version support
+
+We have gotten feedback that users want us to support the Steam Flatpak version and are trying to make it happen. Examples of features that need to work are the “Controller Profiles”, “Add RetroDECK to Steam” and the “Add games to Steam” function. We are still not sure if everything will work as intended in the Flatpak version of Steam.
+
+If you for some reason have both normal Steam and flatpak Steam installed on the same system. The none flatpak version will take preference over the flatpak version (this is also how projects like Lutris do things).
+
+But running a flatpak within a flatpak is something the users will need to think about.If the users want RetroDECK and other flatpaks to run from Steam they will need to open the permissions in the sandbox from either terminal or Flatseal. This does open the sandbox more than the standard configuration that Steam comes with as default.
+
+## New Feature: SFTP
+
+We are looking into letting users enabling SFTP transfers for easy transfers of files (roms, saves etc…).
+
+## New Feature: Cloud Sync
+
+We have done some work cloud sync both live sync and backup to various cloud services. But nothing to show just yet.
+
+## New Feature: USB Transfer / Backups
+
+Like SFPT, Cloud Sync above will be another way to export import files but via USB.
+
+## Status update: External Controllers & Inputs
+
+
+
+* PS3
+* PS4
+* PS5
+* Xbox360
+* Xbox One / S / X
+* Switch Pro
+* Steam Controller
+* Generic
+
+All standard type controllers supported by Steam Input will work with the normal global hotkeys. We are also changing the layout so that you have even more hotkeys.
+
+If you want to try them right now, you can do that by going into the following github issue and follow the instructions over there (they also work on current stable, just extract the zipfile in the correct folder and enjoy):
+
+[Github Issue with Download](https://github.com/XargonWan/RetroDECK/issues/573)
+
+## Status update: Multiuser mode
+
+We are still working on it with all the complexity. The goal is to support both Steam users from the Steam Deck and local RetroDECK users for desktop users. It does “work” right now in our cooker builds, but it still needs more time in the oven. There are a lot of variables to account for before we feel ready to ship it to everyone.
+
+## Status update: Adding RetroDECK games as Steam Entries
+
+We are still working on it and have it working on our cooker builds. But we are still trying to get it to work on the Steam Flatpak version. There are also some other ideas we want to try to make it even better, but more of them if we can make them happen in a later development update.
+
+## Status update: Configurator GODOT version
+
+The work is ongoing and not something that will be part of 0.8b. We have general plans for the GUI and internal versions we can play with. But the goal stays the same replace the entire configurator with a nice GODOT controller navigational interface and replace all the Zenity windows with it.
+
+## Status update: Mascot
+
+After the last development update, we got connected with Tyson Tan the artist behind both the KDE and Krita mascots. We are hopeful we can work something out together.
+
+# That is all for now!
+
+Also there will be no December update post thanks to the upcoming holidays!
+
+To everyone out there in our community, we want to wish you a festive holiday period and a Happy New Year.
+
+
+
+**Want to contribute to RetroDECK?**
+
+We are always looking for more people to help us with the project.
+
+· Developers (help us improve RetroDECK and get updates out faster).
+
+· Website developer (to help us improve our website).
+
+· Video Editor (to help us with patch notes / hype videos on various platforms).
+
+
+
+**Check out our:**
+
+[Discord](https://discord.gg/Dz3szYsP8g)
+
+[Github](https://github.com/XargonWan/RetroDECK)
+
+[Wiki](https://github.com/XargonWan/RetroDECK/wiki)
+
+[Donations](https://github.com/XargonWan/RetroDECK/wiki/Misc%3A-Donations-%26-Licenses)
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-October-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-October-2023.md
new file mode 100644
index 00000000..840026d2
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-October-2023.md
@@ -0,0 +1,129 @@
+---
+date: 2023-10-13
+---
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+
+We in the team thought we could give you a quick status update on how development is going.
+
+# Status update 2023-10:
+
+We hope that everyone is ready for a tiny spooky October status update.
+
+
+
+## We begin with thanking all kind emulator developers.
+
+We had some issues with certain emulators caused by the recent QT6 migration and the addition of new emulators (more on that next month).
+
+
+
+We tried to contact those developers to request for help or a hint about their project and thankfully they were very collaborative towards us, in some cases making some code changes to accustom some specific RetroDECK needing and thanking us for our work.
+
+It seems like that RetroDECK got a good reputation out there and we're really thankful for this, as one of our main efforts is trying to contribute more good will into the emulation community.
+
+
+
+This is what makes the emulation community great when we all can work together. If you need something from us, feel free to ask.
+
+Thank you all!
+
+
+
+## What are you working on?
+
+
+
+## Adding individual ROMS to Steam and launch them with RetroDECK
+
+More development has been going on into this and how it will work in its first iteration is that the games you flag as your favorites can be added to Steam with a tool in the Configurator.
+
+## External Controllers – Button Combo Hotkeys
+
+We will ship various Steam Input templates that allows you to use the button bound hotkey combos to do various emulator functions like (Save State, Load State, Quit etc..) for a variety of controllers from 0.8b. All you will need to is plug in / connect your controller, go into Steam Controller setting and choose the RetroDECK template for your controller.
+
+This will also work for the RetroDECK Linux Desktop users as long as you have added RetroDECK to Steam and launch it from there.
+
+It will be the same button combos as the Steam Deck with \`Select\` as the trigger but with \*\*no radial menu system\*\*.
+
+
+
+We will have templates for all the following:
+
+* PS3
+* PS4
+* PS5
+* Xbox 360
+* Xbox One / S / X
+* Switch Pro
+* Steam Controller
+* Generic (Stadia, 8bit, Xiaomi, USB-Clones, others etc..)
+
+
+
+**Special notes on Generic:**
+
+To access all the hotkeys, you must have a controller that has all the normal inputs (two joysticks with clickable L3 and R3, four button dpad, four face buttons, four shoulder buttons, start, and select).
+
+But if you have start and select you can always quit the game (even with a tiny NES USB clone controller).
+
+
+
+**Special notes on PS4, PS5:**
+
+The full touchpad acts as a mouse for Wii input / computer systems.
+
+Left touchpad click = left click
+
+Right touchpad click = right click
+
+
+
+**Special notes on the Steam Controller:**
+
+The right touchpad acts as a mouse for Wii input / computer systems.
+
+Right touchpad click = left click
+
+
+
+## Turning the Configurator into a Godot application
+
+We are working on turning the configurator into a Godot application. This will allow you to use all the functions with a controller in a Retro Inspired interface that is already working. The interface should be scalable for both TV’s, Monitors and Steam Deck Screen. We are also looking into changing toggle the font to OpenDyslexic so it can be easier to read for those who need it. This might not be done for 0.8b as it’s quite a big project (it will ready when it’s ready).
+
+If you are working with UI/UX design and/or have experience with Godot and want to help on this, please contact us on discord.
+
+
+
+## Rekku, the RetroDECK mascot.
+
+Some parts of the team also really wanted a mascot so that will also be a part of the new Configurator. It’s a animated cyborg-cat-like-humanoid that guides you to the various functions in the Configurator. Right now, we only have AI generated concepts of the mascot for reference but if you are an artist and want to help us design the mascot, please contact us on discord.
+
+
+
+**Mascot Q/A:**
+
+Q: I get the Godot Configurator, but why a mascot?!
+
+A: Why not?!
+
+
+
+Q: Will we see Rekku in other things except the Configurator?
+
+A: Maybe!
+
+
+
+Q: I hate mascots with a burning passion, can I turn it off in the configurator?
+
+A: You’re a meanie, but yes!
+
+
+## That is all for this month!
+
+A minor patch 0.7.3b will be out later with Emulator updates. But the main feature will be ES-DE 2.2, so we will release it when the ES-DE team are ready, and we can implement it asap.
+
+
diff --git a/wiki-rtd/docs/blog/posts/2023/Status-Update:-September-2023.md b/wiki-rtd/docs/blog/posts/2023/Status-Update:-September-2023.md
new file mode 100644
index 00000000..f2f005bc
--- /dev/null
+++ b/wiki-rtd/docs/blog/posts/2023/Status-Update:-September-2023.md
@@ -0,0 +1,112 @@
+---
+date: 2023-09-14
+---
+
+
+**Please note that this was written for Lemmy/Reddit and copied over to the new RetroDECK Wiki**
+
+Hello community!
+We in the team thought we could give you a quick status update on how development is going.
+
+
+# Status update 2023-09:
+
+We hope that everyone had a good summer and that you are ready for a tiny status update with a plethora of mixed topics.
+
+But before we get into what we are working on we want to make a short statement.
+
+
+
+# Our commitment to Open-Source
+
+
+
+>As the RetroDECK team, we are deeply concerned by the rumors about how others have handled their dependencies and their relationship with those developers.
+>
+>We would like to say this:
+>
+>Emulation is a multigenerational effort of development that has lasted for decades, motivated by the pure love for video game preservation for current and future generations. RetroDECK depends on the constant development of all our dependencies (the emulators, front-end, various assets, etc...). It would be unfair to both the hard work that has been done in those projects and to the entire open-source community if we said otherwise or tried to take credit, conceal, or obscure it for our own gain.
+>
+>We always strive to have the best possible relationship with the teams that generously provide and develop the third-party software we are depending on now and in the future. Everyone that works on RetroDECK is immensely grateful for the global collective effort and work that has been done. Without these projects and those passionate people RetroDECK would not be possible.
+>
+>We also want to add a word for the developers of the third-party projects:
+>
+>Please feel free to reach out to us, talk to us for any reason and share your ideas. We value your feedback and suggestions, and our door is always open for collaboration and improvements. You are the backbone of our project, and we appreciate your contributions.
+>
+>You can find more about our dependencies on the wiki and how to donate to them or us:
+>
+>[https://github.com/XargonWan/RetroDECK/wiki/Donations-%26-Licenses](https://github.com/XargonWan/RetroDECK/wiki/Donations-%26-Licenses)
+>
+>//The RetroDECK Team
+
+
+
+# Now on to the new stuff:
+
+
+
+**Two new developers and one tester have joined the team**
+
+We are incredibly happy that three new members have decided to join us. All of them have been active in their contributions and helping the community. They bring exciting innovative ideas and skillsets to the project.
+
+
+
+**Adding individual ROMS to Steam and launch them with RetroDECK**
+
+One of our new developers is looking into adding individual ROMS to Steam and hopes to have this done for the next big major release 0.8b - Bonsai Banana. This will allow you to list the ROMS you want as a separate game in the Steam interface and thus have different power profiles for each game.
+
+It is something many of you have requested and given feedback about.
+
+
+
+**Dynamic viewports / scaling system**
+
+Another new developer is looking into making a dynamic scaling / viewport system for the various emulators and cores to match the borders and resolutions to the most common screen types. \\
+
+This would allow better desktop screen support and better handling on undocked / docked Steam Deck resolutions.
+
+
+
+The goal is simple but complex:
+
+The borders and scale of the games should look nice and proper on your external screen when you plug in your movable device.
+
+
+
+**Better external controller hotkey support**
+
+As part of the Controller Unification Project and with the addition of the \`SELECT\` button as a hotkey trigger in 0.7.1b. We now have a better understanding of Steam Input’s controller template system and should be able to make a template for common external controllers with the button bound hotkeys combos that use \`SELECT\` as the trigger.
+
+However, the entire radial menu system is a bit harder as many controllers do not have touch input or a logical and comfortable way to navigate it. We will investigate if it is feasible to port the radial system to controllers with touch and those without.
+
+
+
+**Status on the Multi-user system**
+
+We are still working hard on the Multi-user system, but it might not be ready for 0.8b as we had hoped. There are tons of complexity, and we want to make it right. Some parts of the development team have other IRL priorities that take preset over RetroDECK development (new baby incoming and fatherly duties).
+
+
+
+**That is all for this month**
+
+
+
+A minor patch 0.7.2b will be out soon with a emulator update refresh and some bug fixes.
+
+
+
+See you next month.
+
+
+
+Check out our:
+
+[Discord](https://discord.gg/Dz3szYsP8g)
+
+[Github](https://github.com/XargonWan/RetroDECK)
+
+[Wiki](https://github.com/XargonWan/RetroDECK/wiki)
+
+[Donations](https://github.com/XargonWan/RetroDECK/wiki/Donations-%26-Licenses)
+
+[Lemmy](https://lemmy.zip/c/retrodeck)
diff --git a/wiki-rtd/docs/index.md b/wiki-rtd/docs/index.md
new file mode 100644
index 00000000..d41f05e8
--- /dev/null
+++ b/wiki-rtd/docs/index.md
@@ -0,0 +1,25 @@
+
+
+![Flathub](https://img.shields.io/flathub/downloads/net.retrodeck.retrodeck)
+![Flathub](https://img.shields.io/flathub/v/net.retrodeck.retrodeck)
+![Discord](https://img.shields.io/discord/951662718102962256?label=discord)
+![GitHub](https://img.shields.io/github/license/XargonWan/RetroDECK)
+
+## Welcome to the RetroDECK wiki!
+
+**Do you want to help to contribute to the wiki?**
+Join the Discord and post in `💬-general` that you want to help out.
+You will then get access to the `🖋-wiki-maintainers`channel.
+
+**🏗️ This wiki is currently under construction 🏗️**
+Some articles are marked with WIP (Work in Progress).
+
+### The RetroDECK community
+[Discord](https://discord.gg/Dz3szYsP8g)
+[Lemmy](https://lemmy.zip/c/retrodeck)
+[Reddit](https://www.reddit.com/r/retrodeck)
+
+### Other links
+[Website](https://retrodeck.net)
+[Github](https://github.com/XargonWan/)
+[Flathub](https://flathub.org/apps/net.retrodeck.retrodeck)
diff --git a/wiki-rtd/docs/wiki_about/donations-licenses.md b/wiki-rtd/docs/wiki_about/donations-licenses.md
new file mode 100644
index 00000000..268c75d3
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/donations-licenses.md
@@ -0,0 +1,431 @@
+# Information on donations
+RetroDECK is nothing without our dependencies without them this project and many others like us cannot exist. If you do not want to donate to RetroDECK and you might want to donate to the ES-DE front-end, art assets or a specific emulator. We support you no matter what, whatever choice you take from this list will be a good one for us all.
+
+**Please note:**
+
+We are trying to list current and future software we want to include in RetroDECK. More things will be added all the time. There are even more emulators, software, front-ends, and assets out there that are not part of the RetroDECK project for various other systems. This is not a complete list of all Emulators or Frontends for the entire internet.
+
+## RetroDECK
+
+
+By donating to RetroDECK you support this project and the vision of a unified packaged retro experience.
+
+#### We will use those funds to:
+
+- Wiki / Homepage
+- Web hosting
+- Developer accounts
+- Certificates
+- Software licenses
+- Build servers
+- Pay the running upkeep costs
+
+**Buy new hardware and target new devices**
+
+- New SteamOS based devices.
+- New Linux based devices.
+- In some cases better development hardware
+
+**Buy new peripherals that we want to work out of the box**
+
+- Various big brand and small brand controllers.
+- Lightguns.
+- Special peripherals.
+
+**Make RetroDECK better**
+
+- Develop more Configurator functions
+- Develop better integrations
+- Develop broad new functions and features
+- Expose more emulator settings to the users in a easy way
+- Push for better peripherals support in Linux even beyond RetroDECK (Do more global Linux goodwill)
+
+#### Where to donate / support the project?
+
+[Patreon](https://www.patreon.com/RetroDECK)
+
+#### Licenses
+[Licenses](https://github.com/XargonWan/RetroDECK/blob/main/LICENSE)
+
+---
+
+## Frontend
+
+### EmulationStation Desktop Edition (ES-DE)
+
+
+
+EmulationStation Desktop Edition (ES-DE) is a frontend for browsing and launching games from your multi-platform game collection.
+
+
+#### Where to donate / support the project?
+
+[Website - Paypal](https://es-de.org/)
+
+[Patreon](https://www.patreon.com/EmulationStation_DE)
+
+#### Licenses
+[License](https://gitlab.com/es-de/emulationstation-de/-/blob/master/LICENSE)
+
+[Licenses](https://gitlab.com/es-de/emulationstation-de/-/tree/master/licenses)
+
+---
+
+## Emulators: Multi-system
+
+### LibreRetro - RetroArch
+
+
+
+The LibreRetro Team makes RetroArch, Libretro and Lakka
+
+#### Where to donate / support the project?
+
+[Teespring](https://teespring.com/stores/retroarch)
+
+[Patreon](https://www.patreon.com/libretro)
+
+[YouTube Membership](https://www.youtube.com/channel/UCjAimkVp-G_o6HK5MXujk9A/join)
+
+[Liberapay](https://liberapay.com/Libretro/donate)
+
+[BountySource](https://salt.bountysource.com/checkout/amount?team=libretro)
+
+#### Licenses
+[Licenses](https://docs.libretro.com/development/licenses/)
+
+### MAME
+
+
+
+MAME is a multi-purpose emulation framework.
+
+MAME's purpose is to preserve decades of software history. As electronic technology continues to rush forward, MAME prevents this important "vintage" software from being lost and forgotten.
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+
+[Copy License](https://github.com/mamedev/mame/blob/master/COPYING)
+
+[Licenses](https://github.com/mamedev/mame#license)
+
+### ares
+
+
+ares is a cross-platform, open source, multi-system emulator, focusing on accuracy and preservation.
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### License
+
+[Licenses](https://github.com/ares-emulator/ares/blob/master/LICENSE)
+
+---
+
+## Emulators: Sony
+
+### RPCS3
+
+
+
+The world's first free and open-source PlayStation 3 emulator/debugger, written in C++ for Windows, Linux, macOS and FreeBSD.
+
+#### Where to donate / support the project?
+**NOTE:**
+
+Since the beginning of the Ukraine war, RPCS3 became unable to manage funds from the Patreon directly due to sanctions imposed on Russia.
+Before donating check the current status on their Patreon.
+
+[Patreon](https://patreon.com/Nekotekina)
+
+[Alipay](https://rpcs3.net/alipay)
+
+### Duckstation
+
+
+
+
+DuckStation is an simulator/emulator of the Sony PlayStation(TM) console, focusing on playability, speed, and long-term maintainability. The goal is to be as accurate as possible while maintaining performance suitable for low-end devices. "Hack" options are discouraged, the default configuration should support all playable games with only some of the enhancements having compatibility issues.
+
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/stenzek/duckstation/blob/master/LICENSE)
+
+### PPSSPP
+
+
+
+PPSSPP can run your PSP games on your PC or Android phone in full HD resolution or even higher. It can also upscale textures to make them sharper, and you can enable post-processing shaders to adjust color and brightness the way you like, and other effects.
+
+#### Where to donate / support the project?
+[PPSSPP Gold](https://www.ppsspp.org/buygold)
+
+#### Licenses
+[Licenses](https://github.com/hrydgard/ppsspp/blob/master/LICENSE.TXT)
+
+### PCSX2
+
+
+
+PCSX2 is a free and open-source PlayStation 2 (PS2) emulator. Its purpose is to emulate the PS2's hardware and this allows you to play PS2 games on your PC, with many additional features and benefits.
+
+#### Where to donate / support the project?
+
+[Github Sponsor](https://github.com/sponsors/PCSX2)
+
+#### Licenses
+[Licenses](https://github.com/PCSX2/pcsx2/blob/master/COPYING.GPLv3)
+
+### Vita3K
+
+
+
+Vita3K is an experimental PlayStation Vita emulator for Windows, Linux, macOS and Android.
+
+#### Where to donate / support the project?
+
+[Ko-fi](https://ko-fi.com/vita3k/tiers)
+
+#### Licenses
+[Licenses](https://github.com/Vita3K/Vita3K/blob/master/COPYING.txt)
+
+---
+
+## Emulators: Nintendo
+
+### Dolphin
+
+
+
+Dolphin is an emulator for two recent Nintendo video game consoles: the GameCube and the Wii. It allows PC gamers to enjoy games for these two consoles in full HD (1080p) with several enhancements: compatibility with all PC controllers, turbo speed, networked multiplayer, and even more!
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/dolphin-emu/dolphin/tree/master/LICENSES)
+
+### Primehack
+
+
+
+PrimeHack is a modified version of [Dolphin-Emu](https://github.com/dolphin-emu/dolphin) solely for playing Metroid Prime Trilogy for Wii with keyboard and mouse on a PC.
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/Kekun/primehack/tree/master/LICENSES)
+
+### Yuzu
+
+
+
+Yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/yuzuteam)
+
+#### Licenses
+[Licenses](https://github.com/yuzu-emu/yuzu/tree/master/LICENSES)
+
+### Citra
+
+
+
+Citra is the world's most popular, open-source, Nintendo 3DS emulator.
+It is written in C++ with portability in mind and builds are actively maintained for Windows, Linux, Android and macOS.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/citraemu)
+
+#### Licenses
+[Licenses](https://github.com/citra-emu/citra/blob/master/license.txt)
+
+### Ryujinx
+
+
+
+
+Ryujinx is an open-source Nintendo Switch emulator, created by gdkchan, written in C#. This emulator aims at providing excellent accuracy and performance, a user-friendly interface and consistent builds. It was written from scratch and development on the project began in September 2017.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/ryujinx)
+
+#### Licenses
+[Licenses](https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt)
+
+### melonDS
+
+
+
+
+melonDS aims at providing fast and accurate Nintendo DS emulation. While it is still a work in progress, it has a pretty solid set of features:
+
+#### Where to donate / support the project?
+
+[Patreon](https://www.patreon.com/Arisotura)
+
+[Paypal](https://paypal.me/Arisotura)
+
+#### Licenses
+[Licenses](https://github.com/melonDS-emu/melonDS/blob/master/LICENSE)
+
+
+### Cemu
+
+
+
+Cemu, a Wii U emulator that is able to run most Wii U games and homebrew in a playable state. It's written in C/C++ and is being actively developed with new features and fixes to increase compatibility, convenience and usability.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/cemu)
+
+#### Licenses
+[Licenses](https://github.com/cemu-project/Cemu/blob/main/LICENSE.txt)
+
+---
+
+## Emulators: Microsoft
+
+### Xenia
+
+
+
+Xenia is an experimental emulator for the Xbox 360.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/xenia_project)
+
+#### Licenses
+[Licenses](https://github.com/xenia-project/xenia/blob/master/LICENSE)
+
+### Xemu
+
+
+
+A free and open-source application that emulates the original Microsoft Xbox game console, enabling people to play their original Xbox games on Windows, macOS, and Linux systems.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/mborgerson)
+
+#### Licenses
+[Licenses](https://github.com/xemu-project/xemu/tree/master/licenses)
+
+---
+
+## Software
+
+### OpenBOR
+
+
+
+
+OpenBOR is a royalty free sprite-based side scrolling gaming engine. From humble beginnings in 2004, it has since grown into the most versatile, easy to use, and powerful engine of its type you will find anywhere.
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/DCurrent/openbor/blob/master/LICENSE)
+
+### GZDoom
+
+
+
+GZDoom is a feature centric port for all Doom engine games, based on ZDoom, adding an OpenGL renderer and powerful scripting capabilities
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/ZDoom/gzdoom/blob/master/LICENSE)
+
+### ScummVM
+
+
+
+
+
+ScummVM allows you to play classic graphic point-and-click adventure games, text adventure games, and RPGs, as long as you already have the game data files. ScummVM replaces the executable files shipped with the games, which means you can now play your favorite games on all your favorite devices.
+
+#### Where to donate / support the project?
+[Website - Paypal](https://www.scummvm.org/)
+
+#### Licenses
+[Licenses](https://github.com/scummvm/scummvm/blob/master/COPYING)
+
+
+### Solarus
+
+
+
+Solarus is a free and open-source 2D game engine written in C++, that can run games scripted in Lua. It has been designed with 16-bit classic Action-RPGs in mind, and is available on a wide range of platforms.
+
+#### Where to donate / support the project?
+[Liberapay](https://liberapay.com/solarus-labs/donate)
+
+#### Licenses
+[Licenses](https://gitlab.com/solarus-games/solarus/-/blob/dev/license.txt)
+
+### IKEMEN Go
+
+
+
+IKEMEN Go is a remake of the IKEMEN (open source fighting games engine that supports M.U.G.E.N resources) in Google’s Programming Language “Go”.
+
+#### Where to donate / support the project?
+We have not found a donation link to this project at this time or the project does not support donations.
+
+#### Licenses
+[Licenses](https://github.com/ikemen-engine/Ikemen-GO/blob/master/License.txt)
+
+---
+
+## Art and Assets
+
+### Kenny.nl
+
+
+
+Over the last couple of years Kenny.nl have released [30,000+](https://kenney.nl/assets) images, audio files and 3D models for anyone to use in any kind of project, all dedicated to the public domain. Thanks to your donation Kenny.nl can create even more content and support developers, students and teachers all over the world.
+
+#### Where to donate / support the project?
+[Patreon](https://www.patreon.com/kenney)
+
+[itch.io](https://kenney.itch.io/kenney-donation)
+
+#### Licenses
+CC0 & CC1
+
+---
+
+## Other Licenses
+Here we showcase the licenses of projects / functions we might use in part, got inspired by the code/solutions or want to give special credit.
+
+### Capsimg
+
+[Licenses](https://github.com/rsn8887/capsimg/blob/master/LICENCE.txt)
+
+### Pixelitos
+
+[Licenses](https://github.com/ItzSelenux/pixelitos-icon-theme/blob/main/LICENSE)
+
+### Lutris
+[Licenses](https://github.com/lutris/lutris/blob/master/LICENSE)
+
+### Steam Deck & Steam Deck Logo
+
+The Steam Deck logo and Steam Deck device is a registered trademark of Valve Corporation. This project is in no way officially affiliated with Valve.
+
+### Other Trademarks
+
+All trademarks, logos, controller images and brand names are the property of their respective owners. All company, product and service names used in this project are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement.
+
+
diff --git a/wiki-rtd/docs/wiki_about/secrets/test.md b/wiki-rtd/docs/wiki_about/secrets/test.md
new file mode 100644
index 00000000..1593e7df
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/secrets/test.md
@@ -0,0 +1,9 @@
+
+
+
+
+`test`
+
+
+
+
diff --git a/wiki-rtd/docs/wiki_about/secrets/thepizzawar.md b/wiki-rtd/docs/wiki_about/secrets/thepizzawar.md
new file mode 100644
index 00000000..2aa080af
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/secrets/thepizzawar.md
@@ -0,0 +1,18 @@
+# The Pizza War
+
+Who will prevail?
+
+## The Italian Pizza Legion - IPL
+Conservative purists of pure Italian Pizza Force.
+
+*"Pizza is Italian and everything else is a facsimile, a mockery of Italian perfection. Our mothers and fathers gave everything for the purity of the Napoletana and so shall you!"*.
+
+## The Murican Cheese Crust Patriots - MCCP
+Patriotic Americans that try to crush the opposition with infinite pepperoni and cheese.
+
+*"The Italian American imigrants took Pizza to the US and made it better thanks to freedom. Are we not free to put as much pepperoni as we want? How about Mozzarella or bread sticks is there a upper limit? We say no there is not! The symbol of new found freedom of the Italian Americans is not the cheese filled crusts? All of these inovations where made thanks to being free."*.
+
+## The Nordic Pizza Cult - NPC
+Label as Heretics by the others for their dark pizza magicks.
+
+*"The Italians and Americans are weak, the don't dare to take Pizza beyond their set fake borders and rules. Here in the cold north we have learned and now know the truth... there is no borders. Pizza is an empty canvas, it can be painted in to what ever chaotic image of food perfection we desire!"*.
diff --git a/wiki-rtd/docs/wiki_about/story-philosophy.md b/wiki-rtd/docs/wiki_about/story-philosophy.md
new file mode 100644
index 00000000..ee4cd1dc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/story-philosophy.md
@@ -0,0 +1,27 @@
+# RetroDECK ‐ Story & Philosophy
+
+## How RetroDECK was born?
+Let's take a step back.
+
+RetroDECK was born on March 4th 2022 in Kyoto, Japan, with the name of [351EDECK](https://imgur.com/a/tGC9ZGO) because I am also one of the founding members of 351ELEC, now [AmberELEC](https://amberelec.org/).
+What I wanted to do was to "port" 351ELEC to the Steam Deck, but instead of doing a custom firmware to flash, doing it as an application that could be launched from Steam.
+Eventually, after talking to the other team members, we decided that we didn't want to support another platform such as Steam Deck, so I decided to continue the project on my own, renaming it to RetroDECK.
+
+Back then I had many options on how to create 351EDECK, such as a bash script, appimage and flatpak.
+In the beginning I opted for a simple shell script, in fact RetroDECK/351EDECK v0.1a existed as a mere shell script.
+However I had bad feedbacks from the community because someone was feeling unsafe to give my script the root privileges so evaluating the Steam Deck use case I felt like it was not the right direction to take, the people was not feeling comfortable to give the sudo to a random script downloaded from the internet, so they asked to packetize it in some way.
+
+Valve suggests the flatpak technology to port the applications on Steam Deck so, I decided to follow their guidelines, and I created the RetroDECK that you know today, starting from a Manjaro virtual machine as a development environment because I didn't have a Steam Deck yet.
+
+// Xargon
+
+## What is RetroDECK's philosophy?
+Emulation is a global multi-generational effort of development that has lasted for decades, motivated by the pure love for video game preservation for current and future generations. RetroDECK depends on the constant development of all our dependencies (the emulators, front-end, various assets, etc…). It would be unfair to both the hard work that has been done in those projects and to the entire open-source community if we said otherwise or tried to take credit, conceal, or obscure it for our own gain.
+
+We always strive to have the best possible relationship with the teams that generously provide and develop the third-party software we are depending on now and in the future. Everyone that works on RetroDECK is immensely grateful for the global collective effort and work that has been done. Without these projects and those passionate people RetroDECK would not be possible.
+
+We also want to add a word for the developers of the third-party projects: Please feel free to reach out to us, talk to us for any reason and share your ideas. We value your feedback and suggestions, and our door is always open for collaboration and improvements. You are the backbone of our project, and we appreciate your contributions.
+
+You can find more about our dependencies on the wiki and how to donate to them or us under the donations page on this wiki.
+
+// The RetroDECK Team
diff --git a/wiki-rtd/docs/wiki_about/team-credits.md b/wiki-rtd/docs/wiki_about/team-credits.md
new file mode 100644
index 00000000..28f34717
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/team-credits.md
@@ -0,0 +1,115 @@
+# The Team
+
+## Community Management
+
+### [Lazorne](https://github.com/Lazorne)
+Community management/outreach, testing, documentation, feature suggestions, does controllers and some design.
+
+
+Meme Lord of the Wiki and also the cult leader of the NPC (The Nordic Pizza Cult) also called by the others as "The Pizza Heresy Cult" or "Harbingers of Pizza Chaos". Instigator of the internal pizza war.
+
+
+## Developers
+
+### [XargonWan](https://github.com/XargonWan)
+RetroDECK project founder and also one of the founding members of [AmberELEC](https://amberelec.org/).
+
+
+Grand General of the IPL (Italian Pizza Legion) also known as the Napoletanan Fist in the internal pizza war.
+
+
+### [IceNine451](https://github.com/icenine451)
+Creator of the `RetroDECK configurator`, the `RetroDECK Framework` and various cool things.
+
+
+Freedom loving leader of the MCCP (Murican Cheese Crust Patriots) in the internal pizza war.
+
+
+### [Lx32](https://github.com/Lx32)
+Develops various new features, functions and tools.
+
+
+
+1st Commander of the IPL (Italian Pizza Legion) nicknamed Paladin al Taglio in the internal pizza war.
+
+
+
+### WallK
+Checks GODOT and other things.
+
+
+
+Pizza Mercenary
+
+
+## Testers
+
+### [dottormac](https://github.com/redeemer666)
+Does bleeding edge cooker testing (lives in the danger zone), some feature suggestions and design.
+
+
+2nd Commander of the IPL (Italian Pizza Legion) nicknamed The Wrath of Siciliana in the internal pizza war. .
+
+
+## Collaborators: The ES-DE Group
+
+### [Leon Styhre](https://gitlab.com/leonstyhre)
+Maker of EmulationStation Desktop Edition
+
+### [anthonycaccese](https://github.com/anthonycaccese/)
+Theme creator for ES-DE and [AmberELEC](https://amberelec.org/)
+
+### [Weestuarty](https://github.com/Weestuarty)
+Theme creator for ES-DE
+
+## Others
+
+### [Niroku](https://github.com/Hew-ux)
+Helps with community management, is also part of [Batocera](https://batocera.org/)
+
+
+### [Zurdi](https://github.com/zurdi15)
+Creator of RomM and other projects.
+
+## Additional credits
+
+### [lilbud](https://github.com/lilbud)
+Have done some themes for ES-DE.
+
+### [RavenKilit](https://github.com/RavenKilit)
+Did some code and testning, contributed to [AmberELEC](https://amberelec.org/)
+
+### [MorGuux](https://github.com/MorGuux)
+Made the RetroDECK steamdb graphics for the old logo
+
+### [Pixelguin](https://github.com/Pixelguin)
+Made the new logo and steamdb graphics
+
+### teotwaki
+Generous cloud hosting sponsor
+
+### [Gabeboii](https://github.com/gabeeeboii)
+Webmaster
+
+### Draco
+Server Administration
+
+### [ItzSelenux](https://github.com/ItzSelenux)
+Maker of [pixelitos](https://github.com/ItzSelenux/pixelitos-icon-theme)
+
+## Special Thanks
+ We want give special thanks to:
+
+- Our Patreons and doners that keeps the build servers running and provide feedback.
+
+- All related emulation, frontend and software projects that we are dependent on.
+
+- All people that have put both time and money into emulation projects.
+
+- All the users who help others with support, guidance and good spirit.
+
+- All the users who help with testing and reporting issues.
+
+- All the community creators who creates various art and assets for the community.
+
+You are all the ones that makes this project possible.
diff --git a/wiki-rtd/docs/wiki_about/visions-and-goals.md b/wiki-rtd/docs/wiki_about/visions-and-goals.md
new file mode 100644
index 00000000..20f890cc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_about/visions-and-goals.md
@@ -0,0 +1,46 @@
+# Inspiration for RetroDECK and goals
+RetroDECK is inspired by embedded emulation systems like:
+
+- AmberELEC
+- EmuELEC
+- CoreELEC
+- Lakka
+- Batocera
+
+
+The RetroDECK team consists of several veterans from some of the projects mentioned above as well as a bunch of other talented other individuals.
+
+
+# What are the long term vision and goals of the RetroDECK project?
+
+
+The long term vision and goals of the project is an all-in-one application to manage your entire retro games library that is:
+
+- Already configured and should just work with your games.
+
+- Has disaster recovery and multi device support: with cloud saves and syncs.
+
+- Easy to install with one click installation.
+
+- Easy to use and provide a "Console-like / Batocera-like" featured user experience.
+
+- Easy to manage your collections of roms, mods and romhacks.
+
+- As much as possible should be configurable from inside RetroDECK itself without needing to exiting the application.
+
+- Make tighter integrations with bundled emulators and expose more features and ways to handle them to the end users.
+
+- Should be secure, safe, and stable.
+
+- Should have an easy way to mange external controllers and other inputs.
+
+- Should support a majority of all supported Emulators in ES-DE, so at least you have one good option per system.
+
+- Should in the long run support applications outside of the scope of ES-DE via a ports manager.
+
+- Should be plug and play and fill the need for a portable retro gaming solution that you can bring on the go to a friend’s/family/others house. Just dock into the TV and get going!
+
+- Should fully support Steam Deck, Linux Desktop, other SteamOS or Linux based devices.
+
+- AND MORE
+
diff --git a/wiki-rtd/docs/wiki_bugs/known-issues.md b/wiki-rtd/docs/wiki_bugs/known-issues.md
new file mode 100644
index 00000000..9170748b
--- /dev/null
+++ b/wiki-rtd/docs/wiki_bugs/known-issues.md
@@ -0,0 +1,45 @@
+# Known issues
+What follows is a list of knows issues.
+For a list of reported bugs please check here on github: [RetroDECK issues](https://github.com/XargonWan/RetroDECK/issues/)
+
+## Big issues
+- NONE Reported
+
+## Minor issues
+- `PPSSPP` Retroachievements is in the latest version, you can login / logout / enable hardcore mode normally from the emulators interface. It is right now not configurable in the Configurator (as it works a bit different the other emulators), we hope to have a solution for it at a later date.
+- `RetroArch: Gambatte` Quitting the core with the `Quit` radial function makes the core swap the palette while playing GB.
+- `RetroArch` Borders are in some few cases disappearing in the latest RetroArch version. A possible workaround is to reset RetroArch from the Configurator.
+
+## Hotkey and Controller Issues
+
+**Not all Emulators has hotkey support; some have partial support, some has none and some has a majority implemented**
+
+The plan is to map as much as we can into the RetroDECK Hotkey System below. We are also patching in Emulator Hotkeys with the `RetroDECK Framework` (if possible) to be compatible with the system. If a emulators later versions adds better hotkey support we plan to map it towards the same functions bellow for a unified experience across as many emulators as possible.
+
+### Emulator Issues
+* `PPSSPP` has a bug in with multi-input hotkeys in their flatpak version, so we did a workaround and bound ESC is Open Menu. This allows you to access all of the emulator features and can quit.
+* `RPCS3` hotkeys/shortcuts do not work and they are a new experimental feature. To exit you have to shut down RPCS3 from the `Switch Window` inside the Steam Deck interface.
+* `CEMU` has almost no hotkey support.
+* `XEMU` has no hotkey support.
+* `Citra` is the only dual-screen emulator that allows a hotkey for changing the screen layout, others: `MelonDS`, `RetroArch`, `Cemu` has no hotkey for it.
+
+# Missing Features
+We are working on implementing all of these features over the big releases. Some will take longer time then others and we will also add more things to this list when needed.
+
+**Missing features:**
+
+* Cloud sync
+* USB transfer
+* STFP
+* Better External controller support.
+* Better gyro support.
+* Dynamic external display resolution support for borders and viewports.
+* All Emulators supported by ES-DE so there at least is one per system in RetroDECK.
+* A Ports Downloader for additional systems and features.
+* A rebuilt Configurator that is a Godot application that support controller navigation.
+* A rebuilt First Run installer in Godot.
+* Better art: Mascot, Easter Eggs, Logos.
+* A multi-user system with user profiles.
+
+
+
diff --git a/wiki-rtd/docs/wiki_bugs/report-bugs.md b/wiki-rtd/docs/wiki_bugs/report-bugs.md
new file mode 100644
index 00000000..31220502
--- /dev/null
+++ b/wiki-rtd/docs/wiki_bugs/report-bugs.md
@@ -0,0 +1,15 @@
+# Reporting bugs and issues.
+
+## Before you report:
+- Check [Github issues](https://github.com/XargonWan/RetroDECK/issues/) on reported issues.
+- Check the [Known Issues](../wiki_bugs/known-issues.md).
+
+## How to Report?
+
+You can submit bugs and issues on:
+
+- On [Github issues](https://github.com/XargonWan/RetroDECK/issues/)
+- On [Discord](https://discord.gg/Dz3szYsP8g) in the `🤝-community-support` or `🆘-support` channels.
+ - If you are not certain of a issue it is better to discuss it with the community in
+ `🤝-community-support` before submitting it.
+
diff --git a/wiki-rtd/docs/wiki_community/contibute-rd.md b/wiki-rtd/docs/wiki_community/contibute-rd.md
new file mode 100644
index 00000000..1d87091e
--- /dev/null
+++ b/wiki-rtd/docs/wiki_community/contibute-rd.md
@@ -0,0 +1,58 @@
+# Can I contribute to the project?
+Yes! Everybody is welcome to contribute in any way possible if it is personal time or funds.
+
+- Do you know how to code and want to contribute? Please join the development team!
+
+- Maybe you know graphics, art or UI & UX design? Join the discussion!
+
+- You can just help by helping others in the support or guide people on various social media and communication platforms.
+
+- You can also help by just finding and testing the best configurations for the emulators and the roms.
+
+- Or just help us by doing bug reports on all the issues you find (please check old issues first before submitting a new one).
+
+- You can also choose do donate to the project over at [Donations & Licenses 🎁](../wiki_about/donations-licenses.md).
+
+## Any specific examples of what you need help with?
+
+### Artist/Creators:
+- Create new pixel art for the Radial menus.
+
+- Create easter egg art for various holidays and functions.
+
+- Create menu art for a new Configurator.
+
+- Create input art that can be shown when you start a game.
+
+- Create input art guides for the wiki for the Steam Deck and later various controllers.
+
+- Create patch note and hype videos.
+
+- Create instruction videos.
+
+- Help us make RetroDECK better.
+
+### Developers:
+- Help us put in and make new features.
+
+- Help us make the Configurator a godot application with full controller support.
+
+- Help us get releases out faster.
+
+- Help us make RetroDECK better.
+
+### Testers:
+- Help us test cooker builds and submit bugs and feedback.
+-
+- Help us make RetroDECK better.
+
+### Everyone:
+
+- Be kind and follow the rules.
+
+- Spread the word of RetroDECK if you like it, if you don't like it or have suggestions put them on github into issues or discuss them on discord.
+
+- Engage with the rest of the community.
+
+- Help us make RetroDECK better.
+
diff --git a/wiki-rtd/docs/wiki_community/discord.md b/wiki-rtd/docs/wiki_community/discord.md
new file mode 100644
index 00000000..9b6e7d79
--- /dev/null
+++ b/wiki-rtd/docs/wiki_community/discord.md
@@ -0,0 +1,55 @@
+# Discord
+
+The Discord can be found here:
+[Discord](https://discord.gg/Dz3szYsP8g)
+
+## Information
+
+Discord is a primary communication hub for the RetroDECK project.
+
+
+## Discord Rules
+
+### Do not do any of the following
+
+- Discuss any type of piracy whatsoever.
+
+- Ask for roms, bios, games and where/how to find
+them and don't PM the RetroDECK team members about it either.
+
+- Post NSFW & NSFL content.
+
+- Try to sell or promote your products and/or services, this is not a store or a marketplace (discussing experiences, asking for advice and reviews of products related to gaming and retro gaming is fine).
+
+- Post hateful comments.
+
+- Discuss your political or religious viewpoints here.
+
+- Attack server members in the channels or private in PMs on: political viewpoints, religious/non religious believes, gender, race, sexual orientation, age or any other way (if you have been attacked please message a mod in a PM).
+
+- Spam or flood the channels.
+
+- Share information or pictures about leaked games.
+
+- Spoil any new or old game or media. If you want to write about it, use the ||spoiler tag|| to prevent to ruin other user's fruition.
+
+- Use the 💬-general channel for support requests.
+
+
+- Rule 42
+
+DO NOT : Break the space time continuum with time travel and/or para dimensional travelling.
+
+
+
+### Please help and try your best to do
+
+- Try to keep memes, light spam and funny posts in the 🐸-random-memes channel (however flooding is always prohibited and all server rules must till be respected even in this channel).
+
+- Be patient, be polite, don’t swear and be respectful to each other.
+
+- Keep the topic in the correct channel.
+
+- Help other members of the community.
+
+- Be mindful that the RetroDECK team is working on this project out of passion and spending their own free time to make it happen. You can't expect 24/7 hours support and help. When you do feel the need to ask for help or advice from the RetroDECK team respect rule 13.
diff --git a/wiki-rtd/docs/wiki_community/lemmy-reddit.md b/wiki-rtd/docs/wiki_community/lemmy-reddit.md
new file mode 100644
index 00000000..4be32c61
--- /dev/null
+++ b/wiki-rtd/docs/wiki_community/lemmy-reddit.md
@@ -0,0 +1,40 @@
+# Lemmy / Reddit
+
+## Information
+
+## Lemmy/Reddit Rules
+
+### 1. DO NOT: Post links/discussion of illegal, copyrighted, pirated or leaked content.
+
+* Post links directly to pirated games, ROMs, BIOSes or shader caches.
+* Partake in discussion or encouragement to in piracy.
+* Ask for technical support for pirated games/software.
+* Post links or discussions to leaked content of any kind.
+* Censoring or obfuscating parts of an link to any part of the content above to bypass filters.
+
+### 2. DO NOT: Post NSFW & NSFL content.
+
+### 3. DO NOT: Make posts about: buying, selling, trading, begging, giveaways, self or crowd-funding without asking.
+
+* You can’t promote crowd-funding, begging, affiliate links or other form of raising funds without asking.
+* Discussing experiences, giving advice or reviews of products related to gaming and retro gaming is always OK!
+* All promotions or marketing must be vetted and approved by the RetroDECK team on Discord.
+
+### 4. DO NOT: Make posts about anything other then RetroDECK, Emulation or community relevant content.
+
+### 5. DO NOT: Post hateful comments or posts.
+
+* Don’t attack any community member on: political viewpoints, religious/non religious believes, gender, race, sexual orientation, age or any other way (if you have been attacked please message the a mod here or on discord).
+* Be patient, be polite, be kind, don’t swear and be respectful to each other.
+
+### 6. DO NOT: Discuss your political or religious viewpoints here.
+
+### 7. DO NOT: Spread misinformation
+
+* Spread intentional misinformation.
+* Impersonate another: entity, company or person.
+
+
+
+# Vivi e lascia vivere
+// RetroDECK Team
diff --git a/wiki-rtd/How-can-I-help-with-testing.md b/wiki-rtd/docs/wiki_community/testing-rd.md
similarity index 74%
rename from wiki-rtd/How-can-I-help-with-testing.md
rename to wiki-rtd/docs/wiki_community/testing-rd.md
index 5127d9e5..f486ebbc 100644
--- a/wiki-rtd/How-can-I-help-with-testing.md
+++ b/wiki-rtd/docs/wiki_community/testing-rd.md
@@ -1,19 +1,26 @@
-# About testing
+# Testing RetroDECK
There are two ways help us to test features in RetroDECK.
-The first one is our bleeding edge `RetroDECK Cooker` channel.
+The first one is our bleeding edge `RetroDECK Cooker` channel.
The second one is the `Experimental Features` inside the stable version inside the `Developer Options Menu`.
-## 🛑 Warning! Backup before testing! 🛑
-These builds and features can make you loose all data including `ROMS`, `BIOS` and `Scraped Data` etc..
-We **recommend** that you don't run any experimental features or cooker builds on your main gaming machine.
+## Can I help you with testing?
+Yes, do follow the instructions on this page and tell in Discord channel `i-want-to-help` that you are interested in testing out `RetroDECK Cooker` builds or want to give feedback on `Experimental Features`.
+You will get some instructions from one of the mods and be promoted to a `BetaTester` role.
-## 🛑 Warning! Expect bugs and issues! 🛑
-These builds and experimental features can contain several bugs and be unstable.
+
+## Before you begin!
+
+### Backup before testing! 🛑
+These builds and features can make you loose all data including `ROMS`, `BIOS` and `Scraped Data` etc..
+We **recommend** that you don't run any experimental features or cooker builds on your main gaming machine.
+
+### Expect bugs and issues! 🛑
+These builds and experimental features can contain several bugs and be unstable.
## How do I take a backup?
-Backup your `/retrodeck/` and it's content and `/.var/app/net.retrodeck.retrodeck/`.
+Backup your `/retrodeck/` and it's content and `/.var/app/net.retrodeck.retrodeck/`.
You could copy the entire folders to a secure location or for a quick test you could just rename both of the folders into something else.
Then RetroDECK will think it's a fresh install.
@@ -21,25 +28,22 @@ Example of renaming:
`OLDnet.retrodeck.retrodeck/`
`OLDretrodeck/`
-## Can I help you with testing?
-Yes, do the backups above and tell in Discord channel `i-want-to-help` that you are interested in testing out `RetroDECK Cooker` builds or want to give feedback on `Experimental Features`.
-You will get some instructions from one of the mods and be promoted to a `BetaTester` role.
-# What is RetroDECK Cooker?
+## What is RetroDECK Cooker?
[RetroDECK Cooker](https://github.com/XargonWan/RetroDECK-cooker) are the bleeding edge development builds of [RetroDECK](https://github.com/XargonWan/RetroDECK). These builds are only for development and testing purposes.
-## How do I install cooker builds
+### How do I install cooker builds?
You can download the latest `.flatpak` releases from the above link and install them via CLI or from the desktop.
-**NOTE:**
-* You need to have set up a sudo password if you want to test on a Steam Deck.
-* If you have `RetroDECK` the stable release on your system `RetroDECK-Cooker` will be installed separately since it is a different branch. We do not recommend running cooker on a system where you have a running `RetroDECK` stable.
+**NOTE:**
+* You need to have set up a sudo password if you want to test on a Steam Deck.
+* If you have `RetroDECK` the stable release on your system `RetroDECK-Cooker` will be installed separately since it is a different branch. We do not recommend running cooker on a system where you have a running `RetroDECK` stable.
-### Desktop:
+#### Desktop
-You should just be able to double click on the .`flatpak` file and what ever application manager/installer (like Discover) you have installed should be able to install it. If that does not work use the CLI method.
+You should just be able to double click on the .`flatpak` file and what ever application manager/installer (like Discover) you have installed should be able to install it. If that does not work use the CLI method.
-### CLI:
+#### CLI
Run the following command from where you have downloaded the `.flatpak` file.
`flatpak install RetroDECK.flatpak`
@@ -47,27 +51,28 @@ Run the following command from where you have downloaded the `.flatpak` file.
`flatpak remove RetroDECK`
### Why does the cooker release have strange names?
-The names are randomly generated to make it easy to see what build you are running.
+The names are randomly generated to make it easy to see what build you are running.
-# What are RetroDECK experimental features?
-Experimental features are a showcase of what proof-of-concepts we are trying out or working on that you can try out even on stable releases and we would like feedback on them. All these features are just conceptual and we hope them release ready in an later major update or scrap them if the don't work out.
-Standard backup procedures apply as written above.
+## What are RetroDECK experimental features?
+Experimental features are a showcase of what proof-of-concepts we are trying out or working on that you can try out even on stable releases and we would like feedback on them. All these features are just conceptual and we hope them release ready in an later major update or scrap them if the don't work out.
+Standard backup procedures apply as written above.
-## How do I enable them?
+### How do I enable them?
-From CLI run:
+From CLI run:
`flatpak run net.retrodeck.retrodeck uuddlrlrstart`
-The `Developer Options Menu` should show up inside the Configurator.
+The `Developer Options Menu` should show up inside the Configurator.
+
diff --git a/wiki-rtd/docs/wiki_controllers/about-steam-input.md b/wiki-rtd/docs/wiki_controllers/about-steam-input.md
new file mode 100644
index 00000000..17ef705a
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/about-steam-input.md
@@ -0,0 +1,29 @@
+# Steam Input
+
+RetroDECK handles most of the advanced controller mapping via Steam Input.
+
+## All controls in Steam Input and RetroDECK can be changed
+Everyone is free to rebind the buttons as you see fit in the any of the RetroDECK's Steam Input profiles, inside the emulators or both.
+You can make your own profile to better suite your needs and combine it with input changes you make in each emulator.
+
+But always remember if you rebind the keys inside RetroDECK in both Steam Input and the Emulators there will always be a risk that an upcoming update of either Steam or RetroDECK (thus including new versions of the built in Emulators) can come with changes that breaks your profiles.
+
+Also note that if you break your controller profile with your tinkering you can always revert to the Official Controller Profiles or reinstall them from the Configurator.
+
+## Prerequisites for Steam Input work
+
+### RetroDECK must be added to Steam
+In Steam go to the tab `Games` press `Add non Steam game to My library` and select RetroDECK to add it into your library or add it via the software `BoilR`.
+
+### Device templates like Steam Deck
+Devices like the Steam Deck with a built-in controller you will be able to find the profile under `Controller Settings` -> `Controller Layouts` -> `Templates`.
+
+### Connect the external controller to find the templates for them
+If you plan on using external controllers, you need to have the controller connected via either: `Cable` `Bluetooth` `Wireless` for the controller profile to show up automatically. You will find the profile under `Controller Settings` -> `Controller Layouts` -> `Templates`.
+
+### The following only applies to Linux Desktop:
+
+**You must have enable all Steam Inputs in Steam**
+In Steam go to the `Settings` tab to go into the `Steam Settings`, press `Controller`, enable all Steam Inputs: `Xbox` `PlayStation` `Switch Pro` `Generic`.
+
+
diff --git a/wiki-rtd/docs/wiki_controllers/about-udev.md b/wiki-rtd/docs/wiki_controllers/about-udev.md
new file mode 100644
index 00000000..f16aab18
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/about-udev.md
@@ -0,0 +1,78 @@
+# About udev
+
+udev is a device manager for the Linux kernel that gives the system access to various running hardware via device `.rules` files also known as `udev rules`.
+
+udev rules are used to allow and manage the access to a specific devices, so without a proper udev rule some devices such as custom controller could not be used by RetroDECK nor by Steam or any other part of the system.
+
+Read more on:
+
+- [Debian Wiki](https://wiki.debian.org/udev)
+- [Arch Wiki](https://wiki.archlinux.org/title/udev)
+- [Wikipedia](https://en.wikipedia.org/wiki/Udev)
+
+## Important directories
+
+### /lib/udev/rules.d/
+This directory contains the default `.rules file` shipped by your system.
+They should not be edited.
+
+### /etc/udev/rules.d/ or /run/udev/rules.d (depending on the system)
+This directory contains custom `.rules file` additions to those shipped in `/lib/udev/rules.d/` and the administrator can add more rules into this directory.
+
+If a `.rules file` exist for the same device under `/lib/udev/rules.d/` and `/etc/udev/rules.d/` the `/etc` version will always take preset over the `lib` version.
+
+## Example of a .rules file
+
+The content of a Merlin UTMS modem .rules file.
+```
+ATTRS{prod_id2}=="Merlin UMTS Modem", ATTRS{prod_id1}=="Novatel Wireless", SYMLINK+="MerlinUMTS"
+```
+
+A .rules file can also contain more the one devices example multiple 8Bitdo controllers:
+```
+# 8Bitdo F30 P1
+SUBSYSTEM=="input", ATTRS{name}=="8Bitdo FC30 GamePad", ENV{ID_INPUT_JOYSTICK}="1", TAG+="uaccess"
+
+# 8Bitdo F30 P2
+SUBSYSTEM=="input", ATTRS{name}=="8Bitdo FC30 II", ENV{ID_INPUT_JOYSTICK}="1", TAG+="uaccess"
+```
+
+## Controller udev projects
+**Valve's - Steam Devices**
+
+[steam-devices github](https://github.com/ValveSoftware/steam-devices)
+
+The Steam Devices package is usually installed when you install Steam on your system, it contains rules for the most common controllers.
+This package is also part of SteamOS so there is no need to install it on the Steam Deck.
+
+
+**Game Devices udev**
+
+[game-devices-udev codeberg](https://codeberg.org/fabiscafe/game-devices-udev)
+
+The Game Devices udev project is an effort to combine all game devices into one package but it is still early and several are missing.
+
+
+**Batocera udev**
+
+[Batocera - Controllers github](https://github.com/batocera-linux/batocera.linux/tree/master/package/batocera/controllers)
+
+The Batocera project has also combined a list of other controllers that might be missing from the two projects above.
+
+
+## Quick tips on udev installation
+
+### Administrator sudo access is needed
+
+Installing a udev rule needs administrator root access with sudo and the rules should be put in either the `/etc/udev/rules.d/` or `/run/udev/rules.d` example from above.
+
+- You can copy the `.rules` from terminal into the directory either from terminal or with a file browser.
+- The rules should be in the `.rules` file format and should be extracted from any `.zip` `.7z` `.tar` or any other compressed format.
+
+### Reboot or reload rules
+After a rule is added you will need to either reload the `udevadm` from terminal by issuing the following command: `sudo udevadm control --reload-rules` or just reboot the system.
+
+- The udev rule should be added when the RetroDECK or any other software that you want access to the device is not running.
+
+### SteamOS or immutable systems
+For SteamOS or other immutable systems udev rules might or might not persistent persist over SteamOS updates (we can't say for certain).
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-adaptive.md b/wiki-rtd/docs/wiki_controllers/controllers-adaptive.md
new file mode 100644
index 00000000..b5c9cbf1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-adaptive.md
@@ -0,0 +1,28 @@
+# Adaptive Controllers
+
+Adaptive Controllers is a small category of specialized controllers that are designed to primarily to meet the needs of gamers with limited mobility.
+
+They can be customized to fit the players needs with swapable inputs from various sources controlled by the main hub of the adaptive controller.
+
+You can also sometimes expand to more inputs as well by connecting other controller types like a Flight Stick.
+
+## Xbox Adaptive Controller (XAC)
+
+
+
+[Microsoft XAC Website](https://www.xbox.com/en-US/accessories/controllers/xbox-adaptive-controller)
+
+> When everybody plays, we all win.
+
+### The xone Project
+[The xone Project](https://github.com/medusalix/xone)
+Has firmwares, udev rules and drivers might be needed to get it to run on your distribution to get the wireless connections working.
+
+### How to configure?
+The Linux Kernel has had XAC support since version 3.17.
+As the XAC outputs standard xinput we don't see any reason why this should not work with RetroDECK.
+
+None on the RetroDECK Team owns a XAC, but we would love to hear from your experiences using it with RetroDECK.
+
+If there is something we in the team can help you with, maybe we can design a better general Steam Input profile for the XAC or any other feedback feel free to contact us on Discord.
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-arcade.md b/wiki-rtd/docs/wiki_controllers/controllers-arcade.md
new file mode 100644
index 00000000..842e03b1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-arcade.md
@@ -0,0 +1,36 @@
+# Arcade Controllers
+
+Arcade Controllers is a broad category that encompasses the vast majority of third party controllers that are used for playing arcade games, arcade style games or fighting games.
+
+As long as you can connect the arcade solution to USB, it has working udev/drivers and xinput then it should work with RetroDECK.
+
+**Always check for Linux Support**
+Just to be safe, it is better before you buy anything to double check if there is Linux support for it.
+Wireless Fight Sticks can be a hit or miss depending on if they require external configuration software.
+
+
+## Fight Sticks
+
+
+
+Many USB Fight Sticks work nativly on Linux without much of a configuration. There might be need for a slight input remapping if they are a console version of a Fight Stick.
+
+
+## Fight Stick 2 Player Combo
+
+
+
+Several suppliers have made Two Player Fight Sticks Solutions for versus and co-op gameplay.
+
+## Arcade Machines - DIY
+
+
+
+
+There are several predone kits to make your own PC connected Arcade Machine.
+They a majorty of them use a standard USB interface to connect to the PC and many times the same connector board as in the standalone Fight Sticks while the trackballs has a seperate USB connection that simulates a mouse.
+
+There should not be any major issues connecting these with RetroDECK except maybe a controller remapping.
+
+
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-flight.md b/wiki-rtd/docs/wiki_controllers/controllers-flight.md
new file mode 100644
index 00000000..f6d8c745
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-flight.md
@@ -0,0 +1,43 @@
+# Flight Controllers
+
+Flight Controllers is a broad category that encompasses the vast majority of third party controllers that are used for playing games where you are flying airplanes or other things as magic carpets.
+
+Some of them might lack Linux drivers or udev rules entirely with others there is a community effort to make them work under Linux.
+A few of them also require Windows only software to configure various inputs and buttons.
+
+If you own a Flight Controller the best solution is just to try it on Linux via the Steam Deck Dock or a Linux PC and see if it works as expected.
+If it does work on Linux and it supports xinput, we see no reason why it should not work on RetroDECK.
+
+If you have a Flight Controller that did not work on Linux but have found a way to make it work:
+
+- Please try to contribute udev rules to the [game-devices-udev codeberg](https://codeberg.org/fabiscafe/game-devices-udev)
+- (Optional) Inform the RetroDECK team on how you got it working on discord.
+
+**Always check for Linux Support**
+Just to be safe, it is better before you buy anything to double check if there is Linux support for it.
+
+## Flight Sticks - Arcade
+
+
+
+Arcade flight sticks are used for mainly flight arcade games.
+
+
+## Flight Sticks - Professional
+
+
+
+Professional level flight sticks are used for mainly flight simulation games.
+
+## Cockpit Style Sticks
+
+
+
+
+Cockpit Style flight sticks are used for mainly flight simulation games.
+
+## Flight Pedals
+
+
+
+Flight Pedals are used for mainly flight simulation games.
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-generic.md b/wiki-rtd/docs/wiki_controllers/controllers-generic.md
new file mode 100644
index 00000000..849744a8
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-generic.md
@@ -0,0 +1,76 @@
+# Generic Controllers
+
+**Note these inputs are part of the upcoming 0.8b update.**
+
+
+
+
+Generic Controllers is a broad category that encompasses the vast majority of third party controllers.
+
+
+## Generic: Standard
+
+This guide assumes that they have a similar layout as an Xbox Controller aka a Standard layout.
+
+### What are the Official profiles called?
+
+- Generic Standard : `RetroDECK: Generic: Standard - `
+
+## Global Hotkeys: Generic Button Combos
+
+The global hotkeys are activated by pressing the `SELECT` button and holding it while pressing the corresponding other button input.
+What follows is a list of hotkeys:
+
+`Function` Shows what the hotkey does.
+`Button / Combination` Shows the input you need to make to trigger the command.
+`Command` Shows what is being sent to the emulator.
+`Emulator Support` Shows what emulators support the command.
+`Comment` Just extra comments.
+
+
+| Function | Button / Combination| Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: | :---: |
+| Pause / Resume | `SELECT + A` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Take Screenshot | `SELECT + B` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `SELECT + X` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Open Menu | `SELECT + Y` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` |
+| Quit Emulator | `SELECT + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | | |
+| Previous State Slot | `SELECT + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Next State Slot | `SELECT + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
+| Increase Emulation Speed | `SELECT + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Decrease Emulation Speed | `SELECT + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Load State | `SELECT + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `SELECT + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Rewind | `SELECT + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
+| Fast forward | `SELECT + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Swap Screens | `SELECT + Left Joystick - Up` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` |
+| Escape | `SELECT + Left Joystick - Down` | `ESC` | `PPSSPP` `Computer emulators` `Solarus` `IkemenGO` |
+| Enter | `SELECT + Left Joystick - Right` | `Enter` | `Computer emulators` `OpenBOR` |
+
+
+### Right Joystick as Mouse
+
+By holding `SELECT` and moving the right joystick you can use it as a mouse for various systems that uses mouse input.
+
+| Function | Button / Combination| Command | Comment |
+| :--- | :---: | :---: | :---: |
+| Joystick as Mouse | `SELECT + Right Stick` | | Movement |
+| Right Click | `SELECT + L3` | `Right Click` | |
+| Left Click | `SELECT + R3` | `Left Click` | |
+
+### RetroArch: Additional Hotkeys
+
+These hotkeys also work for RetroArch and are built in.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Open Menu | `L3 + R3` | `RetroArch` | |
+
+### Arcade Systems: Additional Hotkeys
+
+This hotkey work for RetroArch, MAME, FBNEO and other arcade systems.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Insert Credit | `SELECT` | `RetroArch` `MAME` `FBNeo` | |
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-lightguns.md b/wiki-rtd/docs/wiki_controllers/controllers-lightguns.md
new file mode 100644
index 00000000..a1ea484a
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-lightguns.md
@@ -0,0 +1,95 @@
+# Lightguns Controllers
+
+Lightguns are special type of controllers use to play lightgun games is a broad category that encompasses the vast majority of first / third party controllers, DIY and open source projects.
+
+## Sinden
+
+
+
+[Sinden Website](https://sindenlightgun.com/)
+
+### How to configure?
+
+WIP
+
+## GUN4IR
+
+
+
+The GUN4IR uses LED point strips around your display and allows you to rebuild existing lightguns or toyguns into the GUN4IR system.
+The payed software to configure the GUN4IR guns is Windows only.
+
+[GUN4IR Website](https://www.gun4ir.com/)
+
+### How to configure?
+
+WIP
+
+## AE Light Gun
+
+
+
+[AE Light Gun Website](https://www.aelightgun.com/)
+
+### How to configure?
+
+WIP
+
+## AimTrak
+
+
+
+### How to configure?
+
+WIP
+
+## SAMCO - Arduino Powered IR Light Gun
+
+
+
+SAMCO is a way to rebuild old Namco GunCon's with Arduino to a IR Light Gun that works with modern displays.
+
+[The SAMCO Project Github](https://github.com/samuelballantyne/IR-Light-Gun)
+
+
+### How to configure?
+
+WIP
+
+## GunCon or G-Con
+
+
+
+The GunCon, known as the G-Con in Europe, is a family of gun peripherals designed by Namco for the PlayStation consoles.
+
+### ConCon 1 and 2
+
+
+
+
+
+The version one and two of the GunCon only works on CRT displays.
+
+#### How to configure?
+
+WIP
+
+### GunCon 3
+
+
+
+The version three for the Playstation 3 works with some modern displays.
+
+#### How to configure?
+
+WIP
+
+
+## Wii Remote Gun
+
+
+
+
+### How to configure?
+
+WIP
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-music.md b/wiki-rtd/docs/wiki_controllers/controllers-music.md
new file mode 100644
index 00000000..5ac6cdd8
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-music.md
@@ -0,0 +1,37 @@
+# Music / Rhythm Controllers
+
+Rhythm Controllers are special type of controllers use to play rhythm games.
+Is is a broad category that encompasses the vast majority of third and first party controllers.
+
+
+## Rockband & Guitar Hero Instruments
+
+
+
+### How to configure
+WIP
+
+
+## DJ Hero Turntable
+
+
+
+### How to configure
+WIP
+
+
+## DK Bongos
+
+
+
+### How to configure
+WIP
+
+
+## Taiko Drum & Bachi
+
+### How to configure
+WIP
+
+
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-nintendo.md b/wiki-rtd/docs/wiki_controllers/controllers-nintendo.md
new file mode 100644
index 00000000..6cd636b1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-nintendo.md
@@ -0,0 +1,96 @@
+# Nintendo Controllers
+
+**Note some these inputs are part of the upcoming 0.8b update.**
+
+## Switch Pro
+
+Supported by Steam Input
+
+
+
+## What is the Official - Switch Pro RetroDECK profile called?
+
+- Switch Pro: `RetroDECK: Switch Pro - `
+
+### Switch Pro - Global Hotkeys: Nintendo Button Combos
+
+The global hotkeys are activated by pressing the `SELECT` button and holding it while pressing the corresponding other button input.
+What follows is a list of hotkeys:
+
+`Function` Shows what the hotkey does.
+`Button / Combination` Shows the input you need to make to trigger the command.
+`Command` Shows what is being sent to the emulator.
+`Emulator Support` Shows what emulators support the command.
+`Comment` Just extra comments.
+
+
+| Function | Button / Combination| Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: | :---: |
+| Pause / Resume | `SELECT + B` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Take Screenshot | `SELECT + A` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `SELECT + Y` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Open Menu | `SELECT + X` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` |
+| Quit Emulator | `SELECT + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | | |
+| Previous State Slot | `SELECT + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Next State Slot | `SELECT + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
+| Increase Emulation Speed | `SELECT + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Decrease Emulation Speed | `SELECT + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Load State | `SELECT + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `SELECT + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Rewind | `SELECT + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
+| Fast forward | `SELECT + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Swap Screens | `SELECT + Left Joystick - Up` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` |
+| Escape | `SELECT + Left Joystick - Down` | `ESC` | `PPSSPP` `Computer emulators` `Solarus` `IkemenGO` |
+| Enter | `SELECT + Left Joystick - Right` | `Enter` | `Computer emulators` `OpenBOR` |
+
+
+### Right Joystick as Mouse
+
+By holding `SELECT` and moving the right joystick you can use it as a mouse for various systems that uses mouse input.
+
+| Function | Button / Combination| Command | Comment |
+| :--- | :---: | :---: | :---: |
+| Joystick as Mouse | `SELECT + Right Stick` | | Movement |
+| Right Click | `SELECT + L3` | `Right Click` | |
+| Left Click | `SELECT + R3` | `Left Click` | |
+
+### RetroArch: Additional Hotkeys
+
+These hotkeys also work for RetroArch and are built in.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Open Menu | `L3 + R3` | `RetroArch` | |
+
+### Arcade Systems: Additional Hotkeys
+
+This hotkey work for RetroArch, MAME, FBNEO and other arcade systems.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Insert Credit | `SELECT` | `RetroArch` `MAME` `FBNeo` | |
+
+## Joy-Con
+
+
+
+WIP
+
+## GameCube Controller Adapter for Wii U
+
+
+
+WIP
+
+## Wii Remote (Wiimote)
+
+
+
+WIP
+
+## Wii U GamePad
+
+
+
+
+WIP
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-playstation.md b/wiki-rtd/docs/wiki_controllers/controllers-playstation.md
new file mode 100644
index 00000000..f632b92a
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-playstation.md
@@ -0,0 +1,93 @@
+# Playstation Controllers
+
+**Note these inputs are part of the upcoming 0.8b update.**
+
+Steam Input have support for the following controllers:
+
+## Playstation 3 - Dualshock 3 / Sixaxis
+
+
+
+## Playstation 4 - Dualshock 4
+
+
+
+
+## Playstation 5 - DualSense
+
+
+
+## What are the Official profiles called?
+
+- Dualshock 3 / Sixaxis: `RetroDECK: Dualshock 3 - `
+- Dualshock 4: `RetroDECK: Dualshock 4 - `
+- DualSense: `RetroDECK: DualSense - `
+
+## Global Hotkeys: Playstation Button Combos
+
+The global hotkeys are activated by pressing the `SELECT` button and holding it while pressing the corresponding other button input.
+What follows is a list of hotkeys:
+
+`Function` Shows what the hotkey does.
+`Button / Combination` Shows the input you need to make to trigger the command.
+`Command` Shows what is being sent to the emulator.
+`Emulator Support` Shows what emulators support the command.
+`Comment` Just extra comments.
+
+
+| Function | Button / Combination| Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: | :---: |
+| Pause / Resume | `SELECT + Cross` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Take Screenshot | `SELECT + Circle` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `SELECT + Square` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Open Menu | `SELECT + Triangle` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` |
+| Quit Emulator | `SELECT + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | | |
+| Previous State Slot | `SELECT + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Next State Slot | `SELECT + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
+| Increase Emulation Speed | `SELECT + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Decrease Emulation Speed | `SELECT + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Load State | `SELECT + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `SELECT + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Rewind | `SELECT + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
+| Fast forward | `SELECT + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Swap Screens | `SELECT + Left Joystick - Up` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` |
+| Escape | `SELECT + Left Joystick - Down` | `ESC` | `PPSSPP` `Computer emulators` `Solarus` `IkemenGO` |
+| Enter | `SELECT + Left Joystick - Right` | `Enter` | `Computer emulators` `OpenBOR` |
+
+
+### Right Joystick as Mouse
+
+By holding `SELECT` and moving the right joystick you can use it as a mouse for various systems that uses mouse input.
+
+| Function | Button / Combination| Command | Comment |
+| :--- | :---: | :---: | :---: |
+| Joystick as Mouse | `SELECT + Right Stick` | | Movement |
+| Right Click | `SELECT + L3` | `Right Click` | |
+| Left Click | `SELECT + R3` | `Left Click` | |
+
+### RetroArch: Additional Hotkeys
+
+These hotkeys also work for RetroArch and are built in.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Open Menu | `L3 + R3` | `RetroArch` | |
+
+### Arcade Systems: Additional Hotkeys
+
+This hotkey work for RetroArch, MAME, FBNEO and other arcade systems.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Insert Credit | `SELECT` | `RetroArch` `MAME` `FBNeo` | |
+
+### PS4 Dualshock 4 and PS5 DualSense: Additional Hotkeys
+
+The touchpads acts as a mouse and can be used to navigate mouse based inputs.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Full Touchpad | | | The entire touchpad acts a mouse |
+| Right Touchpad Click | `Left Mouse Click` | | |
+| Center Touchpad Click | `Center Mouse Click` | | |
+| Left Touchpad Click | `Right Mouse Click` | | |
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-racing.md b/wiki-rtd/docs/wiki_controllers/controllers-racing.md
new file mode 100644
index 00000000..e8c9a81f
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-racing.md
@@ -0,0 +1,37 @@
+# Racing Controllers
+
+Racing Controllers is a broad category that encompasses the vast majority of third and first party controllers that has everything to do with racing games.
+
+Some of them might lack Linux drivers or udev rules entirely with others there is a community effort to make them work under Linux.
+A few of them also require Windows only software to configure various inputs and buttons.
+
+If you own a Racing Controller the best solution is just to try it on Linux via the Steam Deck Dock or a Linux PC and see if it works as expected.
+If it does work on Linux and it supports xinput, we see no reason why it should not work on RetroDECK.
+
+If you have a Flight Controller that did not work on Linux but have found a way to make it work:
+
+- Contribute udev rules to the [game-devices-udev codeberg](https://codeberg.org/fabiscafe/game-devices-udev)
+- Contribute to the Oversteer project
+- (Optional) Inform the RetroDECK team on how you got it working on discord.
+
+**Oversteer**
+
+The [OverSteer Project](https://github.com/berarma/oversteer) is trying to manage support multiple Steering Wheels on Linux. It is still in the early stages of development.
+
+Oversteer manages steering wheels on Linux using the features provided by the loaded modules.
+It doesn't provide hardware support, you'll still need a driver module that enables the hardware on Linux.
+
+Most wheels will work but won't have FFB without specific drivers that support that feature.
+
+
+
+## Steering Wheels, Pedals and Gear Shifters
+
+
+
+- Steering Wheel
+- Pedals
+- Gear Shifter
+
+All of them needs seperate driver modules and udev rules to work.
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-special.md b/wiki-rtd/docs/wiki_controllers/controllers-special.md
new file mode 100644
index 00000000..9db5bb00
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-special.md
@@ -0,0 +1,22 @@
+# Special Controllers
+
+Special Controllers is a broad category that encompasses the vast majority of third and first party controllers that don't fit anywhere else.
+They might have been made for a single game.
+
+## The Steel Battalion Cockpit
+
+
+
+The unique cockpit controller for the original Xbox game Steel Battalion.
+
+### How to use with RetroDECK or a PC or anything else?
+
+There have been efforts by user SantiagoSaldana of hackaday.io to get it working on PCs via a Teensy 3.6 / 4.1 Arduino Adapter.
+
+It translates the controllers input to emulated xinput. You can read more about the project here:
+
+[Hackady.io Project Thread](https://hackaday.io/project/182810-steel-battalion-controller-teensy-adapter)
+
+[Github Steel Battalion Controller Library for Arduino](https://github.com/SantiagoSaldana/SBC)
+
+If you have this rare controller and want to try to get it running by the above methods on Linux and RetroDECK please contact the RetroDECK team on discord to inform on your efforts we will follow them with great intrest.
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-steam.md b/wiki-rtd/docs/wiki_controllers/controllers-steam.md
new file mode 100644
index 00000000..c3ae37a1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-steam.md
@@ -0,0 +1,18 @@
+# Steam Controller
+
+Steam Controllers are controllers designed by Valve and have native Steam Input support.
+So far only one Steam Controller has been released the `Steam Controller: Gordon`.
+
+**Note these inputs are part of the upcoming 0.8b update.**
+
+Steam Input have support for the following controllers:
+
+## Steam Controller: Gordon
+
+
+
+The first Steam Controller is nicknamed Gordon and also goes by that name in all configurations.
+
+### What is the Official - Steam Controller: Gordon RetroDECK profile called?
+
+- Steam Controller Gordon: `RetroDECK: Steam Controller: Gordon - `
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-toys-to-life.md b/wiki-rtd/docs/wiki_controllers/controllers-toys-to-life.md
new file mode 100644
index 00000000..71ddc7c7
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-toys-to-life.md
@@ -0,0 +1,57 @@
+# Toys-to-life Controllers
+
+Toys-to-life Controllers is a broad category that encompasses the vast majority of mostly first party controllers that are used to connect collectable toys figures that can via the controller interact with the game.
+
+## LEGO Dimensions
+
+### LEGO ToyPad
+
+
+
+#### Installing the Toypad
+
+This controller needs to set a system's udev rule, just execute this in the terminal:
+```bash
+echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0241", MODE="0666"' | sudo tee -a /etc/udev/rules.d/71-toypad.rules > /dev/null
+sudo udevadm control --reload-rules
+```
+
+#### What emulator support the Toypad?
+At the moment of writing the best way to play LEGO Dimensions with the LEGO Toypad is to use the PS3 version and the RPCS3 emulator.
+Just connect the ToyPad to a USB port before starting the game.
+
+**Special Notes on the Steam Deck**
+
+The ToyPad must be connected to an powered USB-hub such as the a USB port of the Steam Dock.
+Directly connecting the ToyPad to the Steam Deck it's not working as the Steam Deck can not give the ToyPad enought power output.
+
+## Skylanders
+
+### Portal of Power
+
+
+
+The Portal of Power is used for the Skylanders game Series.
+
+#### How to configure
+WIP
+
+
+### Traptanium Portal
+
+
+
+The Traptanium Portal is used for the game Skylanders: Trap Team.
+
+#### How to configure
+WIP
+
+## Disney Infinity
+
+### The Disney Infinity Base
+
+
+
+#### How to configure
+WIP
+
diff --git a/wiki-rtd/docs/wiki_controllers/controllers-xbox.md b/wiki-rtd/docs/wiki_controllers/controllers-xbox.md
new file mode 100644
index 00000000..d7f5fdfa
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/controllers-xbox.md
@@ -0,0 +1,84 @@
+# Xbox Controllers
+
+**Note these inputs are part of the upcoming 0.8b update.**
+
+#### The xone Project
+[The xone Project](https://github.com/medusalix/xone)
+Has firmwares, udev rules and drivers might be needed to get it to run on your distribution to get the wireless connections working.
+This should not needed for the Steam Deck, SteamOS and most gaming focus Linux distroes has it included.
+
+## Xbox 360
+
+Supported by Steam Input
+
+
+
+## Xbox One/S/X - Xbox Wireless Controller
+
+Supported by Steam Input
+
+
+
+## What are the Official profiles called?
+
+- Xbox 360: `RetroDECK: Xbox 360 - `
+- Xbox Wireless Controller: `RetroDECK: Xbox Wireless - `
+
+## Global Hotkeys: Xbox Button Combos
+
+The global hotkeys are activated by pressing the `SELECT` button and holding it while pressing the corresponding other button input.
+What follows is a list of hotkeys:
+
+`Function` Shows what the hotkey does.
+`Button / Combination` Shows the input you need to make to trigger the command.
+`Command` Shows what is being sent to the emulator.
+`Emulator Support` Shows what emulators support the command.
+`Comment` Just extra comments.
+
+
+| Function | Button / Combination| Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: | :---: |
+| Pause / Resume | `SELECT + A` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Take Screenshot | `SELECT + B` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `SELECT + X` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Open Menu | `SELECT + Y` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` |
+| Quit Emulator | `SELECT + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | | |
+| Previous State Slot | `SELECT + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Next State Slot | `SELECT + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
+| Increase Emulation Speed | `SELECT + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Decrease Emulation Speed | `SELECT + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Load State | `SELECT + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `SELECT + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Rewind | `SELECT + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
+| Fast forward | `SELECT + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Swap Screens | `SELECT + Left Joystick - Up` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` |
+| Escape | `SELECT + Left Joystick - Down` | `ESC` | `PPSSPP` `Computer emulators` `Solarus` `IkemenGO` |
+| Enter | `SELECT + Left Joystick - Right` | `Enter` | `Computer emulators` `OpenBOR` |
+
+
+### Right Joystick as Mouse
+
+By holding `SELECT` and moving the right joystick you can use it as a mouse for various systems that uses mouse input.
+
+| Function | Button / Combination| Command | Comment |
+| :--- | :---: | :---: | :---: |
+| Joystick as Mouse | `SELECT + Right Stick` | | Movement |
+| Right Click | `SELECT + L3` | `Right Click` | |
+| Left Click | `SELECT + R3` | `Left Click` | |
+
+### RetroArch: Additional Hotkeys
+
+These hotkeys also work for RetroArch and are built in.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Open Menu | `L3 + R3` | `RetroArch` | |
+
+### Arcade Systems: Additional Hotkeys
+
+This hotkey work for RetroArch, MAME, FBNEO and other arcade systems.
+
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Insert Credit | `SELECT` | `RetroArch` `MAME` `FBNeo` | |
+
diff --git a/wiki-rtd/Steam-Deck-Hotkeys-and-controls.md b/wiki-rtd/docs/wiki_controllers/controls-steamdeck.md
similarity index 60%
rename from wiki-rtd/Steam-Deck-Hotkeys-and-controls.md
rename to wiki-rtd/docs/wiki_controllers/controls-steamdeck.md
index 752809a7..c6b861e3 100644
--- a/wiki-rtd/Steam-Deck-Hotkeys-and-controls.md
+++ b/wiki-rtd/docs/wiki_controllers/controls-steamdeck.md
@@ -1,98 +1,24 @@
-# General information
-
-[I see SA refereed in documentation about emulators what does it mean?](https://github.com/XargonWan/RetroDECK/wiki/FAQs%3A-Frequently-asked-questions#i-see-sa-refereed-in-documentation-about-emulators-what-does-it-mean)
-## Different controller layouts in games
-
-### Xbox layout - Steam Deck
-The Steam Deck uses the Xbox button layout as it's physical buttons.
-
-**Steam Deck/Xbox button layout:**
-
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `Y` |
-| Left | `X` |
-| Right | `B` |
-| Bottom | `A` |
-
-### Nintendo Layout
-Nintendo systems uses the Nintendo layout in game where both the Y-X and A-B buttons have switched places with each other from the Steam Decks physical button layout. You can enable a mode that switches the Y-X and A-B buttons for supported Emulators inside the `RetroDECK Configurator`.
-
-
-
-**Nintendo - button layout:**
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `X` |
-| Left | `Y` |
-| Right | `A` |
-| Bottom | `B` |
+# RetroDECK: Steam Deck - Official Layout
-**Example:**
-So if you are emulating a Nintendo game that calls for the button A to be pressed it corresponds to the right button on the Steam Deck so button B.
+
-### Sony PlayStation Layout
-The Sony PlayStation uses it's icon glyphs to represent it's buttons.
+### What's the latest version of the Steam Deck layout?
-**Sony PlayStation - button layout:**
-| Button Placement | Button |
-| :--- | :---: |
-| Top | `Triangle` |
-| Left | `Square` |
-| Right | `Circle` |
-| Bottom | `X` |
+**0.7.1b**
-**Example:**
-So if you are emulating a PlayStation game that calls for the button Triangle to be pressed it corresponds to the top button on the Steam Deck so button Y.
+The layout versioning do not always update with each minor patch.
+Generally only the major versions comes with profile changes.
-**Regional differences:**
+## Enable the Layout
+Be sure to have the `RetroDECK: Official Controller Layout` activated from the `Templates`.
-Depending on the region of your Playstation game, the buttons `Circle` and `X` switches the meaning for confirm and cancel (they are still at the same physical location). But it is good to keep in mind if you are used to exiting out of menus with a certain button and wondering why it works in some games while others not.
-
-**Example:**
-
-In the EU/US `X` is confirm while in Japan `X` is cancel.
-
-# Steam Deck Controller Guide - A Visual Introduction
-If you are looking for a general guide on how to use the Steam Deck controls beyond RetroDECK please check this steam community guide:
-[Steam Deck Controller Guide - A Visual Introduction](https://steamcommunity.com/sharedfiles/filedetails/?id=2804823261)
-
-
-
-# RetroDECK Official Controller Layout: Hotkeys:
-
-### Current version of the layout
-0.7.1b that is written on this wiki
-
-## Information
-Be sure to have the `RetroDECK: Official Controller Layout` activated from the `Templates`.
-- Add the Official Layout under `Controller Settings` -> `Controller Layouts` -> `Templates` in the Steam Deck called `RetroDECK: Official Layout` with a version number and apply
-
-Read more on [[Steam Deck: Installation and updates]]
-
-## Everything is customizable
-You are free to rebind the keys as you see fit in the RetroDECK: Official Layout profile and make your own to better suit your needs.
-But if you rebind the keys inside RetroDECK there can be a risk that an upcoming update will revert your changes if the emulators made changes to the keybindings for the hotkeys.
-Also note that if you break your controller profile with your tinkering please revert the RetroDECK's official profile.
-
-## 🚧 Please READ: 🚧
-
-**Not all Emulators has hotkey support; some have partial support, some has none and some has a majority implemented**
-
-The plan is to map as much as we can into the RetroDECK Hotkey System below. We are also patching in Emulator Hotkeys with the `RetroDECK Framework` (if possible) to be compatible with the system. If a emulators later versions adds better hotkey support we plan to map it towards the same functions bellow for a unified experience across as many emulators as possible.
-
-### Known issues
-* `PPSSPP` has a bug in with multi-input hotkeys in their flatpak version, so we did a workaround and bound ESC is Open Menu. This allows you to access all of the emulator features and can quit.
-* `RPCS3` hotkeys/shortcuts do not work and they are a new experimental feature. To exit you have to shut down RPCS3 from the `Switch Window` inside the Steam Deck interface.
-* `CEMU` has almost no hotkey support.
-* `XEMU` has no hotkey support.
-* `Citra` is the only dual-screen emulator that allows a hotkey for changing the screen layout, others: `MelonDS`, `RetroArch`, `Cemu` has no hotkey for it.
+- Add the Official Layout under `Controller Settings` -> `Controller Layouts` -> `Templates` in the Steam Deck called `RetroDECK: Official Layout` with a version number and apply.
## Global Hotkeys: Button Combos
-### The hotkey button
+### The hotkey button
The `HK` or `hotkey button` on the Steam Deck is `L4` or `R4` or `Select` depending on what is closest for the button combo you are trying to press, all trigger the same functions.
**Example:**
@@ -102,33 +28,33 @@ You press and hold either `L4` or `R4` or `Select` and press `A` to trigger the
### Button combo list
The global hotkeys are activated by pressing the hotkey button and holding it while pressing the corresponding other button input.
-What follows is a list of hotkeys:
+What follows is a list of hotkeys:
-`Command` Shows what the hotkey does.
+`Function` Shows what the hotkey does.
`Button / Combination` Shows the input you need to make to trigger the command.
-`Keyboard Command` Shows what is being sent to the emulator.
+`Command` Shows what is being sent to the emulator.
`Emulator Support` Shows what emulators support the command.
`Comment` Just extra comments.
-| Command | Button / Combination| Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: | :---: |
-| Pause / Resume | `HK + A` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
-| Take Screenshot | `HK + B` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
-| Fullscreen Toggle | `HK + X` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
-| Previous State Slot | `HK + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
-| Next State Slot | `HK + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
-| Increase Emulation Speed | `HK + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
-| Decrease Emulation Speed | `HK + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
-| Load State | `HK + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Save State | `HK + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Rewind | `HK + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
-| Fast forward | `HK + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
-| Swap Screens | `HK + L3` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` | |
-| Open Menu | `HK + Y` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` | |
-| Exit Emulator | `HK + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
-| Escape | `HK + R3` | `ESC` | `PPSSPP` | |
+| Function | Button / Combination| Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: | :---: |
+| Pause / Resume | `HK + A` | `CTRL + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Take Screenshot | `HK + B` | `CTRL + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `HK + X` | `CTRL + ENTER` | `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Open Menu | `HK + Y` | `CTRL + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` |
+| Quit Emulator | `HK + Start` | `CTRL + Q` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | | |
+| Previous State Slot | `HK + D-Pad Left` | `CTRL + J` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Next State Slot | `HK + D-Pad Right` | `CTRL + K` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2`|
+| Increase Emulation Speed | `HK + D-Pad Up` | `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Decrease Emulation Speed | `HK + D-Pad Down` | `CTRL + 2` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2`| | |
+| Load State | `HK + L1` | `CTRL + A` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `HK + R1` | `CTRL + S` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Rewind | `HK + L2` | `CTRL + -` | `RetroArch` `Duckstation` | |
+| Fast forward | `HK + R2` | `CTRL + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Swap Screens | `HK + L3` | `CTRL + TAB` | `Citra` `MelonDS` `Cemu` | |
+| Escape | `HK + R3` | `ESC` | `PPSSPP` | |
@@ -137,75 +63,71 @@ What follows is a list of hotkeys:
These hotkeys also work for RetroArch and are built in.
-| Command | Button / Combination | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Open Menu | `L3 + R3` | `RetroArch` | |
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Open Menu | `L3 + R3` | `RetroArch` | |
### Arcade Systems: Additional Hotkeys
This hotkey work for RetroArch, MAME, FBNEO and other arcade systems.
-| Command | Button / Combination | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Insert Credit | `Select` | `RetroArch` | |
+| Function | Button / Combination | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Insert Credit | `Select` | `RetroArch` `MAME` `FBNeo` | |
+## Steam Input - Radial Menu System
-# Steam Deck - Radial Menu System
+#### Is there a quick way to go back to the top of the radial menu system?
+Yes, just press on the `HK` trigger buttons: `L4` or `R4` or `Select`
-What follows is a breakdown of the Radial System that you access on the `Left Touchpad`.
+### Radial Menus
+What follows is a breakdown of the Radial System that you access on the `Left Touchpad`.
-### Is there a quick way to go back to the top of the radial menu system?
-Yes, just press on the `HK` trigger buttons: `L4` or `R4` or `Select`
-
-## Radial Menu System
`Radial Button` Shows what the hotkey does.
-`Keyboard Command` Shows what is being sent to the emulator.
+`Keyboard Command` Shows what is being sent to the emulator.
`Emulator Support` Shows what emulators support the command.
`Comment` Just extra comments.
-**NOTE:**
-Like everything in RetroDECK we plan to make revisions and updates of the menus. We hope with time be able to add more emulators and even better art.
+#### Main Menu
+The `Main Menu` gives you access to all the menus bellow.
-## Main Menu
-The `Main Menu` gives you access to all the menus bellow.
-
-## Quick
+#### Quick Menu
The `Quick Menu` or `Quick Access Menu` Menu is the most populated menu. It features "best of" options from other menus.
| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Exit Emulator | `Ctrl + Q` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
-| Open Menu | `Ctrl + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` | |
-| Swap Screens | `Ctrl + Tab` | `Citra` `MelonDS` `Cemu` | |
-| Take Screenshot | `Ctrl + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
-| Save State | `Ctrl + S` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Load State | `Ctrl + A` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Pause / Resume | `Ctrl + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
-| Fullscreen Toggle | `Ctrl + Enter` |`Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| :--- | :---: | :---: | :---: |
+| Quit Emulator | `Ctrl + Q` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Open Menu | `Ctrl + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` | |
+| Swap Screens | `Ctrl + Tab` | `Citra` `MelonDS` `Cemu` | |
+| Take Screenshot | `Ctrl + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Save State | `Ctrl + S` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Load State | `Ctrl + A` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Pause / Resume | `Ctrl + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Fullscreen Toggle | `Ctrl + Enter` |`Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
| Restart / Reset | `CTRL + R` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
| Escape | `ESC` | `PPSSPP` | |
-## State
-The `State Menu` is the menu where you handle anything to do with saving and loading states.
+#### State Menu
+The `State Menu` is the menu where you handle anything to do with saving and loading states.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Previous State | `Ctrl + J` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Next State | `Ctrl + K` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Save State | `Ctrl + S` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Load State | `Ctrl + A` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
-| Undo Load State | `Ctrl + 8` | `Dolphin/Primehack` | |
-| Undo Save State | `Ctrl + 9` | `Dolphin/Primehack` `Duckstation` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Previous State | `Ctrl + J` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Next State | `Ctrl + K` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Save State | `Ctrl + S` |`RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Load State | `Ctrl + A` | `RetroArch` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
+| Undo Load State | `Ctrl + 8` | `Dolphin/Primehack` | |
+| Undo Save State | `Ctrl + 9` | `Dolphin/Primehack` `Duckstation` | |
-## Speed / Frames
-The `Speed / Frames Menu` is where you find anything related to: emulation speed, frame limits, fast forwarding and rewinding.
+#### Speed / Frames Menu
+The `Speed / Frames Menu` is where you find anything related to: emulation speed, frame limits, fast forwarding and rewinding.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Fastforward | `Ctrl + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Fastforward | `Ctrl + +` | `RetroArch` `Duckstation` `MelonDS` `PCSX2` | |
| Rewind | `CTRL + -` | `RetroArch` `Duckstation` | |
| Increase Emulation Speed| `CTRL + 1` | `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
| Decrease Emulation Speed| `CTRL + 2` |`Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` | |
@@ -214,8 +136,8 @@ The `Speed / Frames Menu` is where you find anything related to: emulation speed
| Frame limit On/Off | `CTRL + Z` | `PCSX2` `Yuzu` | |
-## Display / Graphics
-The `Display / Graphics Menu` is where you find anything related to: up-scaling/resolution scaling, widescreen or change aspect ratio, fullscreen, swap or change dual screen layout.
+#### Display / Graphics Menu
+The `Display / Graphics Menu` is where you find anything related to: up-scaling/resolution scaling, widescreen or change aspect ratio, fullscreen, swap or change dual screen layout.
| Radial Button | Keyboard Command | Emulator Support | Comment |
| :--- | :---: | :---: | :---: |
@@ -226,105 +148,107 @@ The `Display / Graphics Menu` is where you find anything related to: up-scaling/
| Swap Screens | `Ctrl + Tab` |`Citra` `MelonDS` `Cemu` | |
| Change Dual Screens Layout | `Ctrl + L` | `Citra`| | |
-## General
+#### General Menu
The `General Menu` or `General Emulation Menu` is where you find various global generic emulation hotkeys: Quit/Exit, Restart, Take Screenshot, Change CD, Pause, Turbo Input, Cheats and Video Recording.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Exit Emulator | `Ctrl + Q` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
-| Open Menu | `Ctrl + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` | |
-| Take Screenshot | `Ctrl + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Quit Emulator | `Ctrl + Q` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `PCSX2` `Yuzu` | |
+| Open Menu | `Ctrl + M` | `RetroArch` `Duckstation` `PCSX2` `Yuzu` | |
+| Take Screenshot | `Ctrl + X` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
| Restart / Reset | `CTRL + R` |`RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
| Change Disc / Next Disc | `CTRL + D` | `RetroArch` `Dolphin/Primehack` `Duckstation` | |
| Cheats On/Off | `CTRL + C` | `RetroArch` `Duckstation` | |
-| Pause / Resume | `Ctrl + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
-| Turbo On/Off | `Ctrl + T` | `Duckstation` | |
-| Video Recording On/Off | `Ctrl + V` |`RetroArch` `Dolphin/Primehack` `PCSX2` | |
+| Pause / Resume | `Ctrl + P` | `RetroArch` `Citra` `Dolphin/Primehack` `Duckstation` `MelonDS` `PCSX2` `Yuzu` | |
+| Turbo On/Off | `Ctrl + T` | `Duckstation` | |
+| Video Recording On/Off | `Ctrl + V` |`RetroArch` `Dolphin/Primehack` `PCSX2` | |
-## Steam Deck
-The `Steam Deck Menu` is where you find Steam Deck specific functions and general computer hotkeys: Steam Screenshot, Show Steam Deck Keyboard, Escape, Alt + F4, Tab, Enter and F1. Some of these could also be useful inside the various PC emulation emulators.
+#### Steam Deck Menu
+The `Steam Deck Menu` is where you find Steam Deck specific functions and general computer hotkeys: Steam Screenshot, Show Steam Deck Keyboard, Escape, Alt + F4, Tab, Enter and F1. Some of these could also be useful inside the various PC emulation emulators.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Escape | `ESC` | `PPSSPP` | |
-| Tab | `Tab` | | |
-| Alt + F4 | `Alt + F4` | | |
-| F1 | `F1` | | |
-| Enter | `Enter` | | |
-| Take Steam Screenshot | `none` | | |
-| Show Steam Deck Keyboard| `none` | | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Escape | `ESC` | `PPSSPP` | |
+| Tab | `Tab` | | |
+| Alt + F4 | `Alt + F4` | | |
+| F1 | `F1` | | |
+| Enter | `Enter` | | |
+| Take Steam Screenshot | `none` | | |
+| Show Steam Deck Keyboard| `none` | | |
-## Specific
+#### Emulator Specific Menu
-The `Specific Menu` or `Specific Emulator Hotkeys Menu` opens up several system/emulator specific sub-menus. Here you will find hotkeys not so commonly used but could be good to have easy access to:
+The `Specific Menu` or ` Emulator Specific Menu` opens up several system/emulator specific sub-menus. Here you will find hotkeys not so commonly used but could be good to have easy access to:
-### Switch
+##### Switch Menu
The `Switch Menu` here you find hotkeys related to Switch emulation: Change GPU Accuracy, Change Docked/Undocked Mode, Add/Remove Amiibo
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Change GPU Accuracy | `Alt + G` | `Yuzu` | |
-| Load / Remove Amiibo | `Alt + M` | `Yuzu` | |
-| Docked / Undocked Mode | `Alt + D` | `Yuzu` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Change GPU Accuracy | `Alt + G` | `Yuzu` | |
+| Load / Remove Amiibo | `Alt + M` | `Yuzu` | |
+| Docked / Undocked Mode | `Alt + D` | `Yuzu` | |
-### MAME
+##### MAME Menu
The `MAME Menu` here find hotkeys related to the MAME standalone emulator: Servicemode and buttons 1-4, Insert None Bills (not credits that is Select) and tilt.
**MAME SUPPORT IS NOT IN YET WILL BE IN A LATER UPDATE**
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Service Mode | `Alt + 0` | `MAME` | |
-| Service Button 1 | `Alt + 1` | `MAME` | |
-| Service Button 2 | `Alt + 2` | `MAME` | |
-| Service Button 3 | `Alt + 3` | `MAME` | |
-| Service Button 4 | `Alt + 4` | `MAME` | |
-| Insert Bill / Note | `Alt + 5` | `MAME` | |
-| Tilt | `Alt + 6` | `MAME` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Service Mode | `Alt + 0` | `MAME` | |
+| Service Button 1 | `Alt + 1` | `MAME` | |
+| Service Button 2 | `Alt + 2` | `MAME` | |
+| Service Button 3 | `Alt + 3` | `MAME` | |
+| Service Button 4 | `Alt + 4` | `MAME` | |
+| Insert Bill / Note | `Alt + 5` | `MAME` | |
+| Tilt | `Alt + 6` | `MAME` | |
-### RetroArch
+##### RetroArch Menu
The `RetroArch Menu` here you find hotkeys related to the RetroArch emulator: RetroArch Cheat Mangement, AI Service and Netplay Host.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Next Cheat | `Ctrl + G` | `RetroArch` | |
-| Previous Cheat | `Ctrl + F` | `RetroArch` | |
-| Cheats On/Off | `Ctrl + C` | `RetroArch` | |
-| AI Service On/Off | `Ctrl + I` | `RetroArch` | |
-| Netplay Host On/Off | `Ctrl + H` | `RetroArch` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Next Cheat | `Ctrl + G` | `RetroArch` | |
+| Previous Cheat | `Ctrl + F` | `RetroArch` | |
+| Cheats On/Off | `Ctrl + C` | `RetroArch` | |
+| AI Service On/Off | `Ctrl + I` | `RetroArch` | |
+| Netplay Host On/Off | `Ctrl + H` | `RetroArch` | |
-### Gamecube / Wii
-The `Gamecube / Wii Menu` here you find hotkeys related to the Dolphin standalone emulator: Golf Mode, Freelook Mode On/Off/Reset, Wii Sync Button and Wii Mote Sideways / Upright.
+##### Gamecube / Wii Menu
+The `Gamecube / Wii Menu` here you find hotkeys related to the Dolphin standalone emulator: Golf Mode, Freelook Mode On/Off/Reset, Wii Sync Button and Wii Mote Sideways / Upright.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Golf Mode On/Off | `Alt + H` | `Dolphin/Primehack` | |
-| Freelook Mode On/Off | `Alt + F` |`Dolphin/Primehack` | |
-| Freelook Mode Reset | `Alt + R` | `Dolphin/Primehack` | |
-| Wii Sync Button | `Alt + W` | `Dolphin/Primehack` | |
-| Wiimote Upright | `Alt + Z` | `Dolphin/Primehack` | |
-| Wiimote Sideways | `Alt + X` | `Dolphin/Primehack` | |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Golf Mode On/Off | `Alt + H` | `Dolphin/Primehack` | |
+| Freelook Mode On/Off | `Alt + F` |`Dolphin/Primehack` | |
+| Freelook Mode Reset | `Alt + R` | `Dolphin/Primehack` | |
+| Wii Sync Button | `Alt + W` | `Dolphin/Primehack` | |
+| Wiimote Upright | `Alt + Z` | `Dolphin/Primehack` | |
+| Wiimote Sideways | `Alt + X` | `Dolphin/Primehack` | |
-### NDS
+##### NDS Menu
The `NDS Menu` here you find hotkeys related to the MelonDS standalone emulator: Send Close/Open Lid, Send Play Microphone and Sunlight + / -.
-| Radial Button | Keyboard Command | Emulator Support | Comment |
+| Radial Button | Keyboard Command | Emulator Support | Comment |
| :--- | :---: | :---: | :---: |
-| Sunlight + | `Alt + +` |`MelonDS` | |
-| Sunlight - | `Alt + -` | `MelonDS` | |
-| Play Microphone | `Alt + P` |`MelonDS` | |
-| Close/Open Lid | `Alt + L` | `MelonDS` | |
+| Sunlight + | `Alt + +` |`MelonDS` | |
+| Sunlight - | `Alt + -` | `MelonDS` | |
+| Play Microphone | `Alt + P` |`MelonDS` | |
+| Close/Open Lid | `Alt + L` | `MelonDS` | |
-### 3DS
+##### 3DS Menu
The `3DS Menu` here you find hotkeys related to the Citra standalone emulator: Load and Remove Amiibo
-| Radial Button | Keyboard Command | Emulator Support | Comment |
-| :--- | :---: | :---: | :---: |
-| Load Amiibo | `Alt + M` |`Citra` | |
-| Remove Amiibo | `Alt + N` |`Citra` | |
\ No newline at end of file
+| Radial Button | Keyboard Command | Emulator Support | Comment |
+| :--- | :---: | :---: | :---: |
+| Load Amiibo | `Alt + M` |`Citra` | |
+| Remove Amiibo | `Alt + N` |`Citra` | |
+
+
diff --git a/wiki-rtd/docs/wiki_controllers/diffrent-game-inputs.md b/wiki-rtd/docs/wiki_controllers/diffrent-game-inputs.md
new file mode 100644
index 00000000..a7cc71c8
--- /dev/null
+++ b/wiki-rtd/docs/wiki_controllers/diffrent-game-inputs.md
@@ -0,0 +1,66 @@
+# Different button prompts in games
+
+Depending on what system you are playing the button prompt inputs might not correspond to the one you have on your physical controller or device you have in your hand.
+
+## Xbox Games
+The Xbox layout is used by `Xbox Controllers`.
+Is also used by devices like the `Steam Deck` `Rog Alley`.
+It is used by a lot of `Genric` third party `PC controllers` and `Xbox Clone Controllers`.
+
+**Xbox - Button Layout:**
+
+| Button Placement | Button |Name |
+| :--- | :---: |:---: |
+| North | |Y |
+| West | |X |
+| East | |B |
+| South | |A |
+
+
+**Example:**
+So if you are emulating a Xbox game that calls for the button `B` to be pressed it corresponds to the right button.
+
+## Nintendo Games
+The Nintendo layout is used by `Nintendo Controllers`.
+It could also be used by other `Genric` third party `Nintendo Clone Controllers`.
+
+**Nintendo - Button Layout**
+
+| Button Placement | Button |Name |
+| :--- | :---: |:---: |
+| North | |X |
+| West | |Y |
+| East | |A |
+| South | |B |
+
+
+**Example:**
+So if you are emulating a Nintendo game that calls for the button `A` to be pressed it corresponds to the right button.
+
+## Sony PlayStation Games
+The Playstation layout is used by `Playstation Controllers`.
+It could also be used by other `Genric` third party `Playstation Clone Controllers`.
+
+**Playstation - Button Layout**
+
+| Button Placement | Button | Name |
+| :--- | :---: |:---: |
+| North | |Triangle |
+| West | |Square |
+| East | |Circle |
+| South | |Cross |
+
+**Example:**
+
+If you are emulating a PlayStation game that calls for the button `Square` to be pressed it corresponds to the left button.
+
+**Regional differences:**
+
+
+In games from the EU/US `Cross` is confirm while in Japan `Cross` is cancel:
+
+Depending on the region of your Playstation game, the buttons `Circle` and `Cross` switches the meaning for confirm and cancel (they are still at the same physical location).
+
+But it is good to keep in mind if you are used to exiting out of menus with a certain button and wondering why it works in some games while others not.
+
+
diff --git a/wiki-rtd/RetroDECK-CLI.md b/wiki-rtd/docs/wiki_development/cli-guide.md
similarity index 87%
rename from wiki-rtd/RetroDECK-CLI.md
rename to wiki-rtd/docs/wiki_development/cli-guide.md
index 637fb3d2..c376e69e 100644
--- a/wiki-rtd/RetroDECK-CLI.md
+++ b/wiki-rtd/docs/wiki_development/cli-guide.md
@@ -8,7 +8,7 @@ The default command to run retrodeck options and arguments is:
`flatpak run [FLATPAK-RUN-OPTION] net.retrodeck.retrodeck [ARGUMENTS]`
-Where `[FLATPAK-RUN-OPTION]` is replaced by a flatpak run option (if there is one) and `[ARGUMENTS]` is replaced by arguments.
+Where `[FLATPAK-RUN-OPTION]` is replaced by a flatpak run option (if there is one) and `[ARGUMENTS]` is replaced by arguments.
**Example:**
@@ -25,7 +25,7 @@ Where the argument `--reset-all` replaced `[ARGUMENTS]` and `[FLATPAK-RUN-OPTION
`-v` or `--version` - Prints the installed RetroDECK version
`--info-msg` - Prints all the folder paths and various config information.
-
+
`--configurator` - Starts the RetroDECK configurator
`--compress` - Compresses a specific file to .chd format. It supports .cue .iso and .gdi formats. You need to add the filepath to the file for it to work.
@@ -36,29 +36,29 @@ Where the argument `--reset-all` replaced `[ARGUMENTS]` and `[FLATPAK-RUN-OPTION
`retroarch`
`citra`
`dolphin`
-`duckstation`
-`melonds`
-`pcsx2`
-`ppsspp`
-`primehack`
-`rpcs3`
+`duckstation`
+`melonds`
+`pcsx2`
+`ppsspp`
+`primehack`
+`rpcs3`
`xemu`
-`yuzu`
+`yuzu`
-`--reset-retrodeck` - Resets the entirety of RetroDECK to default settings!
+`--reset-retrodeck` - Resets the entirety of RetroDECK to default settings!
⚠️ WARNING! BACK UP YOUR DATA BEFORE RUNNING THIS ARGUMENT! ⚠️
# General flatpak commands
-If you want to check RetroDECK's flathub page [click here](https://flathub.org/apps/details/net.retrodeck.retrodeck)
+If you want to check RetroDECK's Flathub page [click here](https://flathub.org/apps/details/net.retrodeck.retrodeck)
Here follows some general flatpak commands that could be useful:
## Install RetroDECK from CLI
If you want to install RetroDECK from CLI type:
-`flatpak install flathub net.retrodeck.retrodeck`
+`flatpak install Flathub net.retrodeck.retrodeck`
NOTE! This will work on the Steam Deck out of the box.
But on the Linux desktop you need to check your distribution if it ships with both Flatpak and Flathub integration installed, if not you may need to install it. Check your distributions or flathubs documentation on how to install it on your desktop.
@@ -68,7 +68,7 @@ But on the Linux desktop you need to check your distribution if it ships with bo
If you want to update all installed flatpaks from CLI type:
`flatpak update`
-Then answer `y` on the input prompt.
+Then answer `y` on the input prompt.
## Update only RetroDECK from CLI
@@ -76,4 +76,4 @@ If you just want to update RetroDECK type:
`flatpak update net.retrodeck.retrodeck`
-Then answer `y` on the input prompt.
\ No newline at end of file
+Then answer `y` on the input prompt.
diff --git a/wiki-rtd/RetroDECK-Folders-and-filepaths.md b/wiki-rtd/docs/wiki_development/folders-filepaths.md
similarity index 71%
rename from wiki-rtd/RetroDECK-Folders-and-filepaths.md
rename to wiki-rtd/docs/wiki_development/folders-filepaths.md
index 45b61192..c253fa49 100644
--- a/wiki-rtd/RetroDECK-Folders-and-filepaths.md
+++ b/wiki-rtd/docs/wiki_development/folders-filepaths.md
@@ -2,8 +2,9 @@
RetroDECK is a Flatpak a sandboxed bundle of different applications and configurations. One part of the files are none writable while others are.
-### `~/retrodeck`
+## ~/retrodeck
It's the home folder of RetroDECK itself, it contains:
+
- `bios`, the bios folder, the actual `retroarch/system` folder is poiting here `~/.var/app/net.retrodeck.retrodeck/config/emulationstation/.emulationstation/downloaded_media` is pointing here
- `.downloaded_media`, this is where you scraped data is saved (images, videos, logos..),
- `.lock`, this file tells RetroDECK that the settings are done and to not reset them, if this file is missing it will trigger a first boot showing the setup. Here is written the software version that is compared to the actual version to check if an update is needed.
@@ -17,54 +18,70 @@ It's the home folder of RetroDECK itself, it contains:
- `mods`, emulators mods location
- `.themes`, additional themes folder, `~/.var/app/net.retrodeck.retrodeck/config/emulationstation/.emulationstation/themes` is poiting here
-### `~/.var/app/net.retrodeck.retrodeck`
+## ~/.var/app/net.retrodeck.retrodeck
This folder is the only flatpak folder that is editable user side, it's mapped as `/var` in the flatpak itself, from now on we will use the flatpak paths unless differently specified.
-### `/var`
-- `config`, contains all the various software configs such as RetroDECK, retroarch folder and standalones emulator configs
--- `retroarch`, the retroarch folder (see below)
--- `emulationstation`, emulationstation home folder (see below)
--- `retrodeck`, to not be confued with `~/retrodeck/`, this folder contains the retrodeck configs, see below.
--- various standalone emulators config folders such as `yuzu`, `pcsx2`, `melonDS`, `dolphin-emu` and so on.
+### config/
+
+- `config`, contains all the various software configs such as RetroDECK, retroarch folder and standalones emulator configs
+ - `retroarch`, the retroarch folder (see below)
+ - `emulationstation`, emulationstation home folder (see below)
+ - `retrodeck`, to not be confued with `~/retrodeck/`, this folder contains the retrodeck configs, see below.
+ - various standalone emulators config folders such as `yuzu`, `pcsx2`, `melonDS`, `dolphin-emu` and so on.
+
+### config/retroarch
-### `/var/config/retroarch`
- `system`, retroarch bios (system) folder, this points to `~/retrodeck/bios`
- `core`, retroarch cores folder, this is populated by `/app/share/libretro/cores` at the first startup (or with `--reset`, `--reset-ra`)
- `retroarch.cfg`, the retroarch config, the original one is located in `/app/retrodeck/emu-configs/retroarch.cfg`, and similarly to above it's generated at the first startup
-### `/var/config/emulationstation`
+### config/emulationstation
+
- `ROMs`, this is linked to the roms folder in `~/retroeck/roms`or `/roms`
- `.emulationstation`, ES-DE main folder
--- `custom_systems`, where the customs systems are kept (example the tools file), check the official ES-DE docs for more info.
--- `downloaded_media`, this points to `~/retrodeck/.downloaded_media`
--- `themes`, this points to `~/retrodeck/.themes`
--- `es_log.txt`, ES-DE log file
--- `es_settings.xml`, ES-DE settings file
-### `/var/config/retrodeck`
+ - `custom_systems`, where the customs systems are kept (example the tools file), check the official ES-DE docs for more info.
+ - `downloaded_media`, this points to `~/retrodeck/.downloaded_media`
+ - `themes`, this points to `~/retrodeck/.themes`
+ - `es_log.txt`, ES-DE log file
+ - `es_settings.xml`, ES-DE settings file
+
+### config/retrodeck
+
- `tools`
- `version`, this file carries the RetroDECK version number and it ś generated during the flatpak build.
-### `/var/data`
+### data/
Some emulators, like yuzu, needs this path, here for example is even symlinked the yuzu keys and firmware folder.
-### `/var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files`
+### emu-configs/defaults/retrodeck/controller_configs
+Where the Steam Input .vdf files are located
+
+### /var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files/
+Non-flatpak path: this folders contain file such as the .desktop, icons, etc.
+
This is mapped as the `/app` folder in flatpak, this folder is inside the read only file system and so all this tree is immutable (actually can be edited by root for develop purposes).
FYI: you can edit the with KWrite, it justs ask you for the root password when saving.
-### `/app/bin`
+### /var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files/share/emulationstation/resources/systems/unix/
+This contains `es_find_rules.xml` and `es_systems.xml`
+
+### /app/bin
All the binary files, like `retrodeck.sh`, the main program (wrapper).
All these programs can be launched in developer mode just invoking them in the terminal.
-### `/app/retrodeck`
+### /app/retrodeck
This folder contains the default configuration that is restored with the various `--reset` commands.
+
- `emu-configs`
- `steam`
- `tools`
- `es_settings.xml`
- `tools-gamelist.xml`
-### `/var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files`
-Non-flatpak path: this folders contain file such as the .desktop, icons, etc.
+
+
+
+
diff --git a/wiki-rtd/Development-General-notes.md b/wiki-rtd/docs/wiki_development/general-development.md
similarity index 81%
rename from wiki-rtd/Development-General-notes.md
rename to wiki-rtd/docs/wiki_development/general-development.md
index 9568d331..0a810146 100644
--- a/wiki-rtd/Development-General-notes.md
+++ b/wiki-rtd/docs/wiki_development/general-development.md
@@ -1,4 +1,6 @@
-# Cooker
+# Development General Notes
+
+## Cooker
Cooker, differently from the main (stable) branch, is what it's boiling in the pot now: the bleeding edge of the software development.
Every time a commit or a PR is done, a GitHub action automatically compiles the snapshot with the latest changes and publish them on the [cooker repository](https://github.com/XargonWan/RetroDECK-cooker).
This can be publicly tested and if it's stable will be merged in the main branch creating a new release.
@@ -6,9 +8,10 @@ This can be publicly tested and if it's stable will be merged in the main branch
Useless to say that this channel is not suggested for the end user but it's developer / alpha tester oriented.
Expect major bugs and data loss: be warned.
-# Build instructions
+## Build instructions
If you want to build the RetroDECK flatpak on your machine for developing or just testing purposes:
+
```
cd ~
git clone --recursive https://github.com/XargonWan/RetroDECK.git
@@ -20,37 +23,42 @@ git submodule update
install `flatpak flatpak-builder p7zip-full` with your distro's package manager, then:
```
-flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
+flatpak remote-add --if-not-exists Flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08 org.freedesktop.Sdk.Extension.llvm13 org.freedesktop.Platform.ffmpeg-full/x86_64/21.08
```
To build the stable release:
+
```
flatpak-builder --user --install --install-deps-from=flathub --install-deps-from=flathub-beta --force-clean --repo=local ~/RetroDECK/retrodeck-main ~/RetroDECK/net.retrodeck.retrodeck.yml
flatpak build-bundle local ~/RetroDECK.flatpak net.retrodeck.retrodeck
```
Or alternatively, to build the cooker (experimental) release:
+
```
git checkout cooker
flatpak-builder --user --install --force-clean --repo=local ~/RetroDECK/retrodeck-cooker ~/RetroDECK/net.retrodeck.retrodeck.yml
flatpak build-bundle local ~/RetroDECK.flatpak net.retrodeck.retrodeck
```
-# Debug Mode
+## Debug Mode
It's possible to enter in a sort of debug mode, it's actually the flatpak shell.
Enter in the flatpak shell:
+
```
flatpak run --command=bash net.retrodeck.retrodeck
```
Launch ES-DE in debug mode:
+
```
emulationstation --debug --home /var/config/emulationstation
```
Launch an emulator in debug mode:
+
```
ls /app/bin
```
@@ -58,7 +66,7 @@ To get the list of the available binaries to launch, then just write the command
This is useful when for example a game is not starting and you want the output printed in the terminal.
-# Manual installation instructions
+## Manual installation instructions
This method is usually for the beta/cooker testers:
- Download the RetroDECK.flatpak from the [release page](https://github.com/XargonWan/RetroDECK/releases) or from the [cooker release page](https://github.com/XargonWan/RetroDECK-cooker/releases) (be sure to download the correct version, check the date as they're not ordered unfortunately).
- `cd` where the downloded file is located
@@ -70,47 +78,33 @@ If this doesn´t work:
- Run it from the start menu or, alternatively, from the terminal by typing `flatpak run net.retrodeck.retrodeck`
- Then the first setup will guide you in the first steps, **please read all the messages carefully** as the rom directory must not be edited in EmulationStation
-## Updating instructions
+### Updating instructions
- uninstall the previous version with `flatpak uninstall net.retrodeck.retrodeck`
- follow installation instructions
- [OPTIONAL] In case of issues it's suggested to remove `~/.var/app/net.retrodeck.retrodeck` and run `flatpak run net.retrodeck.retrodeck --reset`, but this will reset the application configs, please backup your data.
NOTE: this will not be needed after v`0.4.0b`.
-# Managing RetroDECK flatpak file
+## Managing RetroDECK flatpak file
Install RetroDECK from flatpak file:
+
```
flatpak install RetroDECK.flatpak
```
Run RetroDECK:
+
```
flatpak run net.retrodeck.retrodeck
```
Uninstall RetroDECK:
+
```
flatpak uninstall net.retrodeck.retrodeck
```
-# CLI - (Command Line interface)
-There are some functions that can be called via CLI, for a comprehensive list type:
-`flatpak run net.retrodeck.retrodeck --help` or `flatpak run net.retrodeck.retrodeck -h`
-
-Some useful ones:
-Resets the whole RetroDECK at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset
-```
-Resets RetroArch configs at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset-ra
-```
-Resets all the standalone emulators configs at factory defaults:
-```bash
-flatpak run net.retrodeck.retrodeck --reset-sa
-```
-
-# Making your own ES-DE theme
-Please check the following link link over ES-DE (this is still in development)
+## Making your own ES-DE theme
+Please check the following link link over ES-DE
[Theme Development ](https://gitlab.com/es-de/emulationstation-de/-/blob/master/THEMES-DEV.md)
+
diff --git a/wiki-rtd/docs/wiki_development/what-are-you-working.on.md b/wiki-rtd/docs/wiki_development/what-are-you-working.on.md
new file mode 100644
index 00000000..2569f6ea
--- /dev/null
+++ b/wiki-rtd/docs/wiki_development/what-are-you-working.on.md
@@ -0,0 +1,46 @@
+# What are you working on right now?
+We are always working on more stuff then shown here. Not all of these might be in the next release some are for later releases.
+What is presented here is just a short list of currently announced projects to give everyone a quick overview.
+
+To get the latest updates first:
+
+- Be a member of the [Discord](https://discord.gg/Dz3szYsP8g) and keep an eye on the `🚧-open-development` channels.
+- Follow `The RetroDECK Blog 📝`.
+- Look at [Github issues](https://github.com/XargonWan/RetroDECK/issues/) for clues.
+
+
+## New Emulators
+- GZDoom (Doom engine)
+- MAME (Standalone)
+- Ryujinx (Switch)
+- Solarus (engine)
+- Vita3K (PSVita)
+- OpenBOR (engine)
+- IkemenGO (engine)
+- ScummVM (Standalone)
+- Yuzu (Custom)
+
+## New Features Configurator / RetroDECK Framework
+
+- Reset ES-DE
+- Reset ES-DE Inputs
+- More BIOS Checks
+- More Compression formats
+- Steam Flatpak Support
+- External Controllers Support (CUP Project)
+- SFTP
+- Cloud Sync
+- USB Transfer / Backups
+- Multiuser mode
+- Adding RetroDECK games as Steam Entries
+- Configurator GODOT version
+- Disable/Enable - Quick Resume: Auto Save / Auto Load
+
+## Wiki
+
+- Emulator Guides
+- Cleaning up the Wiki
+
+## Other
+
+- Develop Rekku the RetroDECK Mascot with Tyson Tan
diff --git a/wiki-rtd/docs/wiki_devices/linux_desktop/linux-install.md b/wiki-rtd/docs/wiki_devices/linux_desktop/linux-install.md
new file mode 100644
index 00000000..ffa6c931
--- /dev/null
+++ b/wiki-rtd/docs/wiki_devices/linux_desktop/linux-install.md
@@ -0,0 +1,42 @@
+# How do I install RetroDECK on the Linux Desktop?
+
+
+
+## Prerequisites
+
+1. You need to have flatpak support installed on your Linux desktop.
+Follow the official flatpak guides on how to install it for your distribution:
+[Flatpak Setup Guide](https://flatpak.org/setup/)
+
+2. We recommend that you have the `steam-devices` and/or `game-devices-udev` package installed as it comes with udev rules for many different controllers. You will have to check your distribution on how to install it.
+
+3. We currently recommend that you add and launch RetroDECK from Steam so you can utilize the Steam Input feature to change various aspects of the external controllers. We will be looking into other alternative solutions later for those that don't want to use Steam.
+
+## From the Desktop GUI
+
+- Go into your flatpak supported software manager in your desktop environment, this is different depending on what desktop you use. Example: for GNOME is often `GNOME Software` and for KDE it is `KDE Discover`.
+- Search for RetroDECK and press install.
+
+## From the terminal
+
+- Run the following command `flatpak install Flathub net.retrodeck.retrodeck`
+
+
+## First Run - Quick Start
+
+1. Start RetroDECK for the first time
+2. Choose where RetroDECK should create the `roms` folders `Internal`, `SDCard` or `Custom`.
+3. Put the BIOS inside `~/retrodeck/bios/` for more information read
+4. Put the ROMS inside `~/retrodeck/roms/` folder.<
+
+5. Add RetroDECK to Steam [How-to - Add RetroDECK to Steam](../../wiki_howto_faq/add-to-steam.md)
+6. Make sure you have enabled controller support in Steam [How-to - Enable Controllers in Steam ](../../wiki_howto_faq/enable-controllers-steam.md)
+7. Connect your controller to your Desktop.
+8. Launch RetroDECK from Steam and enjoy
+
+## Updates
+
+Updates to RetroDECK is handled automatically via your software manager when there is a new version released.
+
+Or if you want to update from the terminal you can type:
+`flatpak update`
diff --git a/wiki-rtd/Linux-Desktop-Software-recommendations.md b/wiki-rtd/docs/wiki_devices/linux_desktop/linux-software.md
similarity index 74%
rename from wiki-rtd/Linux-Desktop-Software-recommendations.md
rename to wiki-rtd/docs/wiki_devices/linux_desktop/linux-software.md
index 43447fae..257b0386 100644
--- a/wiki-rtd/Linux-Desktop-Software-recommendations.md
+++ b/wiki-rtd/docs/wiki_devices/linux_desktop/linux-software.md
@@ -1,32 +1,43 @@
# Any other recommended software?
-The following software works great with the Linux Desktop and might enhance your RetroDECK experience (these are entirely optional to install).
+The following software works great with the Linux Desktop and might enhance your RetroDECK experience (these are entirely optional to install).
+
+## Flips
+
+
-## Flips
Flips is a software that let you patch romhacks IPS & BPS files onto the rom files.
-It's already on flathub.
+It's already on Flathub.
_Made by Alcaro_
[Flips](https://flathub.org/apps/details/com.github.Alcaro.Flips)
-## BoilR
+## BoilR
-BoilR will show games from other games platforms in your Steam library. It uses the Steam 3rd party shortcuts feature and does not require you to set up anything. You can also use BoilR to manually and automatically download custom art from SteamGridDB. It's already in flathub.
+
+
+BoilR will show games from other games platforms in your Steam library. It uses the Steam 3rd party shortcuts feature and does not require you to set up anything. You can also use BoilR to manually and automatically download custom art from SteamGridDB. It's already in Flathub.
_Made by Philipk_
[BoilR](https://flathub.org/apps/details/io.github.philipk.boilr)
## JRomManager
+
+
+
A Mame and Retrogaming Rom Manager.
-This more complex application allows you to manage and verify your roms via .dat files. It's already in on flathub and downloadable in Discover.
+This more complex application allows you to manage and verify your roms via .dat files. It's already in on Flathub and downloadable in Discover.
_Made by optyfr_
[JRomManager](https://flathub.org/apps/details/com.github.optyfr.JRomManager)
-## RomM
+## RomM
+
+
+
RomM is a game library roms manager focused in retro gaming. Manage and organize all of your games from a web browser.
Inspired by [Jellyfin](https://jellyfin.org/), allows you to manage all your games from a modern interface while enriching them with IGDB metadata.
@@ -36,3 +47,4 @@ _Made by zurdi15_
+
diff --git a/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-optimize.md b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-optimize.md
new file mode 100644
index 00000000..47ddf4c8
--- /dev/null
+++ b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-optimize.md
@@ -0,0 +1,65 @@
+# What are some optimizations for the Steam Deck to make emulation even better?
+These optimizations are entirely optional and but they can give you better performance on some more demanding emulators.
+
+## Increase the VRAM to 4GB
+This increases the VRAM to 4GB in the BIOS, this can give you improvements in certain emulators.
+
+- Power off your Steam Deck completely
+- Hold the `Power Button` and `Volume Up Button` until you hear a chime/beep and release the buttons.
+- Click on `Setup Utility`
+- Click on `Advanced`
+- Change`UMA Frame buffer Size` to 4GB
+- Save and Exit
+
+## Setup a sudo password
+This is a requirement for many optimizations and solutions, it also makes your Deck safer.
+It enables you to run commands/applications heighten sudo privileges.
+
+- Go to `Desktop Mode`
+- Open `Konsole` or another `Terminal`
+- Type `passwd`
+- You will now set your new sudo password
+- After you are done you can close the terminal
+
+## Install CryoUtilities
+This requires that you have set up a sudo password.
+
+This will create a 16GB SWAP file that can improve the performance for some emulators. Note that it will take up that extra space on your Steam Deck.
+
+- Go to `Desktop Mode`
+- Open a web browser and go to the [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) github page
+- Click on releases
+- Download the latewst `cryo_utilities` version and save to the Desktop or Home folder
+- Double click on the file and it will begin the installation
+- After installation is complete you will find a new desktop icon `CryoUtilities`
+- Click on `CryoUtilities`
+- Click on `Recommended Settings`
+- It should now be done
+
+## Install Decky Loader
+Decky Loader is a [homebrew plugin store](https://beta.deckbrew.xyz/) for the Steam Deck.
+This requires that you have set up a sudo password.
+
+- Go to `Desktop Mode`
+- Open `Konsole` or another `Terminal`
+- Type `curl -L https://github.com/SteamDeckHomebrew/decky-installer/releases/latest/download/install_release.sh | sh`
+- Decky Loader should now be installed and you can go back into `Game Mode`.
+- To access Decky Loader you only need to press the `Menu Button - (•••)`
+
+### Decky Loader: Install Power Tools
+Power Tools allows you to tweak various performance settings of the Steam Deck.
+What the best setting is differs per emulator or even per game.
+
+In Game Mode:
+
+- `Menu Button - (•••)`
+- Go into Decky Loader
+- From the Store install Power Tools
+- This will add a 🔌 icon to the `Menu Button - (•••)` where you can access Power Tools.
+
+### Decky Loader: AutoFlatpaks
+AutoFlatpaks allows you to manage and update flatpaks like RetroDECK directly from Game Mode
+
+- `Menu Button - (•••)`
+- Go into Decky Loader
+- From the Store install AutoFlatpaks
diff --git a/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-software.md b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-software.md
new file mode 100644
index 00000000..518ed0a1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-software.md
@@ -0,0 +1,55 @@
+# Steam Deck specific recommendations
+The following software works great with the Steam Deck and might enhance your RetroDECK experience.
+
+## CryoUtilities
+
+
+
+Scripts and utilities to improve performance and manage storage on the Steam Deck.
+
+_Made by CryoByte33_
+
+[CryoUtilities link](https://github.com/CryoByte33/steam-deck-utilities)
+
+## Discover Overlay
+
+
+
+If you use Discord this is a program that adds Discord integration into the Steam Deck's gamemode UI.
+It's already in on Flathub and downloadable in Discover. Note that you need to install and login to Discord as well.
+
+_Made by trigg_
+
+[Discover Overlay Link](https://trigg.github.io/Discover/)
+
+
+## Decky Loader
+
+
+
+
+Is a great piece of software that allows custom plugins inside Steam Deck's gamemode. It can open up more advanced features then the standard Steam Deck experience offers. But it's a bit more technical to install, please follow the guide on their github.
+
+_Made by Steam Deck Homebrew Team_
+
+[Decky Loader Link](https://github.com/SteamDeckHomebrew/decky-loader)
+
+
+### Plugin: PowerTools
+
+
+
+
+PowerTools let's you do advanced tweaking of the Steam Decks hardware. This can greatly improve performance on certain games in the PS2,GC and above generations. But it requires you to find the knowledge of what setting works best for each game and/or emulator.
+
+_Made by NGnius_
+
+[PowerTools Link](https://git.ngni.us/NG-SD-Plugins/PowerTools)
+
+
+### Plugin: AutoFlatpaks
+AutoFlatpaks let's you update/install/manage flatpaks directly from gamemode. You can for example update RetroDECK directly from gamemode.
+
+_Made by jurassicplayer_
+
+[AutoFlatpaks Link](https://github.com/jurassicplayer/decky-autoflatpaks)
diff --git a/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-start.md b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-start.md
new file mode 100644
index 00000000..1cd6ca3b
--- /dev/null
+++ b/wiki-rtd/docs/wiki_devices/steamdeck/steamdeck-start.md
@@ -0,0 +1,72 @@
+# How do I install RetroDECK on the Steam Deck?
+
+
+
+## Quickstart guide
+
+- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
+- Install RetroDECK from Discover
+- Start RetroDECK first time in Desktop Mode
+- Choose where RetroDECK should create the `roms` folders `Internal` or `SDCard`.
+- Put the BIOS inside `~/retrodeck/bios/`.
+- Put the ROMS inside `~/retrodeck/roms/` or `/retrodeck/roms/` or a custom location.
+- In Steam desktop go to the tab `Games` press `Add non Steam game to My library` and select RetroDECK to add it into your library. If that is not working you can `Right Click` on the RetroDECK desktop icon and press `Add to Steam` in the menu.
+- **Optional way:** Get RetroDECK Steam Grid art and add it to your Steam library with BoilR. Or add the art manually from [SteamgridDB](https://www.steamgriddb.com/search/grids?term=RetroDeck) for the Steam Grid.
+- Switch over to game mode and go to RetroDECK on the Steam Grid under `Library > Non-Steam`
+- Add the Official Layout under `Controller Settings` -> `Controller Layouts` -> `Templates` in the Steam Deck called `RetroDECK: Official Layout` with a version number and apply
+- Launch RetroDECK and enjoy
+
+## Other quick tips
+- Read up on the [Steam Deck - Controls](../../wiki_controllers/controls-steamdeck.md) to ease your navigation.
+- Read up on the [EmulationStation DE: User Guide](../../wiki_emulationStation_de/esde-guide.md)
+- Check out our other software recommendations for the Steam Deck [Steam Deck - Software Recommendations](../../wiki_devices/steamdeck/steamdeck-software.md).
+- Check various optional optimizations that can make some emulators run even better [Steam Deck - Optimizations](../../wiki_devices/steamdeck/steamdeck-optimize.md).
+
+
+## Full step by step guide
+
+### Step 1: Go to Desktop Mode
+- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
+
+### Step 2: Install from Discover
+
+- Open the Discover application.
+- **NOTE:** Depending on what language you have set in Desktop mode your Discover application can be named differently.
+- Inside Discover search for RetroDECK and press the install button.
+- After the installation is finished, launch RetroDECK from Discover or in the program menu under `Games > RetroDECK`.
+- Follow the first time setup instructions and choose where RetroDECK should create the `roms` folders `Internal` or `SDCard`.
+- Open Steam while still in desktop mode.
+- Inside Steam go to the tab `Games` press `Add non Steam game to My library` and select RetroDECK to add it into your library.
+- After this is done you can now see RetroDECK in Steam Deck's gamemode after you return to it from desktop mode.
+
+### Step 3: Configure the official controller layout
+- Go back into gamemode by pressing the return to gamemode icon on the desktop.
+- Go to RetroDECK on the Steam Grid under `Library > Non-Steam`
+- Press the `Controller Icon`
+- Go into `Controller Layouts` and press `Templates`
+- Add the layout for RetroDECK called `RetroDECK: Official Layout` with a version number.
+- You can now use RetroDECK and it's ready to populate with ROMS.
+- If you are unsure on how to add ROMS and BIOS to RetroDECK follow the [How-to - Start using RetroDECK](../../wiki_howto_faq/retrodeck-start.md)
+
+### Step 4 (Optional): Extras
+- Get RetroDECK Steam Grid art with BoilR or add it manually from [SteamgridDB](https://www.steamgriddb.com/search/grids?term=RetroDeck) for the Steam Grid.
+- Read up on the [Steam Deck - Controls](../../wiki_controllers/controls-steamdeck.md) to ease your navigation.
+- Read up on the [EmulationStation DE: User Guide](../../wiki_emulationStation_de/esde-guide.md)
+- Check out our other software recommendations for the Steam Deck [Steam Deck - Software Recommendations](../../wiki_devices/steamdeck/steamdeck-software.md).
+- Check various optional optimizations that can make some emulators run even better [Steam Deck - Optimizations](../../wiki_devices/steamdeck/steamdeck-optimize.md).
+
+
+## How do I update RetroDECK on the Steam Deck?
+
+
+### From Desktop Mode
+- Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`
+- Open the Discover application.
+- Click on the updates tab.
+- If there are any updates available it will be shown here.
+- Click on the `Update` or `Update all` buttons.
+
+### Decky: AutoFlatpaks
+If you have Decky installed and the AutoFlatpaks plugin. You can update RetroDECK from gamemode.
+Read more here: [Steam Deck - Software Recommendations](../../wiki_devices/steamdeck/steamdeck-software.md).
+
diff --git a/wiki-rtd/Emulators-Supported-folders-and-files.md b/wiki-rtd/docs/wiki_emulationStation_de/esde-folders-files.md
similarity index 95%
rename from wiki-rtd/Emulators-Supported-folders-and-files.md
rename to wiki-rtd/docs/wiki_emulationStation_de/esde-folders-files.md
index 60fd794f..2428a137 100644
--- a/wiki-rtd/Emulators-Supported-folders-and-files.md
+++ b/wiki-rtd/docs/wiki_emulationStation_de/esde-folders-files.md
@@ -1,26 +1,14 @@
# General information
-**Disclaimer: This list is a work in progress and might contain errors**
+**Disclaimer: This list is a work in progress and might contain errors, not all of these systems are enabled**
What follows is a list of each systems supported file extensions and the path to the folder where to put the roms.
-**NOTE: Steam Deck**
-For the Steam Deck the `roms` folder location depends on where you choose to install the roms folder during the RetroDECK installation process.
-It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `/retrodeck/roms`
-
-
-[What does ~ mean?](https://github.com/XargonWan/RetroDECK/wiki/FAQs-Frequently-asked-questions#i-see--refereed-in-documentation-and-examples-what-does-it-mean)
-
# 3DO
- **Roms path:** ~/retrodeck/roms/3do
- **Supported file extensions:** .iso .ISO .bin .BIN .chd .CHD .cue .CUE .7z .7Z .zip .ZIP
-# AdvanceMAME
-- **Roms path:** ~/retrodeck/roms/mame-advmame
-- **Supported file extensions:** .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP
-
-
# Adventure Game Studio Game Engine
- **Roms path:** ~/retrodeck/roms/ags
- **Supported file extensions:** .7z .7Z .zip .ZIP
@@ -141,16 +129,16 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
# Commodore
-## Commodore Amiga
+## Commodore Amiga
- **Roms path:** ~/retrodeck/roms/amiga
- **Supported file extensions:** .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP
-## Commodore Amiga 600
+## Commodore Amiga 600
- **Roms path:** ~/retrodeck/roms/amiga600
- **Supported file extensions:** .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP
-## Commodore Amiga 1200
+## Commodore Amiga 1200
- **Roms path:** ~/retrodeck/roms/amiga1200
- **Supported file extensions:** .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP
@@ -215,7 +203,7 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
- **Supported file extensions:** .7z .7Z .zip .ZIP
-# Fairchild Channel F
+# Fairchild Channel F
- **Roms path:** ~/retrodeck/roms/channelf
- **Supported file extensions:** .bin .BIN .chf .CHF .7z .7Z .zip .ZIP
@@ -237,7 +225,7 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
- **Supported file extensions:** .int .INT .bin .BIN .rom .ROM .7z .7Z .zip .ZIP
-# Infocom Z-machine
+# Infocom Z-machine
- **Roms path:** ~/retrodeck/roms/zmachine
- **Supported file extensions:** .7z .7Z .zip .ZIP
@@ -257,21 +245,10 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
- **Supported file extensions:** .cmd .CMD .7z .7Z .zip .ZIP
-# MAME4ALL
-- **Roms path:** ~/retrodeck/roms/mame-mame4all
-- **Supported file extensions:** .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP
-
-
# Multi Emulator Super System (MESS)
- **Roms path:** ~/retrodeck/roms/mess
- **Supported file extensions:** .chd .CHD .7z .7Z .zip .ZIP
-
-# Moonlight Game Streaming
-- **Roms path:** ~/retrodeck/roms/moonlight
-- **Supported file extensions:** .moonlight .MOONLIGHT .7z .7Z .zip .ZIP
-
-
# MSX
## MSX
@@ -541,12 +518,12 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
- **Supported file extensions:** .bin .BIN .cbn .CBN .ccd .CCD .chd .CHD .cue .CUE .ecm .ECM .exe .EXE .img .IMG .iso .ISO .m3u .M3U .mdf .MDF .mds .MDS .pbp .PBP .psexe .PSEXE .psf .PSF .toc .TOC .z .Z .znx .ZNX .7z .7Z .zip .ZIP
-## Sony PlayStation 2
+## Sony PlayStation 2
- **Roms path:** ~/retrodeck/roms/ps2
- **Supported file extensions:** .bin .BIN .chd .CHD .ciso .CISO .cso .CSO .dump .DUMP .elf .ELF .gz .GZ .m3u .M3U .mdf .MDF .img .IMG .iso .ISO .isz .ISZ .ngr .NRG
-## Sony PlayStation 3
+## Sony PlayStation 3
- **Roms path:** ~/retrodeck/roms/ps3
- **Supported file extensions:** .ps3 .PS3 .ps3dir .PS3DIR
@@ -655,7 +632,7 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
# Sharp
-## Sharp X1
+## Sharp X1
- **Roms path:** ~/retrodeck/roms/x1
- **Supported file extensions:** .dx1 .DX1 .2d .2D .2hd .2HD .tfd .TFD .d88 .D88 .88d .88D .hdm .HDM .xdf .XDF .dup .DUP .tap .TAP .cmd .CMD .7z .7Z .zip .ZIP
@@ -667,12 +644,12 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
# Sinclair
-## Sinclair ZX81
+## Sinclair ZX81
- **Roms path:** ~/retrodeck/roms/zx81
- **Supported file extensions:** .tzx .TZX .p .P .7z .7Z .zip .ZIP
-## Sinclair ZX Spectrum
+## Sinclair ZX Spectrum
- **Roms path:** ~/retrodeck/roms/zxspectrum
- **Supported file extensions:** .tzx .TZX .tap .TAP .z80 .Z80 .rzx .RZX .scl .SCL .trd .TRD .sh .SH .sna .SNA .szx .SZX .udi .UDI .mgt .MGT .img .IMG .dsk .DSK .gz .GZ .7z .7Z .zip .ZIP
@@ -707,7 +684,6 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
- **Supported file extensions:** .rpk .RPK .7z .7Z .zip .ZIP
-
# TIC-80 Game Engine
- **Roms path:** ~/retrodeck/roms/tic80
- **Supported file extensions:** .7z .7Z .zip .ZIP
@@ -732,3 +708,4 @@ It's either on the internal storage: `~/retrodeck/roms` or the SDCard: `
# Vectrex
- **Roms path:** ~/retrodeck/roms/vectrex
- **Supported file extensions:** .bin .BIN .vec .VEC .gam .GAM .vc .VC .7z .7Z .zip .ZIP
+
diff --git a/wiki-rtd/EmulationStation-DE-User-Guide.md b/wiki-rtd/docs/wiki_emulationStation_de/esde-guide.md
similarity index 84%
rename from wiki-rtd/EmulationStation-DE-User-Guide.md
rename to wiki-rtd/docs/wiki_emulationStation_de/esde-guide.md
index 1176aaf8..e4a4d687 100644
--- a/wiki-rtd/EmulationStation-DE-User-Guide.md
+++ b/wiki-rtd/docs/wiki_emulationStation_de/esde-guide.md
@@ -1,6 +1,8 @@
-# The User Guide
+# EmulationStation Desktop Edition: User Guide
-RetroDECK uses EmulationStation Desktop Edition (ES-DE) as its bundled interface.
+
+
+RetroDECK uses EmulationStation Desktop Edition (ES-DE) as frontend.
The official EmulationStation Desktop Edition user guide is over at their gitlab.
[EmulationStation Desktop Edition user guide](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md)
@@ -10,46 +12,52 @@ Note that the guide is written in a general way for the application and not how
_EmulationStation Desktop Edition (ES-DE) and it's guide is written by [Leon Styhre](https://gitlab.com/leonstyhre)
Published under the MIT-Licence._
-# Recommended sections in the user guide:
+What follows is a list of recommended sections of the User Guide with links.
+## General Interface & navigation
+What follows are links to parts of the EmulationStation DE user guide that talks about general settings and navigation.
-## General Interface
+### Navigation
-### General UI Settings
-Various settings that affect the user interface.
-[UI Settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#ui-settings)
-
-### Other UI settings
-These are mostly technical settings.
-[Other UI settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#other-settings)
-
-### General navigation
+#### General navigation
These are the buttons mappings automatically applied by ES-DE.
[General navigation](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#general-navigation)
If you are using the Steam Deck look at RetroDECKs hotkeys:
-[Steam Deck: Hotkeys ](https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck-Hotkeys)
+[Steam Deck: Hotkeys ](https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck:-Hotkeys)
-### Sound Settings
+### Settings
+
+#### General UI Settings
+Various settings that affect the user interface.
+[UI Settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#ui-settings)
+
+#### Other UI settings
+These are mostly technical settings.
+[Other UI settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#other-settings)
+
+#### General Sound Settings
Various sound settings.
[Sound settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#sound-settings)
-## Game settings and filters
+### Game settings and filters
-### Game options menu
+#### Game options men
Various navigation for the game options menu.
[Game options menu](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#game-options-menu)
-### Game collections
+#### Game collections
ES-DE provides two types of collections, Automatic collections and Custom collections, the latter being defined by the user. Collections are as the name implies only collections of games already present in your actual game systems, so they're basically grouping of games into convenient views.
[Game collections](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#game-collections)
-### Set alternative emulator.
+#### Set alternative emulator.
ES-DE allows you to change emulators for systems that has many different emulators.
[Set alternative emulator](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#other-settings-1)
-## Scraping and editing roms: metadata, images etc...
+## Scraper
-### Scraper
+What follows are links to parts of the EmulationStation DE user guide that talks about scraping and editing metadata.
+
+### Emulation Station DE: User Guide on themes
Contains the various options for the scraper, which is used to download metadata, images and videos for your games.
[Scraper guide](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#scraping)
@@ -70,15 +78,15 @@ These are the settings for the miximage generator, which can either be run from
[Miximage settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#miximage-settings)
-### Metadata editor
-In the metadata editor, you can modify the metadata, scrape for game info and media files, clear the entry which will delete all metadata and game media files, or delete the entire game which also removes its file on the filesystem.
-[Metadata editor](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#metadata-editor)
-
### Various other scraping settings.
[Other scraper settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#other-settings)
+## Metadata editor
+In the metadata editor, you can modify the metadata, scrape for game info and media files, clear the entry which will delete all metadata and game media files, or delete the entire game which also removes its file on the filesystem.
+[Metadata editor](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#metadata-editor)
-## Media, video, themes and slideshow settings
+
+## Video and Media
### Video screensaver settings
Options specific to the video screensaver.
@@ -91,7 +99,3 @@ Settings for the media viewer that is accessible from the gamelist views.
### Slideshow screensaver settings
Options specific to the slideshow screensaver.
[Slideshow screensaver settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#slideshow-screensaver-settings)
-
-### Theme settings
-Tells you how to use themes.
-[Theme settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#themes)
diff --git a/wiki-rtd/docs/wiki_emulationStation_de/esde-themes.md b/wiki-rtd/docs/wiki_emulationStation_de/esde-themes.md
new file mode 100644
index 00000000..9b70025e
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulationStation_de/esde-themes.md
@@ -0,0 +1,23 @@
+# EmulationStation Desktop Edition: Themes
+
+This section in the ES-DE User guide tells you how to use themes.
+[Theme settings](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#themes)
+
+What follows is a short summery.
+
+## How to switch between themes?
+Go into `Main Menu` - `UI Settings` - `Theme Set` to select the theme you want to use.
+
+## ES-DE Theme List
+Look over at the [Theme List](https://gitlab.com/es-de/themes/themes-list) and find themes you like.
+
+## How do I add additional themes?
+
+RetroDECK uses [ES-DE](https://www.es-de.org) for its interface so any theme that is compatible with ES-DE can also be used with RetroDECK
+
+### From the Theme Downloader
+
+Go into `Main Menu` - `UI Settings` - `Theme Downloader` from there you can download a wide array of themes.
+
+### From the Internet
+If you find a theme you would like to use that is not in the `Theme Downloader` please download it and place it in `~/retrodeck/themes` (make sure the theme has its own folder in that directory).
diff --git a/wiki-rtd/docs/wiki_emulator_guides/cemu-guide.md b/wiki-rtd/docs/wiki_emulator_guides/cemu-guide.md
new file mode 100644
index 00000000..b3690a5c
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/cemu-guide.md
@@ -0,0 +1,37 @@
+# Guide: CEMU
+
+
+
+WIP
+
+## Where to put the games
+WiiU games should be put under the `retrodeck/roms/wiiu/` directory.
+
+## ES-DE Guide
+
+**This needs to be rewritten**
+
+The .wua archive format is the preferred method to use for Wii U games, but the method of using unpacked games is also documented here for reference.
+.wud and .wux files are supported as well, but these two formats are not discussed here as the .wua format is clearly the way to go in the future.
+
+Method 1, using .wua files
+Start Cemu and install the game, any updates as well as optional DLCs to the Cemu NAND. After the installation is completed, open the Title Manager from the Tools menu, select your game, right click and select Convert to compressed Wii U archive (.wua) and select your wiiu system directory as the target. You can modify the file name if you want to, or keep it at its default value. Press the Save button and the game will be automatically packaged as a .wua file.
+Following this just start ES-DE and the game should be shown as a single entry that can be launched using Cemu.
+
+Method 2, unpacked games
+Only the setup on Windows is covered here, but it's the same principle in Linux and macOS.
+Using this unpacked approach, the content of each game is divided into the three directories code, content and meta.
+The first step is to prepare the target directory in the wiiu system directory, for this example we'll go for the game Super Mario 3D World. So simply create a directory with this name inside the wiiu folder. It should look something like the following:
+
+- C:\Users\myusername\ROMs\wiiu\Super Mario 3D World\
+
+The next step is done inside the Cemu user interface. You should install the game, any updates as well as optional DLCs to the Cemu NAND. After the installation is completed, right click on the game and choose Game directory. An Explorer window should now open showing the content of the game. Here's the game directory for our example:
+
+- C:\Games\cemu\mlc01\usr\title\00050000\10145d00\code
+Go up one level and copy the code, content and meta directories and paste them into the C:\Users\myusername\ROMs\wiiu\Super Mario 3D World\ directory. It should now look something like the following:
+
+- C:\Users\myusername\ROMs\wiiu\Super Mario 3D World\code
+- C:\Users\myusername\ROMs\wiiu\Super Mario 3D World\content
+- C:\Users\myusername\ROMs\wiiu\Super Mario 3D World\meta
+
+Starting ES-DE should now show the Super Mario 3D World entry for the Wii U system. The actual game file with the extension .rpx is stored inside the code directory, and does not normally match the name of the game. For this example it's named RedCarpet.rpx. When scraping the .rpx file you therefore need to refine the search and manually enter the game name. ES-DE fully supports scraping of directories, so you can scrape the Super Mario 3D World folder as well.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/citra-guide.md b/wiki-rtd/docs/wiki_emulator_guides/citra-guide.md
new file mode 100644
index 00000000..4e5ce5a5
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/citra-guide.md
@@ -0,0 +1,8 @@
+# Guide: Citra
+
+
+
+WIP
+
+## Where to put the games
+3DS games should be put under the `retrodeck/roms/3ds/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/dolphin-primehack-guide.md b/wiki-rtd/docs/wiki_emulator_guides/dolphin-primehack-guide.md
new file mode 100644
index 00000000..7aa1ea2c
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/dolphin-primehack-guide.md
@@ -0,0 +1,9 @@
+# Guide: Dolphin / Primehack
+
+
+
+WIP
+
+## Where to put the games
+Gamecube games should be put under the `retrodeck/roms/gc/` directory.
+Wii games should be put under the `retrodeck/roms/wii/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/duckstation-guide.md b/wiki-rtd/docs/wiki_emulator_guides/duckstation-guide.md
new file mode 100644
index 00000000..37ddf5a6
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/duckstation-guide.md
@@ -0,0 +1,9 @@
+# Guide: Duckstation
+
+
+
+
+WIP
+
+## Where to put the games
+Playstation games should be put under the `retrodeck/roms/psx/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/gzdoom-guide.md b/wiki-rtd/docs/wiki_emulator_guides/gzdoom-guide.md
new file mode 100644
index 00000000..0990dec0
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/gzdoom-guide.md
@@ -0,0 +1,10 @@
+# Guide: GZDoom
+
+
+
+WIP
+
+## Where to put the games
+Doom games should be put under the `retrodeck/roms/doom/` directory.
+
+## .doom folders
diff --git a/wiki-rtd/docs/wiki_emulator_guides/ikemengo-guide.md b/wiki-rtd/docs/wiki_emulator_guides/ikemengo-guide.md
new file mode 100644
index 00000000..701598cd
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/ikemengo-guide.md
@@ -0,0 +1,69 @@
+# Guide: IkemenGO / M.U.G.E.N
+
+
+
+
+WIP
+
+## Where to put the games
+`IkemenGO` `Ikemen` and `M.U.G.E.N` games should be put under the `retrodeck/roms/mugen/` directory.
+
+## ES-DE Guide
+
+**This needs to be rewritten**
+
+Ikemen GO and M.U.G.E.N Game Engine
+M.U.G.E.N games can be played using the game engine which is being actively developed and is available on Linux, macOS and Windows. The original M.U.G.E.N engine which only exists for Windows has not had any updates in years and is therefore considered obsolete and won't be covered here. But it's still possible to use it on Windows via the same approach described for Ikemen GO so if you really want to use it, then you can.
+Basic setup
+
+These games are shipped as self-contained units with the game engine binary included in the game directory structure. On Windows .lnk files are used to launch the games and on Linux and macOS files or symlinks with the .mugen extension are required.
+
+For this example we'll go with the game Ultimate Sonic Mugen.
+On Windows, go into the game directory, right click on the Ikemen_GO.exe file, select Create Shortcut followed by Create Desktop Shortcut. This will create a file with the .lnk extension. Rename the file to Ultimate Sonic Mugen.lnk and try to run this file to make sure that the game starts and runs correctly. Note that this setup is not portable, if you move your game files somewhere else you will need to manually update your shortcuts as these contain absolute paths.
+
+On Linux and macOS, go into the game directory and rename the Ikemen_GO_Linux or Ikemen_GO_MacOS binary to the name of the game and add the .mugen extension to the filename, for example Ultimate Sonic Mugen.mugen. Try to run this file to make sure that the game starts and runs correctly.
+
+Starting ES-DE and launching the game should now work fine, but a further improvement is to use the directories interpreted as files functionality to display the game as a single entry instead of a directory. To accomplish this, simply rename the game directory to the same name as the game file, which for this example would be Ultimate Sonic Mugen.lnk or Ultimate Sonic Mugen.mugen depending on which operating system you use.
+
+The setup should now look something like the following:
+
+```
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/chars/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/data/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/external/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/font/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/sound/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/stages/
+~/ROMs/mugen/Ultimate Sonic Mugen.mugen/Ultimate Sonic Mugen.mugen
+```
+
+Configuring M.U.G.E.N games for use with Ikemen GO
+This section is only included to provide some general understanding on how to convert M.U.G.E.N games to run with Ikemen GO, it's in no way a complete tutorial and the steps needed are likely slightly different for each game. Refer to the Ikemen GO support forums and documentation for more thorough information.
+We'll use the game Ultimate Sonic Mugen for this example.
+
+Download Ikemen GO from [Ikemen GO Github](https://github.com/ikemen-engine/Ikemen-GO/releases) the package you want is Ikemen_GO_v0.98.2.zip or similar, depending on which version you're downloading. Unpack the file to a suitable location.
+
+Download the game Ultimate Sonic Mugen and unpack it to a suitable location.
+Create a new game directory, for example `~/ROMs/mugen/Ultimate Sonic Mugen`.
+Copy the following directories from the downloaded game directory to the empty game directory you just created:
+
+```
+chars
+data
+font
+sound
+stages
+```
+
+If you're using an operating system with a case-sensitive file system like Linux, then you also need to rename every file inside the data directory to lowercase characters. This includes also the file extensions.
+Copy the following directories from the Ikemen GO directory to the game directory:
+
+```
+data
+external
+font
+The game binary, either Ikemen_GO.exe, Ikemen_GO_Linux or Ikemen_GO_MacOS
+```
+
+Do NOT overwrite any files when copying over the data and font directories, or the game will not work correctly.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/mame-guide.md b/wiki-rtd/docs/wiki_emulator_guides/mame-guide.md
new file mode 100644
index 00000000..04894421
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/mame-guide.md
@@ -0,0 +1,8 @@
+# Guide: MAME
+
+
+
+WIP
+
+## Where to put the games
+Games that you want to run with MAME should be put under the `retrodeck/roms/mame/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/melonds-guide.md b/wiki-rtd/docs/wiki_emulator_guides/melonds-guide.md
new file mode 100644
index 00000000..62c72371
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/melonds-guide.md
@@ -0,0 +1,8 @@
+# Guide: MelondDS
+
+
+
+WIP
+
+## Where to put the games
+NDS games should be put under the `retrodeck/roms/nds/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/openbor-guide.md b/wiki-rtd/docs/wiki_emulator_guides/openbor-guide.md
new file mode 100644
index 00000000..bbb69048
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/openbor-guide.md
@@ -0,0 +1,44 @@
+# Guide: OpenBOR
+
+
+
+WIP
+
+## Where to put the games
+OpenBOR games should be put under the `retrodeck/roms/openbor/` directory.
+
+## ES-DE Guide
+
+**This needs to be rewritten**
+
+The Open Beats of Rage (OpenBOR) game engine is available on Windows and Linux. Unfortunately the macOS ports seems to have been abandoned.
+These games are often but not always distributed together with the game engine as specific engine versions may be required for some games. The setup is slightly different between Windows and Linux so they are described separately here.
+
+On Linux you need to supply your own game engine binary as few (if any) games are distributed with the Linux release of OpenBOR.
+Download the .7z archive from the [OpenBOR Github](https://github.com/DCurrent/openbor) repository.
+
+The file you want is `OpenBOR.AppImage` which is located inside the LINUX/OpenBOR folder. If you need an older engine for some specific game, then you may need to download an earlier release instead.
+
+Copy this file to the game directory and make it executable using the command chmod +x `OpenBOR.AppImage`
+
+Using the same game example as for the Windows instructions above, the directory structure should look like the following:
+
+```
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/Logs/
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/Paks/
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/Saves/
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/ScreenShots/
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/OpenBOR_3.0_6391.AppImage
+/ROMs/openbor/D&D - K&D - The Endless Quest LNS/OpenBOR.exe
+```
+
+You can delete the OpenBOR.exe file since you don't need it, and it's recommended to rename the `OpenBOR.AppImage` file to the name of the game, such as:
+
+`~/ROMs/openbor/D&D - K&D - The Endless Quest LNS/The Endless Quest.AppImage`
+
+Starting ES-DE and launching the game should now work fine, but a further improvement is to use the directories interpreted as files functionality to display the game as a single entry instead of a directory. To accomplish this, simply rename the game directory to the same name as the .AppImage file, such as:
+
+`~/ROMs/openbor/The Endless Quest.AppImage/The Endless Quest.AppImage`
+
+Doing this will make the game show up as if it was a single file inside ES-DE and it can be included in automatic collections, custom collections and so on.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/pcsx2-guide.md b/wiki-rtd/docs/wiki_emulator_guides/pcsx2-guide.md
new file mode 100644
index 00000000..c7b81ce2
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/pcsx2-guide.md
@@ -0,0 +1,8 @@
+# Guide: PCSX2
+
+
+
+WIP
+
+## Where to put the games
+Playstation 2 games should be put under the `retrodeck/roms/ps2/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/pico8-guide.md b/wiki-rtd/docs/wiki_emulator_guides/pico8-guide.md
new file mode 100644
index 00000000..7a6a76b2
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/pico8-guide.md
@@ -0,0 +1,27 @@
+# Guide: PICO-8
+
+
+
+WIP
+
+## Where to put the games
+PICO-8 games should be put under the `retrodeck/roms/pico8/` directory.
+
+## ES-DE Guide
+
+**This needs to be rewritten**
+
+PICO-8 Fantasy Console is a game engine developed by Lexaloffle Games that you need to buy a license to use. Doing so will provide you with download links to releases for Linux, macOS and Windows. Make sure to use the 64-bit release as the 32-bit release reportedly has some technical issues. On macOS and Windows the installation is straightforward, but on Linux you need to place PICO-8 in a location recognized by ES-DE. See the Using manually downloaded emulators on Linux section of this guide for more details.
+After the emulator has been installed you are ready to add some games. There are two ways to play games using PICO-8, either to add them to ES-DE as for any other system, or using the built-in Splore tool to explore and run games all through the PICO-8 user interface.
+For the first approach you can download games from the PICO-8 forum and these are quite uniquely distributed as .png images. You just download these and place them inside the ~/ROMs/pico8 directory, for example:
+
+- /ROMs/pico8/c_e_l_e_s_t_e-0.p8.png
+- /ROMs/pico8/xzero-3.p8.png
+
+After this you just launch them like any regular game. You can also scrape many of these games using ScreenScraper, but you will need to refine the game names in most instances since most have filenames that the scraper service won't recognize. It's therefore recommended to run the scraper in interactive mode for these games or to scrape them one by one from the metadata editor.
+The second alternative for playing PICO-8 games is to run Splore to browse and launch games from inside the game engine user interface. To do this, first add a dummy game file to the ROMs/pico8 directory. It can be named anything but splore.png is recommended. The file content doesn't matter, it can even be an empty file. Following this, change to the alternative emulator PICO-8 Splore (Standalone) for this specific entry using the metadata editor. If you now launch the file, you will be brought straight to the Splore browser inside PICO-8.
+This is what the complete setup could look like:
+
+- /ROMs/pico8/c_e_l_e_s_t_e-0.p8.png
+- /ROMs/pico8/splore.png
+- /ROMs/pico8/xzero-3.p8.png
diff --git a/wiki-rtd/docs/wiki_emulator_guides/ppsspp-guide.md b/wiki-rtd/docs/wiki_emulator_guides/ppsspp-guide.md
new file mode 100644
index 00000000..592d5b9d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/ppsspp-guide.md
@@ -0,0 +1,8 @@
+# Guide: PPSSPP
+
+
+
+WIP
+
+## Where to put the games
+PSP games should be put under the `retrodeck/roms/psp/` directory.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/retroarch-guide.md b/wiki-rtd/docs/wiki_emulator_guides/retroarch-guide.md
new file mode 100644
index 00000000..f54d1228
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/retroarch-guide.md
@@ -0,0 +1,5 @@
+# Guide: RetroArch
+
+
+
+WIP
diff --git a/wiki-rtd/docs/wiki_emulator_guides/rpcs3-guide.md b/wiki-rtd/docs/wiki_emulator_guides/rpcs3-guide.md
new file mode 100644
index 00000000..24967026
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/rpcs3-guide.md
@@ -0,0 +1,133 @@
+# Guide: RPCS3 - Playstation 3
+
+
+
+---
+
+### RPCS3 Links:
+
+[RPCS3 Quickstart Guide](https://rpcs3.net/quickstart)
+
+[RPCS3 Wiki](https://wiki.rpcs3.net/index.php?title=Main_Page)
+
+[RPCS3 Github](https://github.com/RPCS3/rpcs3)
+
+[RPCS3 Webpage](https://rpcs3.net/)
+
+---
+
+## Where to put the games?
+PS3 games comes either as a Blu-ray rip directory (folder) with a bunch of different files or a digital PSN title that needs to be installed (see guide on this page).
+
+PS3 games should be put under the `retrodeck/roms/ps3/` directory.
+
+## Does RPCS3 require BIOS or Firmware?
+Yes, the `PS3UPDAT.PUP` firmware
+
+### How to: Install the PS3UPDAT.PUP firmware
+
+There are two ways to install the firmware:
+
+#### Install PS3 firmware from RetroDECK Configurator
+
+1. Open RPCS3 `RetroDECK Configurator` - `RetroDECK: Tools` - `Install: PS3 Firmware`.
+2. Press `OK` and this will download the PS3 Firmware and open RPCS3.
+3. You will get a prompt asking if you want to install the firmware from the /tmp/ folder, say `Yes`
+4. Wait for the installation to finish
+5. Exit RPCS3 from the GUI under `File -> Exit`
+
+#### Manual Download
+1. Download the latest PS3 firmware `PS3UPDAT.PUP` from Sony [here](https://www.playstation.com/en-us/support/hardware/ps3/system-software/)
+2. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
+3. In the RPCS3 interface navigate to `File -> Install Firmware`.
+4. In the file browser navigate and select the file `PS3UPDAT.PUP` file.
+5. The firmware should now be installed.
+
+## How to: Get games to show up inside the ES-DE interface
+
+There are two methods of adding the games
+
+Read more here:
+https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#sony-playstation-3
+
+### Method 1: Game shortcuts .desktop files (recommended)
+
+This method can be used for all types rips/dumps both directories and .iso files.
+
+1. Open RPCS3 via the Configurator
+2. Click File -> Add Game -> Browse to game you want to add.
+3. The game will now show up in the RPCS3 game list.
+4. Rightclick on that list.
+5. This will create a shortcut to the game on your Desktop.
+6. Move that shortcut into the roms/ps3 folder.
+
+### Method 2: Directories as .ps3 files
+This method can only be used directory type game dumps.
+To get the games to show up you need to rename the directory to end with a `.ps3` file extension.
+
+_Example:_
+
+You have directory dump of the a game Blu-ray PlayStation 3 game called Hockey World, the directory is called `Hockey World`.
+
+To get the it to show up you need to rename and add `.ps3` in the end of the directory name.
+
+The directory `Hockey World` becomes `Hockey World.ps3` and the game will show up.
+
+
+## How to: Install DLC or patches on disc based games
+
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`. If you want to do it in `Game Mode` you need to press the `Steam` button and switch between windows using the window switcher.
+
+If you want to install some DLC or patch you can do that trough RPCS3 itself.
+
+1. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
+2. In the RPCS3 interface navigate to `File -> Install Packages/Raps/Edats`.
+3. In the file browser navigate and select the file you want to install.
+4. The game can be launched via RetroDECK with patches and DLC already installed.
+
+### (OPTIONAL) How to include the DLC or PATCH in the main game files
+
+Some users may want to include their DLC or PATCH files inside the game folder for achiving purposes, or just to don't have to keep these contents spread in the RPCS3 filesystem.
+It's fully optional but to do so the steps are:
+
+1. The files will be installed inside the a new game directory on the RPCS3 hard drive under
+ `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` where `GAMEID` is unique for each game [PS3GAMEID-List](https://www.gametdb.com/PS3/List).
+2. The patches or dlc should now be installed inside the `GAMEID` directory.
+3. Move the content of the GAMEID directory into the games directory inside the `retrodeck/roms/ps3/GAMENAME.ps3` directory and overwrite & replace the files.
+4. You can now remove the `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` directory as the files have been moved.
+
+Example:
+
+- The game `Hockey World.ps3` inside the `retrodeck/roms/ps3/` has some DLC & and a patch you want to install.
+- You follow the above guide and install the files.
+- The installation made a newly created directory called `BCA111111` under `retrodeck/bios/rpcs3/dev_hdd0/game/`.
+- You open up the directory `retrodeck/bios/rpcs3/dev_hdd0/game/BCA111111` and copy all of it's content and paste it into `retrodeck/roms/ps3/Hockey World.ps3` directory and replace/overwrite the files.
+- You can then remove the `BCA111111` directory in `retrodeck/bios/rpcs3/dev_hdd0/game/`
+
+## How to: Install digital PSN titles
+
+The procedure is almost identical as the procedure above.
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`. If you want to do it in `Game Mode` you need to press the `Steam` button and switch between windows using the window switcher.
+
+If you want to install some PSN tiltes you can do that trough RPCS3 itself.
+
+1. Open RPCS3 `RetroDECK Configurator -> Open Emulator -> RPCS3`.
+2. In the RPCS3 interface navigate to `File -> Install Packages/Raps/Edats`.
+3. In the file browser navigate and select the file you want to install.
+4. The file will be installed inside the games directory on the RPCS3 hard drive under
+ `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` where `GAMEID` is unique for each game [PS3GAMEID-List](https://www.gametdb.com/PS3/List).
+5. Install any patches or DLC for the game by repeating step .2 and .3 for each file.
+6. The game should now show up and be playable inside the ES-DE interface.
+
+### (OPTIONAL) Move the digital contents into a .ps3 folder
+Similarly on how written above with the DLC and PATCHES the user can decide to move the digital games outside the RPCS3 filesystem, in order to do so:
+
+1. After the game is ready move the digital games directory from `retrodeck/bios/rpcs3/dev_hdd0/game/GAMEID` to `retrodeck/roms/ps3`
+2. Rename the directory to the name of the game and add the .ps3 file extension to the end of the directory (see guide above).
+
+
+**Example:**
+
+- You installed a file that contained the digital game Hockey World 2, it created a directory called `BCA123456` under `retrodeck/bios/rpcs3/dev_hdd0/game/`
+- After that you moved `BCA123456` from `retrodeck/bios/rpcs3/dev_hdd0/game/` to `retrodeck/roms/ps3`.
+The directory `BCA123456` is renamed to `Hockey World 2.ps3`.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/ryujinx-guide.md b/wiki-rtd/docs/wiki_emulator_guides/ryujinx-guide.md
new file mode 100644
index 00000000..6bbfdc2d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/ryujinx-guide.md
@@ -0,0 +1,10 @@
+# Guide: Ryujinx
+
+
+
+
+WIP
+
+## Where to put the games?
+Switch games should be put into the `retrodeck/roms/switch/` directory.
+The games can come in many different formats: `XCI` `NSP` `NCA` `NSO` `NRO`.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/scummvm-guide.md b/wiki-rtd/docs/wiki_emulator_guides/scummvm-guide.md
new file mode 100644
index 00000000..e98684cd
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/scummvm-guide.md
@@ -0,0 +1,55 @@
+# Guide: ScummVM
+
+
+
+---
+
+### ScummVM Links:
+[ScummVM Guides](https://docs.scummvm.org/en/v2.7.1/)
+
+[ScummVM Game Compatibility and ID List](https://www.scummvm.org/compatibility)
+
+[ScummVM Wiki](https://wiki.scummvm.org/index.php?title=Main_Page)
+
+[ScummVM Github](https://github.com/scummvm/scummvm)
+
+[ScummVM Webpage](https://www.scummvm.org/)
+
+---
+
+## Where to put the games?
+ScummVM games should be put into the `retrodeck/roms/scummvm/` directory.
+
+## Does ScummVM require BIOS or Firmware?
+No
+
+## How to: Get games to show up inside the ES-DE interface
+
+**Example:**
+In this example we got a game we want to add: `Beneath a Steel Sky`
+
+### Step 1: Add the game
+
+Move the uncompressed game into the `retrodeck/roms/scummvm/` folder.
+The result should be: `retrodeck/roms/scummvm/Beneath a Steel Sky/`
+
+### Step 2: Check the ScummVM ID of the game
+
+
+
+Go into [ScummVM Game Compatibility and ID List](https://www.scummvm.org/compatibility)
+Search for `Beneath a Steel Sky` make a note of the ScummVM ID in this case called: `sky`
+
+### Step 3: Create the .scummvm file
+- The `.scummvm` file starts as a empty textfile that needs to be created in each game you want to adds directory.
+- It should be named `.scummvm`
+- In our example the file will be called `sky.scummvm` and should be created in `retrodeck/roms/scummvm/Beneath a Steel Sky/`
+
+The end result should look like:
+`retrodeck/roms/scummvm/Beneath a Steel Sky/sky.scummvm`
+
+### Step 4: Open the .scummvm file and add the ScummVM_ID
+Open up the empty `sky.scummvm` file and just type in the `` in the first row of the file and save in this example `sky`. Make sure you don't add any spaces or linebreaks and the file should just contain the word `sky`.
+
+### Step 5: The game should now run
+The game should now be added to the ES-DE interface from the `retrodeck/roms/scummvm/Beneath a Steel Sky/sky.scummvm` file you just created and can be played after you reload RetroDECK from the Configurator or re-launch the application.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/solarus-guide.md b/wiki-rtd/docs/wiki_emulator_guides/solarus-guide.md
new file mode 100644
index 00000000..67c95e60
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/solarus-guide.md
@@ -0,0 +1,9 @@
+# Guide: Solarus
+
+
+
+WIP
+
+## Where to put the games
+Solarus games should be put under the `retrodeck/roms/solarus/` directory.
+
diff --git a/wiki-rtd/docs/wiki_emulator_guides/vita3k-guide.md b/wiki-rtd/docs/wiki_emulator_guides/vita3k-guide.md
new file mode 100644
index 00000000..f02e5bcc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/vita3k-guide.md
@@ -0,0 +1,89 @@
+# Guide: Vita3K
+
+**Please note that the PSVita support is still experimental and it will be available starting from RetroDECK 0.8.0b**
+
+
+
+---
+
+### Vita3K Links:
+[Vita3K Quickstart Guide](https://vita3k.org/quickstart.html)
+
+[Vita3K Game Compatibility and ID List](https://vita3k.org/compatibility.html?lang=en)
+
+[Vita3K Homebrew Compatibility and ID List](https://vita3k.org/compatibility-homebrew.html)
+
+[Vita3K Wiki](https://github.com/Vita3K/Vita3K/wiki)
+
+[Vita3K Github](https://github.com/Vita3K/Vita3K)
+
+[Vita3K Webpage](https://vita3k.org/)
+
+---
+
+## Where to put the games?
+Vita3K games should be put into the `retrodeck/roms/psvita/` directory.
+The supported formats are `pkg`, `zip`, `vpk`.
+
+## Does Vita3K require BIOS or Firmware?
+Yes, it requires two firmwares.
+
+- The Firmware: `PSVUPDAT.PUP`
+- The Firmware Font Package: `PSP2UPDAT.PUP`
+
+The firmware and font firmware can be downloaded and installed from the Configurator.
+
+You can also install them manually:
+Download the firmwares from
+
+- [Sony PSVita Firmware](https://www.playstation.com/en-us/support/hardware/psvita/system-software/)
+- [Sony PSVita Firmware Font Package](https://dus01.psp2.update.playstation.net/update/psp2/image/2022_0209/sd_59dcf059d3328fb67be7e51f8aa33418/PSP2UPDAT.PUP?dest=usand)
+
+Open Vita3K from the Configurator and press `File - Install Firmware` to install the downloaded firmware.
+
+## Licence Files and Keys
+
+Licence files `.bin` `.rif` or licence keys called a `zRif` are required for many games.
+They need to be installed by pressing `File - Install Licence` then either `Select work.bin / rif` for the files or `Enter zRif` to input the key.
+
+## How to: Get games to show up inside the ES-DE interface
+
+**Example:**
+In this example we got a game we want to add: `OutWipe 4820`
+
+### Step 1: Install the Game
+Open the Vita3K emulator via Configurator and press `File` and either `Install .pkg` or `Install .zip, .vpk` depending on what game file you have.
+
+In our example `OutWipe 4820` is a `.pkg` file so we chose the `Install .pkg` option and navigate to the file to install it.
+
+#### Step 1b: Add Licences (not always needed)
+During installation the Vita3K could call for a Licence File or Key.
+Either add the `.bin` or `.rif` files or input the `zRif` key in the prompt.
+Check more above in the **Licence Files and Keys** section.
+
+#### Step 1c: Install any DLCs or patches
+Install the patches and DLC the same way as the game by repeating Step 1 to 1b for the filetype the patch/DLC is in `pkg`, `zip`, `vpk`.
+
+### Step 2: Check the Title ID of the game
+
+
+
+In the Vita3K interface the third colum you can see the Title ID of the game you just installed.
+You can also check [Vita3K Game Compatibility and ID List](https://vita3k.org/compatibility.html?lang=en).
+
+In our example we find out that the Title ID of `OutWipe 4820` is `PCSF00007`
+
+### Step 3: Create the .psvita file
+- The `.psvita` file starts as a empty textfile that needs to be created in roms folder `retrodeck/roms/psvita/`
+- Name the file `.psvita`
+- In our example the file will be called `OutWipe 4820.psvita`
+
+The end result should look like:
+`retrodeck/roms/psvita/OutWipe 4820.psvita`
+
+### Step 4: Open the pstvita file and add the Title ID
+Open up the empty `OutWipe 4820.psvita` file and just type in the `` in the first row of the file and save, in this example you enter `PCSF00007`.
+Make sure you don't add any spaces or linebreaks and the file should just contain the word `PCSF00007`.
+
+### Step 5: The game should now run
+The game should now be added to the ES-DE interface from the `retrodeck/roms/psvita/OutWipe 4820.psvita` file you just created and can be played after you reload RetroDECK from the Configurator or re-launch the application.
diff --git a/wiki-rtd/docs/wiki_emulator_guides/xemu-guide.md b/wiki-rtd/docs/wiki_emulator_guides/xemu-guide.md
new file mode 100644
index 00000000..73be789f
--- /dev/null
+++ b/wiki-rtd/docs/wiki_emulator_guides/xemu-guide.md
@@ -0,0 +1,8 @@
+# Guide: XEMU
+
+
+
+WIP
+
+## Where to put the games
+Xbox games should be put under the `retrodeck/roms/xbox/` directory.
diff --git a/wiki-rtd/Switch-Yuzu.md b/wiki-rtd/docs/wiki_emulator_guides/yuzu-guide.md
similarity index 62%
rename from wiki-rtd/Switch-Yuzu.md
rename to wiki-rtd/docs/wiki_emulator_guides/yuzu-guide.md
index f195a229..1d673e97 100644
--- a/wiki-rtd/Switch-Yuzu.md
+++ b/wiki-rtd/docs/wiki_emulator_guides/yuzu-guide.md
@@ -1,14 +1,31 @@
-# Yuzu
+# Guide: Yuzu - Switch
+
+
+
+---
+
+### Yuzu Links:
+[Yuzu Quickstart Guide](https://yuzu-emu.org/help/quickstart/)
+
+[Yuzu Wiki](https://yuzu-emu.org/wiki/)
+
+[Yuzu Github](https://github.com/yuzu-emu/yuzu)
+
+[Yuzu Webpage](https://yuzu-emu.org/)
+
+---
## Where to put the games?
Switch games should be put into the `retrodeck/roms/switch/` directory.
-The games can come in many different formats: `XCI` `NSP` `NCA` `NSO` `NRO`.
+The games can come in many different formats: `XCI` `NSP` `NCA` `NSO` `NRO`.
+## Does Yuzu require BIOS or Firmware?
+Yes, `prod.keys` `title.keys` and `nca` files.
-## Where do I put the BIOS files?
-Yuzu needs the key files `prod.keys`, `title.keys` and the firmware files in the following directories:
-
-**Yuzu keys:** `~/retrodeck/bios/switch/keys`
+### Where do I put the BIOS and firmware files?
+Yuzu needs the key files `prod.keys`, `title.keys` and the firmware files in the following directories:
+
+**Yuzu keys:** `~/retrodeck/bios/switch/keys`
**Yuzu firmware:** `~/retrodeck/bios/switch/registered`
@@ -26,37 +43,36 @@ The directory tree should look like this example:
└── fd0d23003ea5602c24ac4e41101c16fd.nca
```
-You can find a complete guide in the [Yuzu official wiki](https://yuzu-emu.org/help/quickstart/#downloading-and-installing-yuzu) on how to extract the BIOS from your Switch.
+You can find a complete guide in the Yuzu Wiki (link above) on how to extract the BIOS from your Switch.
-## How do I install DLC and Updates?
+## How do I install DLC and Updates?
**Requirements:** Patch or DLC files
-
+
**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
1. Extract any patch or dlc files from compressed `.zip` or any other format to the true files.
-2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
-3. Press `File` - `Install Files to NAND`
+2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
+3. Press `File` - `Install Files to NAND`
4. Find a DLC or Patch file from the file browser and press `Open`
-5. This will install the DLC or Patch file into the games NAND folder inside of Yuzu.
-6. Repeat step 2 to 3 for every file you need to install.
+5. This will install the DLC or Patch file into the games NAND folder inside of Yuzu.
+6. Repeat step 2 to 3 for every file you need to install.
7. Quit Yuzu
8. Start up RetroDECK and select the game you want to play.
-## How do I add shader caches?
+## How do I add shader caches?
**Requirements:** Shader cache files
-
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
1. Extract any shader cache files from compressed `.zip` or any other format to folders.
-2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
+2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
3. Right click on the game you want to add mods into.
4. Click on `Open Transferable Pipeline Cache`.
-5. Paste the files inside that directory.
+5. Paste the files inside that directory.
6. Start up RetroDECK and select the game.
## How do I add mods?
-Check the Mods: Yuzu section on this wiki
-[[Yuzu: Mods]]
-
\ No newline at end of file
+Check: `Mod Guides ⚙️` - `Mods: Yuzu - Switch`
+
diff --git a/wiki-rtd/docs/wiki_general/beta-period.md b/wiki-rtd/docs/wiki_general/beta-period.md
new file mode 100644
index 00000000..1cf86906
--- /dev/null
+++ b/wiki-rtd/docs/wiki_general/beta-period.md
@@ -0,0 +1,34 @@
+# RetroDECK is currently in in BETA
+
+**What is: RetroDECK is in BETA?**
+
+It means that the software is still under heavy development and big updates can be made that changes or adds certain features.
+
+RetroDECK is missing some minor and major:
+
+- Emulators
+- Systems
+- Features
+- Configurations
+
+That we want to add before we consider it a full release.
+
+RetroDECK is perfectly fine for daily use even during the beta period and the core application should seen as stable. The main reason we consider it a BETA is the all the things we want to improve and add before a full 1.0 release.
+
+There are also experimental features that could be unstable but those are exclusive to the cooker builds or have to be enabled by CLI.
+
+RetroDECK during the BETA period supports the Steam Deck and the Linux Desktop. Our goal is to have the full release of RetroDECK to be as easy to use on the Linux Desktop as the Steam Deck is currently.
+
+RetroDECK will still keep developing post the full release.
+
+### So what's the difference between this beta and the cooker version?
+Since the beta is the actual mainline that is in fact the stable version, the cooker version is the unstable nightly version that is always under heavy development and the main development branch.
+
+## Wiki Links
+
+- A list of issues and missing features can be found over at: [Known Issues](../wiki_bugs/known-issues.md)
+
+- To see what we are developing on currently check out: [What are you working on?](../wiki_development/what-are-you-working.on.md)
+
+
+
diff --git a/wiki-rtd/docs/wiki_general/configurator.md b/wiki-rtd/docs/wiki_general/configurator.md
new file mode 100644
index 00000000..844ad92f
--- /dev/null
+++ b/wiki-rtd/docs/wiki_general/configurator.md
@@ -0,0 +1,197 @@
+# The RetroDECK Configurator
+
+**Please note that we are going to rebuild the configurator into a controller friendly GODOT application and that the current version is not the final design.**
+
+
+
+The `RetroDECK Configurator` is a unique multi-use utility that exists within RetroDECK to manage many aspect of the application and exposes functions from the `RetroDECK Framework` to the user.
+
+The `RetroDECK Configurator` can be opened from:
+
+- The main menu inside the ES-DE interface and choose `RetroDECK Configurator`.
+
+
+
+* From the `RetroDECK Configurator.desktop` desktop shortcut, available in your application menu.
+
+
+
+* From CLI by calling `flatpak run net.retrodeck.retrodeck --configurator`
+
+What follows are the commands you can use inside the Configurator (more commands will be added during development).
+
+
+
+## Presets & Settings
+In this menu you can set various presets.
+
+### Global: Presets & Settings
+In this menu you will find presets and settings that span over multiple emulators.
+
+
+
+#### RetroAchivements: Login
+Login to RetroAchievements in all supported emulators and cores.
+
+
+
+#### RetroAchivements: Logut
+Logut from RetroAchievements in all supported emulators and cores.
+
+
+
+#### RetroAchivements: Hardcore Mode
+Enables `Hardcore Mode` from RetroAchievements in all supported emulators and cores.
+
+
+
+#### Widescreen: Enable/Disable
+Enables or disable Widescreen in all supported emulators and cores.
+
+
+
+#### Swap A/B and X/Y: Enable/Disable
+Swaps `A/B` `X/Y` in all supported emulators and cores.
+
+
+
+#### Ask to Exit prompt: Enable/Disable
+Enables or disables ask to exit prompts in all supported emulators and cores.
+Note: If you disable this, the emulators will directly exit.
+
+
+
+
+### RetroArch: Presets & Settings
+In this menu you will find presets and settings for RetroArch.
+
+
+
+#### Borders: Enable/Disable
+Enable / Disable borders across the RetroArch cores you choose.
+
+
+
+#### Rewind: Enable/Disable
+Enable / Disable rewind across all of RetroArch (this may impact performance on some more demanding systems).
+
+
+
+### Wii & Gamecube: Presets & Settings
+In this menu you will find presets and settings for Dolphin and Primehack.
+
+
+
+#### Dolphin Textures: Universal Dynamic Input
+Enable / Disable Venomalias's Universal Dynamic Input Texture for Dolphin.
+
+
+
+#### Primehack Textures: Universal Dynamic Input
+Enable / Disable Venomalias's Universal Dynamic Input Texture for Primehack.
+
+
+
+## Open Emulator
+Here you launch and configure each emulators settings, the option you choose will open that emulators GUI. For documentation on how to change the settings of each emulators settings please check the website of each emulator.
+
+(Please note that most of the emulator interfaces where not designed with controller input in mind for handling the applications GUI, just the games. So you might need to use other inputs like the Steam Decks touchscreen or a mouse and key board to navigate properly).
+
+From this entry you can run the emualtor itself such as:
+
+- RetroArch
+- Citra
+- Dolphin
+- Duckstation
+- MelonDS
+- PCSX2
+- PPSSPP
+- RPCS3
+- XEMU
+- Yuzu
+
+
+
+## RetroDECK: Tools
+
+### Tool: Move files
+This option lets you choose the installation path of the RetroDECK folder that handles ROMS,Saves, BIOS etc... to a new location.
+You get the following three options.
+
+`Internal Storage` - Moves the folder to the internal storage.
+`SD CARD` - Moves the folder to the SD CARD
+`Custom Location` - Choose where you want the RetroDECK folder to be.
+
+
+
+### Tool: Compress games
+This option enables you to compress disc based game image files `.gdi` `.iso` `.bin` `.cue` to the less space demanding `.chd` format.
+You can choose either a single game or many.
+
+
+
+### Install: RetroDECK SD Controller Profile
+This option installs the Steam Deck controller profile to RetroDECK it also resets all emulators configurations to input the correct bindings.
+
+
+
+### Install: PS3 Firmware
+This option downloads and installs the latest PS3 firmware. A the end of the download, RPCS3 will open requesting the user to install it. Just press OK.
+
+
+
+### RetroDECK: Change update settings (cooker only)
+This option lets you turn on or off automatic updates on launch.
+
+
+
+## RetroDECK: Troubleshooting
+Various troubleshooting options.
+
+
+### Backup: RetroDECK Userdata
+Creates backups of the user data folders
+
+
+
+### Check & Verify: Multi-file structure
+Verifies to the structure of multi disc/file games that uses `.m3u` files.
+
+
+
+### Check & Verify: BIOS
+Shows a detailed BIOS list of missing and current BIOS.
+
+
+
+### RetroDECK: Reset
+The reset menu resets various features
+
+
+
+#### Reset Specific Emulator
+Opens up a menu where you can reset a specific emulator
+
+
+
+#### Reset All Emulators
+Resets all the emulators at once
+
+
+
+#### Reset RetroDECK
+Resets the entirety of RetroDECK.
+`⚠️ WARNING! BACK UP YOUR DATA BEFORE RUNNING THIS! ⚠️`
+
+
+
+## RetroDECK: About
+This menu contains information about RetroDECK
+
+### Version history
+Displays the changelogs
+
+
+
+### Credits
+Displays the credits
diff --git a/wiki-rtd/docs/wiki_general/supported-devices.md b/wiki-rtd/docs/wiki_general/supported-devices.md
new file mode 100644
index 00000000..f8509f76
--- /dev/null
+++ b/wiki-rtd/docs/wiki_general/supported-devices.md
@@ -0,0 +1,41 @@
+# What devices/systems does RetroDECK currently support?
+
+RetroDECK currently supports two systems:
+
+- Steam Deck
+- Linux Desktop
+
+## Steam Deck LCD/OLED
+
+Supported from the beginning. RetroDECK is tailored to the Steam Deck.
+
+### Other SteamOS devices
+
+SteamOS the operative system will always be supported but as of today there are no other officialy released devices with SteamOS other the Valve's Steam Deck lineup.
+
+## Linux Desktop
+
+It is working, but the user experience might not be that great it as we want it to be just yet.
+You will also need to manually configure the input to match your desktop and might need to tweak more settings. If you want to try it make sure that your distribution has flatpak support (else you will need to install it).
+
+## Q&A Supported Systems
+
+### Will you support Windows or Windows based devices like the ROG Ally?
+
+No, RetroDECK doesn't support Windows currently and there are no plans to do so.
+As an alternative you could try [RetroBat](https://www.retrobat.org/) that offers similar functionality in a Windows environment.
+How ever if you install a Linux distribution on your device instead you can try out RetroDECK.
+
+### Will you support ARM devices like iOS or MacOS?
+ARM devices are not supported currently. ES-DE does support the ARM emulators but it is a very different landscape.
+It would be a major undertaking but maybe one day in the far off future it could be possible. But it would need to be a different experience as the emulators, other underlying systems would not be the same and would need to be rewritten.
+
+### Will you support Android?
+No, we believe that is not really possible to bundle and preconfigure emulators on Android unfortunately as of now.
+
+### Will you support other distribution methods usch as Snap or AppImage?
+It's not in our roadmap yet as now the entire buildsystem is based on the flatpak-build that builds the software via the flatpak manifest.
+In the past we evaluated to migrate to **Buildstream** (or similar solutions) and build on to multiple output formats.
+
+But the team is not large enough to migrate and maintain other distribution methods, so we prefer to focus our effort on Flatpak only.
+If someone with the knowlage and passion wishes to help us with migrating to a solution and help us maintain it, we are open for discussion it at least.
diff --git a/wiki-rtd/docs/wiki_general/what-is-included.md b/wiki-rtd/docs/wiki_general/what-is-included.md
new file mode 100644
index 00000000..9d71269d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_general/what-is-included.md
@@ -0,0 +1,74 @@
+# RetroDECK: What's included?
+
+What follows is a list of features currently included in RetroDECK
+
+## Features
+
+### The RetroDECK Configurator
+Is a powerful Utility that can be use to change/modify and manipulate various aspects of RetroDECK using the `RetroDECK Framework` more information in the
+`RetroDECK Configurator 🛠️` section.
+
+## Frontend
+
+### Emulationstation Desktop Edition (ES-DE) - RetroDECK Edition
+
+ES-DE is the base frontend for RetroDECK.
+RetroDECK comes with specific tweaks to the ES-DE standard setup to enable RetroDECK unique functions like the `RetroDECK Framework` and `RetroDECK Configurator`.
+
+These tweaks are possible thanks to a collaborations with the ES-DE project and the RetroDECK project.
+
+## Emulators
+
+### RetroArch
+RetroDECK ships will all cores under the stable branch of RetroArch.
+If there is no stable version of a core the nightly version will be used instead.
+
+### Standalone Emulators
+The following standalone emulators are currently included:
+
+- Cemu (WiiU)
+- Citra (3DS)
+- Dolphin (GameCube/Wii)
+- Duckstation (PSX)
+- MelondDS (DS)
+- PCSX2 (PS2)
+- PPSSPP (PSP)
+- Primehack (Metroid Prime - Dolphin Fork)
+- RPCS3 (PS3)
+- Xemu (XBOX)
+- Yuzu (Switch)
+
+## RetroDECK: Included ES-DE Themes
+
+RetroDECK includes the following themes.
+
+**Note:**
+More themes can be easily be added, check: `EmulationStation-DE Guide 📘` - `ES-DE Themes` for details.
+
+### Art Book Next
+
+| System View | Gamelist View |
+|----|----|
+| ![rd-theme-ArtBookNext-SystemView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/art-book-next-es-de/art-book-next-es-de_01.jpg) | ![rd-theme-ArtBookNext-GamelistView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/art-book-next-es-de/art-book-next-es-de_04.jpg) |
+
+### Slate
+
+| System View | Gamelist View |
+|----|----|
+| ![rd-theme-ArtBookNext-SystemView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/slate-es-de/slate-es-de_01.jpg) | ![rd-theme-ArtBookNext-GamelistView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/slate-es-de/slate-es-de_04.jpg) |
+
+### Modern
+
+| System View | Gamelist View |
+|----|----|
+| ![rd-theme-ArtBookNext-SystemView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/modern-es-de/modern-es-de_01.jpg) | ![rd-theme-ArtBookNext-GamelistView](https://gitlab.com/es-de/themes/themes-list/-/raw/master/screenshots/modern-es-de/modern-es-de_02.jpg) |
+
+## Missing Features
+We plan to add more emulators, systems and functions over course of the development cycle.
+The goal is to support almost all of the systems ES-DE supports and ship the best emulator or program for that system.
+
+We don't have any plans to ship all emulators or programs in existence for each system but virtually only the **"best once"** per-system.
+In some cases we might ship more then one Emulator if the feature set is vastly diffrent or the user demand is high.
+
+For the latest things The RetroDECK Team is working on check:
+`Development 🖥️` - `What are you working on?` and `Version History (Patchnotes)`
diff --git a/wiki-rtd/docs/wiki_general/what-is-retrodeck.md b/wiki-rtd/docs/wiki_general/what-is-retrodeck.md
new file mode 100644
index 00000000..e80d631d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_general/what-is-retrodeck.md
@@ -0,0 +1,31 @@
+# What is RetroDECK?
+
+
+
+Instead of having several different software on your system for a variety of emulators and frontends you only need one: RetroDECK.
+
+RetroDECK is a [EmulationStation Desktop Edition](https://es-de.org) (ES-DE) powered [Flatpak application](https://flathub.org/apps/net.retrodeck.retrodeck) that thanks to its `RetroDECK Framework` it builds-in and manage a variety of emulators and other software that allows you to play your favorite retro (and even not-so-retro) games in one complete package.
+
+### So what does that mean?
+It means that RetroDECK provides all the emulators, systems and a frontend. RetroDECK configures them for you and put them into one application you can download from Flathub.
+
+By being one application RetroDECK can put all important files in one location for all the emulators, instead of having them spread out over your entire system and even add features on top to orchestrate them seamlessly.
+
+## The RetroDECK Framework
+As previously mentioned, RetroDECK also adds the `RetroDECK Framework` on top of the emulators and ES-DE interface that allows deeper integrations between emulators and easier exposure to a variety of features that you otherwise need to set per emulator basis to create a uniformity between them.
+
+The `RetroDECK Configurator` is the `Utility` that exposes some parts of the `RetroDECK Framework` to the RetroDECK users.
+
+**What can the RetroDECK Framework and by extent the RetroDECK Configurator do?**
+
+It can help with:
+
+- Compressing games
+- Easier `Texture Pack` and `Mod` management
+- File management
+- Tools for troubleshooting (BIOS Checker, Multi-File Structure Checker, Partial or full reset of functions)
+- Auto installing some free BIOSes
+- Install prebuilt Steam Input profiles for devices like the Steam Deck and external controllers
+- Easier management of `mods`, `roms`, `texture_packs`, `scraped media`, `screenshots`, `saves / states` `gamelists` and more
+- Give access to global presets that can be acitivated to configure things over many emulators in one go like: `RetroAchievements`
+ `Borders` `Widescreen Mode` `Swaping A/B X/Y for Nintendo Games`
diff --git a/wiki-rtd/docs/wiki_howto_faq/add-to-steam.md b/wiki-rtd/docs/wiki_howto_faq/add-to-steam.md
new file mode 100644
index 00000000..e34064d6
--- /dev/null
+++ b/wiki-rtd/docs/wiki_howto_faq/add-to-steam.md
@@ -0,0 +1,77 @@
+# Adding RetroDECK to Steam
+What follows are two ways to add RetroDECK to Steam and what settings you need to enable after you added it. If you have the Flatpak Version of Steam installed you need to do some extra steps for everything to work.
+
+## Add with BoilR (Recommended)
+
+If you don't have [BoilR](https://flathub.org/apps/io.github.philipk.boilr) you can just install it from Flathub.
+BoilR will add RetroDECK to Steam (flatpak or standard versions), it will also add the Steam Grid art.
+
+First make sure that you have fully closed Steam then do the following:
+
+1. Open BoilR
+2. Make sure RetroDECK is marked in the `Import Games` Section
+3. Go to `Settings`
+4. Check `Download Images`
+5. Put in your `Authentication Key` from `SteamGridDB` (if you don't have one press the link in BoilR and get one).
+6. Check if you want animated images or other types of images.
+7. Go back to `Import Games`.
+8. Press the `Import Button`.
+9. When the import is done you can close BoilR and Open Steam.
+10. The RetroDECK entry should now be there
+
+## Add manually
+
+1. Open Steam
+2. Inside Steam go to the tab Games press `Add non Steam game to My library` and you should be able to see all installed applications select `RetroDECK` to add it into your library.
+3. Go to SteamGridDB and manually download all the art.
+4. Follow the guides on SteamGridDB on how to set up each art piece correctly.
+
+## Steam - Flatpak version extras
+
+If you have the [Steam Flatpak](https://flathub.org/apps/com.valvesoftware.Steam) version installed some extra steps apply.
+
+### Prerequisites
+
+To make a flatpak launch other flatpaks it needs a special permission called `org.freedesktop.Flatpak`.
+Take note that this opens up the Flatpak more then normal, as flatpaks are not allowed to run many system commands from the sandbox. You can add the permission from the software Flatseal or directly from the terminal.
+
+**With Flatseal (Recommended):**
+
+If you don't have [Flatseal](https://flathub.org/apps/com.github.tchx84.Flatseal) you can just install it from Flathub
+
+1. Open Flatseal
+2. Click on Steam
+3. Scroll down to the section called `Session Bus`
+4. Press the `+` sign
+5. Paste in `org.freedesktop.Flatpak`
+6. Launch Steam
+
+**From Terminal:**
+
+Copy the following into the terminal:
+
+`flatpak --user override --talk-name=org.freedesktop.Flatpak com.valvesoftware.Steam`
+
+### Add RetroDECK to Steam
+
+Add RetroDECK to Steam with BoilR or manually by following the guides above.
+
+**Special notes on the manual install:**
+
+Steam won't find the application directlyy and you will need to manually browse to the desktop file to add it in:
+
+`/var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/export/share/applications/`
+
+### Configuring RetroDECK in Steam Flatpak
+
+After RetroDECK is added to Steam, right click on the RetroDECK entry and change the shortcut values to:
+
+**Target:**
+
+`/usr/bin/flatpak-spawn`
+
+**Launch options:**
+
+`--host flatpak run --branch=stable --arch=x86_64 net.retrodeck.retrodeck`
+
+This should now be enough for you to launch RetroDECK.
diff --git a/wiki-rtd/Emulators-BIOS-and-Firmware.md b/wiki-rtd/docs/wiki_howto_faq/bios-firmware.md
similarity index 68%
rename from wiki-rtd/Emulators-BIOS-and-Firmware.md
rename to wiki-rtd/docs/wiki_howto_faq/bios-firmware.md
index a219ffe4..09dfde97 100644
--- a/wiki-rtd/Emulators-BIOS-and-Firmware.md
+++ b/wiki-rtd/docs/wiki_howto_faq/bios-firmware.md
@@ -1,51 +1,27 @@
+# How to: Manage BIOS and Firmware
A BIOS or firmware is like the brain of a computer or electronic device. It helps the device start up and makes sure all its parts work together smoothly. In emulation, having the correct BIOS/firmware is important because it allows the software to pretend to be the real device and work properly.
That's why some emulators require BIOS and Firmware files to work correctly or at all.
-Generally the bios files should be put in `~/retrodeck/bios`.
+Generally the bios files should be put in `~/retrodeck/bios` but there could be exceptions to this.
## RetroArch (Libretro)
Some cores may need some BIOS files to work or run correctly.
-Here are the most common systems, if you find more we can add them to this wiki.
-However the extended information can be found on the [official libretro documentation](https://docs.libretro.com/guides/bios/), just search for your core.
-More info by clicking on the system name down here.
-
-[Sony Playstation](https://docs.libretro.com/library/beetle_psx/#bios)
-```
-scph5500.bin PS1 JP BIOS - Required for JP games 8dd7d5296a650fac7319bce665a6a53c
-scph5501.bin PS1 US BIOS - Required for US games 490f666e1afb15b7362b406ed1cea246
-scph5502.bin PS1 EU BIOS - Required for EU games 32736f17079d0b2b7024407c39bd3050
-```
-
-[SegaCD](https://docs.libretro.com/library/genesis_plus_gx/#bios)
-```
-bios_CD_E.bin | MegaCD EU BIOS - Required for MegaCD EU games | e66fa1dc5820d254611fdcdba0662372
-bios_CD_U.bin | SegaCD US BIOS - Required for SegaCD US games | 854b9150240a198070150e4566ae1290
-bios_CD_J.bin | MegaCD JP BIOS - Required for MegaCD JP games | 278a9397d192149e84e820ac621a8edd
-```
-
-[Sega Saturn](https://docs.libretro.com/library/beetle_saturn/#bios)
-```
-sega_101.bin | Saturn JP BIOS - Required for JP games | 85ec9ca47d8f6807718151cbcca8b964
-mpr-17933.bin | Saturn US.mdEU BIOS - Required for US/EU games | 3240872c70984b6cbfda1586cab68dbe
-mpr-18811-mx.ic1 | The King of Fighters '95 ROM Cartridge - Required for this game | 255113ba943c92a54facd25a10fd780c
-mpr-19367-mx.ic1 | Ultraman: Hikari no Kyojin Densetsu ROM Cartridge - Required for this game | 1cd19988d1d72a3e7caa0b73234c96b4
-
-```
-*only required for a specific game
+[Official Libretro BIOS Guide](https://docs.libretro.com/guides/bios/)
+## PPSSPP
[PPSSPP](https://docs.libretro.com/library/ppsspp/)
Starting everything should be included.
But if you want the original PSP fonts you can place them in `system/PPSSPP/flash0/font`
-
+## MSX / SVI / ColecoVision / SG-1000
[MSX / SVI / ColecoVision / SG-1000](https://docs.libretro.com/library/bluemsx/#bios)
Content of [blueMSXv282full.zip](http://bluemsx.msxblue.com/download.html).
Not the zip itself, its contents must be extracted in `~/retrodeck/bios` folder, more info [here](https://docs.libretro.com/library/bluemsx/#bios).
Starting from v0.5.0b this is automatically provided.
## Yuzu
-Yuzu needs the key files `prod.keys`, `title.keys` and the firmware files in the following directories:
-
-**Yuzu keys:** `~/retrodeck/bios/switch/keys`
+Yuzu needs the key files `prod.keys`, `title.keys` and the firmware files in the following directories:
+
+**Yuzu keys:** `~/retrodeck/bios/switch/keys`
**Yuzu firmware:** `~/retrodeck/bios/switch/registered`
@@ -91,7 +67,7 @@ So don't forget to rename them for the RetroDECK standards.
Pico-8 it's not freeware hence it cannot be included with RetroDECK, however it's supported by using these steps:
1. Download PICO-8 for `Linux 64-bit` from the [official website](https://www.lexaloffle.com/games.php?page=updates) or where you bought it.
-2. Extract the zipfile somewhere on your desktop
+2. Extract the zipfile somewhere on your desktop
3. Copy the content of the extracted pico-8 folder into `~/retrodeck/bios/pico-8/`
## MelonDS (Standalone), (NDS)
@@ -108,11 +84,11 @@ Please be advised that this operation may prevent the games from running correct
There a multitude of PS2 bios for a complete list with the hashes check
[Gametechwiki](https://emulation.gametechwiki.com/index.php/File_hashes#Known_BIOS_Hashes)
-
-The PS2 bios could be named in the following ways
+
+The PS2 bios could be named in the following ways
+
+By bios version: `ps2-0200a-20040614.bin`
-By bios version: `ps2-0200a-20040614.bin`
-
By system name:`SCPH-70012.bin`
Put the bios inside the bios folder: `~/retrodeck/bios/SCPH-70012.bin`
@@ -120,8 +96,8 @@ Put the bios inside the bios folder: `~/retrodeck/bios/SCPH-70012.bin`
Here is a list of common used bios with `bios versions/system names/hashes`.
```
-ps2-0200a-20040614 - SCPH-70001/SCPH-70011/SCPH-70012 - d333558cc14561c1fdc334c75d5f37b7 -PS2 US BIOS
-ps2-0200e-20040614 - SCPH-70002/SCPH-70003/SCPH-70004/SCPH-70008 - dc752f160044f2ed5fc1f4964db2a095 - PS2 EU BIOS
+ps2-0200a-20040614 - SCPH-70001/SCPH-70011/SCPH-70012 - d333558cc14561c1fdc334c75d5f37b7 -PS2 US BIOS
+ps2-0200e-20040614 - SCPH-70002/SCPH-70003/SCPH-70004/SCPH-70008 - dc752f160044f2ed5fc1f4964db2a095 - PS2 EU BIOS
ps2-0200j-20040614 - SCPH-70000 - 0eee5d1c779aa50e94edd168b4ebf42e - PS2 JP BIOS
```
@@ -129,4 +105,10 @@ ps2-0200j-20040614 - SCPH-70000 - 0eee5d1c779aa50e94edd168b4ebf42e - PS2 JP BIOS
- Download the [latest PlayStation 3 firmware](https://www.playstation.com/en-us/support/hardware/ps3/system-software/).
- `Tools` -> `RetroDECK Configurator` -> `Change settings` -> `RPCS3` -> `File` -> `Install Firmware`.
-For more information on how to load the games check the [official quickstart guide](https://rpcs3.net/quickstart).
\ No newline at end of file
+For more information on how to load the games check the [official quickstart guide](https://rpcs3.net/quickstart).
+
+## NeoGeo
+
+- `neogeo.zip`
+
+Should go into the `~/retrodeck/roms/neogeo/` folder and the `~/retrodeck/bios` folder. Depending on what emulator you use, the emulator looks for the BIOS in different directories. So the safest way it to just copy the BIOS and put it into both places.
diff --git a/wiki-rtd/docs/wiki_howto_faq/enable-controllers-steam.md b/wiki-rtd/docs/wiki_howto_faq/enable-controllers-steam.md
new file mode 100644
index 00000000..19f716bc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_howto_faq/enable-controllers-steam.md
@@ -0,0 +1,44 @@
+# Enable Controllers in Steam:
+
+**Not needed for SteamOS and Steam Deck**
+For the Steam Deck or SteamOS based devices this is not needed as they are enabled by default.
+
+## Prerequisites: steam-devices
+
+Make sure you have installed the `steam-devices` package.
+
+Normally `steam-devices` is a part of the Steam installation for many distrubtions, but it could be diffrent depending on what you are running.
+
+Steam usually complains with warnings if `steam-devices` is missing.
+
+If `steam-devices` is not installed, please check your distrubtion on how to do so.
+
+## Enable Controller Inputs
+
+Open up Steam
+
+1. In Steam press the `Steam` top menu
+2. Go to `Settings` this opens up S
+4. Press `Controller`
+5. Press and enable all Steam Inputs for:
+* Xbox Controllers.
+* PlayStation Controllers.
+* Switch Pro Controllers.
+* Generic Controllers.
+6. Close the `Settings`
+
+## Change controller templates in Steam
+
+### Prerequisites
+
+* You need to have enabled controller input in Steam (above).
+* You need to have added RetroDECK to Steam, more info here: [Add RetroDECK to Steam](../wiki_howto_faq/add-to-steam.md)
+* You need to have the controller or controllers plugged in / connected for the `Controller Icon` to show up next to the Cog icon in each game and
+
+### Controller Settings
+
+1. Click on RetroDECK in Steam
+2. Make sure you have a controller plugged in / connected
+3. Click on the new `Controller Icon 🎮` next to the ⚙️ icon on the right side of the Steam window.
+4. By pressing on it you will open the `Steam Input` window wher you can customize the controllers inputs / download community templates / enable the RetroDECK templates for your controller.
+5. Read more information here: [RetroDECK with Steam Input](../wiki_controllers/about-steam-input.md) and the `Controllers and Input 🎮` section on this wiki.
diff --git a/wiki-rtd/docs/wiki_howto_faq/faq.md b/wiki-rtd/docs/wiki_howto_faq/faq.md
new file mode 100644
index 00000000..82509695
--- /dev/null
+++ b/wiki-rtd/docs/wiki_howto_faq/faq.md
@@ -0,0 +1,524 @@
+# FAQs: Frequently asked questions
+
+What follows is questions and answers to a variety of topics.
+
+
+## RetroDECK: General Questions
+
+
+
+### What does the "b" stand for in the versioning number?
+It stands for Beta.
+
+
+
+### What is RetroDECK cooker?
+ Cooker is a bleeding edge snapshot of the current commits, the action of uploading code to GitHub is called commit.
+ As you can understand, the code may not be always reviewed and so the cooker it's unstable by its nature, it's just suggested to testers or developer to try bleeding edge function or to contribute.
+
+ More info on the pinned post in #💙-i-want-to-help on our [Discord Server](discord.gg/Dz3szYsP8g).
+ We don't support the cooker on user side.
+
+#### Why the name cooker? 🍲
+ That's what cooking in the pot at this moment and not yet ready to be served (released). This name was also used by Linux Mandrake and Mandriva for the bleeding edge channel.
+
+
+
+### What emulators and software is included in RetroDECK?
+Check: [RetroDECK: What's included?](../wiki_general/what-is-included.md)
+
+
+
+### Does RetroDECK include any games?
+No games are included in RetroDECK at this momment.
+
+
+
+### Will you include Open Source games in the future?
+We are looking into a ports downloader for a future update.
+
+
+
+### Does RetroDECK include any Firmware or BIOS?
+RetroDECK only includes those BIOS and Firmware that are Open Source. All others can never be done for legal reasons.
+
+#### Can you at least point me towards where I find none Open Source: Games, Firmeware or BIOS?
+For purchased titles we recommend that you use your own game backups and look into how to extract the Firmware or BIOS from your own consoles.
+
+
+
+### When does the next version of RetroDECK come out?
+When it's ready.
+
+#### When does the version after the upcoming version come out?
+After the upcoming version.
+
+#### When does the version 1.0 of RetroDECK come out?
+In the future.
+
+
+
+
+
+## RetroDECK: Usage Questions
+
+### Do I have to partition or format my disk/sdcard to install RetroDECK?
+ No, partitioning or formatting is not needed at all. RetroDECK (differently from AmberELEC, Batocera and others) comes as a flatpak. Just install it as any other application and launch it from your desktop and/or Steam library.
+
+
+
+### Where is RetroDECK installed?
+
+There are two primary folders:
+
+`~/retrodeck`
+
+- The location of this folder is where you set it during installation.
+- This cointains all of the userdata that the users put into RetroDECK like: ROMs, Mods, Texturepacks, Downloaded Content, Themes etc.
+- The folder is not deleted during a uninstallation of RetroDECK and must be manually deleted, as all the users valuble files are there.
+
+`~/.var/app/net.retrodeck.retrodeck/`
+
+- This is the main flatpak folder, under the hidden `./var/app/` folder you need to show hidden folders and files to see it.
+- This cointains all of the emulators, emulationstation and other settings that make RetroDECK work.
+- During uninstallation this folder is removed.
+
+### Can I move the ROMs folder to another place?
+ Yes, you can do so inside the configurator and the `Move RetroDECK` option.
+
+
+
+### Is there a way to reset RetroDECK?
+Yes, you can reset various parts of the software using the RetroDECK Configurator's reset functions.
+Read more on: [RetroDECK Configurator 🛠️](../wiki_general/configurator.md)
+
+Or if you want to reset from CLI you can read up on:
+`Development 🖥️` - [CLI Guide](../wiki_development/cli-guide.md)
+
+
+
+
+### How do I uninstall RetroDECK?
+ **On the Steam Deck:**
+
+Put the Steam Deck into Desktop Mode `Steam button` `Power` `Switch to Desktop`
+
+* Go into Discover
+* Press the `Installed` tab and find RetroDECK
+* Press the `Uninstall` button
+* Manually backup then remove the `~\retrodeck` folder. Warning! Make a backup your data roms/bios/saves etc if you want to save them else they will be gone.
+
+
+
+### Does uninstalling RetroDECK remove my roms, bios and saves?
+No, as long as you don't manually don't delete the `~\retrodeck` folder and it's content your data is safe. You could uninstall RetroDECK and install it again and keep going.
+
+
+
+### How can I move RetroDECK do a different device like Steam Deck OLED or a new Linux PC?
+ Yes, check over at [How to: Move RetroDECK to a new device](../wiki_howto_faq/retrodeck-move.md)
+
+
+
+### Where can I find the logfiles?
+ In `~/retrodeck/logs/retrodeck.log`
+
+
+
+### Can I add a single game to my Steam Library?
+We are working on this feature. Meanwhile you can achieve this manually.
+Example of a launch script to launch to launch a Wii game called Baloon World:
+
+ ```
+ flatpak run --command=dolphin-emu-wrapper net.retrodeck.retrodeck -e "/run/media/mmcblk0p1/retrodeck/roms/wii/Baloon World.rvz" -b
+ ```
+
+
+
+### After installing RetroDECK manually, Discover is not opening or giving me some errors?
+This bug is appearing only when installing RetroDECK manually and not from Discover. The discover release is suggested for all the users.
+However you can run this to fix it: `flatpak remote-delete retrodeck-origin`
+
+
+
+
+
+## Feature Requests & Bug Reports
+
+### How to report bugs?
+
+Check [Reporting bugs and issues](../wiki_bugs/report-bugs.md)
+
+
+### Will you implement X/Y/Z emulator?
+Our goal is to implement and configure a selection of the best emulators for each system supported by ES-DE. If your favorite system is not integrated you can request its integration by opening an issue on this github page.
+
+
+
+### Will you implement none emulator software inside of RetroDECK like Batocera?
+We do have plans for a ports downloader / manager in the future.
+
+
+
+### I have a good idea on a new feature, how do I suggest it?
+Check if the request already exists in the issue list on github, if not you can make a new issue and suggest it.
+If you want to discuss before submitting feel free to post your ideas in our discord community.
+
+
+
+### Will you add Windows versions of the emulators as well and run them via Wine/Proton?
+We know that some emulators like CEMU runs better with the Windows version via Proton, but the entirety of Proton/Wine and DXVK must be added to the project and then configured to get it to work at all.
+This is no easy feat and most emulators are better and equally performant as their Windows counterparts with the Linux versions.
+
+So there are no plans currently to support this and it also comes with lot of risk adding such big dependencies as Wine into the project.
+
+
+
+## RetroDECK: Updating
+
+
+
+
+
+### How do I update RetroDECK?
+Updates to RetroDECK is handled automatically via your software manager when there is a new version released.
+
+Or if you want to update from the terminal you can type:
+`flatpak update`
+
+
+
+### How do I update a specific emulator in RetroDECK?
+You can't in a easy way do that without breaking several things. RetroDECK builds many emulators and add RetroDECK specific features on top of them and makes it into one application as is the goal of the project.
+
+But that said we are looking into a allowing a limited scrope of custom emulator installation for those that have early access versions that are payed like Yuzu and the users really want to add in.
+
+The custom installation will still be more limited then the one we ship with RetroDECK by default and might have less features then normal Yuzu in term of hotkey support and other things that the user will need to configure manually.
+
+
+
+### Do you only ship stable versions of the emulators or nightly versions?
+RetroDECK ships with the version that is the best for running the games on a case-by-case basis.
+
+For all bleeding edge emulators like Yuzu or RPCS3 it's nightly version we ship.
+
+But for things like RetroArch it is only the stable release of the application we ship.
+When it comes to RetroArch Cores they always use their stable version, but if there is no stable version of a core within a stable release of RetroArch the nightly version of that core will be used instead.
+
+Even before we release a new update for RetroDECK the nightly versions of the emulators will be tested to make sure they work and no major issues are known to exist in them.
+
+There have been instances where the nightly version of a emulator have been completly broken and we want to avoid to ship that with RetroDECK.
+
+
+
+
+
+
+## Documentation & Wiki
+
+
+
+
+
+### What is sudo?
+The command stands for "superuser do" and in the windows world it is called "run as administrator".
+Su in "sudo" refers to the "superuser" or in the windows called the "administrator".
+
+
+
+### Whats the meaning of the ~ character mean in documentation and examples?
+The tilde character ~ is the a short way of saying the logged in users home directory in the UNIX world.
+So for example the Steam Deck:
+
+`~ = /home/deck`
+
+Read more on [Wikipedia](https://en.wikipedia.org/wiki/Home_directory)
+
+
+
+### Whats the meaning of the SA acronym in documentation and examples?
+SA means Standalone and the emulator is not inside RetroArch/LibRetro but a separate program launched within RetroDECK.
+
+
+
+### Whats the meaning of the CLI acronym in documentation and examples?
+CLI stands for command-line interface and is often refereed commands you can run in the the Linux Terminal
+
+
+
+
+
+## Other Emulation Solutions
+
+
+
+
+
+### Are you related anyway to Batocera?
+ No, but RetroDECK had some dialog before the project started with some of the Batocera crew if there where any plans to start a Batocera non-OS application (there where no plans at that moment and their focus is to make the best retro gaming operative system). RetroDECK and Batocera also have good dialog together with representatives of each projects inside the internal development channels.
+
+
+
+### Are you related to EmuDeck?
+No, the two projects are not related.
+
+
+
+#### So what's the difference between RetroDECK and EmuDeck?
+Apart of that from the user point of view EmuDeck and RetroDECK may sound similar but technically they're completely different.
+
+EmuDeck is a shell script that you run in the Steam Decks desktop mode that downloads and configures all the separate emulators & plugins for you from various sources using a built in electron based gui.
+
+RetroDECK is an all-in-one application contained in a sandboxed environment called "flatpak", that is downloaded from Discover (Flathub). This is Valves and other Linux desktops recommended way of distributing applications on the Steam Deck and Linux desktop in a safe way. It grantees for example even if Valve makes major changes to the file system in a SteamOS update, RetroDECK and it’s configurations will not be touched and will be safe.
+
+RetroDECK only writes in these two folders: `~/retrodeck` for roms/configurations/bios etc.. And an hidden flatpak folder located in `~/.var/net.retrodeck.retrodeck`.
+
+As everything is contained within those two folders it will not have conflict if you decide to install an emulator from another source like Yuzu or RetroArch with your RetroDECK setup. Even if you uninstall RetroDECK all your roms/bios/saves/etc.. are safe until you remove the `~/retrodeck` folder. So if you for some reason don't like the application after playing for a while you can easily move out your important files after an uninstall (or you can just reinstall RetroDECK again and start where you left off).
+
+This approach of everything is in a all-in-one package will also allow RetroDECK to do tighter integrations with each bundled emulator in the future and expose all those settings when you are inside RetroDECK, so you do not need to go into Steam Decks desktop mode to do changes and tweaks. All things should be, in the long term, inside the application itself and you can already see a part of that inside the RetroDECK Configurator in the Tools menu.
+
+
+
+#### Can I install RetroDECK if I have EmuDeck already?
+Yes, as RetroDECK is completely standalone.
+
+
+
+#### Why create RetroDECK when EmuDeck and other solutions exists?
+RetroDECK is older then EmuDeck, EmuDeck was created later.
+
+
+
+
+### Batocera or EmuDeck or RetroDECK I still don't get it?
+ - Batocera is a retro emulation operative system that you need to boot into separately (like from an SDCard) or replace your current OS. For the Steam Deck you lose access to the SteamOS features and your emulation gaming is separate from your SteamOS gamemode gaming. That said; Batocera has many years of development time, is a great mature OS with a lot of features.
+
+ - EmuDeck is a shell script that you download and run. The script downloads & configures all the separate emulators & plugins for you from various sources for various operative systems.
+
+ - RetroDECK is an all-in-one application that already provides everything you need without to many extra steps for the user.It is on Flathub and thus allows the users to update the application via standard safe operative system update methods.
+You can see RetroDECK as the in between of EmuDeck and Batocera. We hope that one day we can offer a complete Batocera-like experience right inside your operative system.
+
+
+
+### What is your relationship with EmulationStation Desktop Edition (ES-DE)?
+ S-DE and RetroDECK are separate projects, but we collaborate to give the best possible user experience.
+We have a unique partnership where inside the ES-DE code is a section just for RetroDECK specific features.
+[Read more on ES-DE FAQs](https://gitlab.com/es-de/emulationstation-de/-/blob/master/FAQ.md#what-is-the-relationship-between-es-de-and-retrodeck)
+
+
+
+
+## Flatpak Questions
+
+
+
+### Retrodeck is a flatpak, what is it?
+ [Flaptak](https://docs.flatpak.org/en/latest/introduction.html) is like sandboxed application, with its own read only filesystem that is different from your computer's filesystem. That's why flatpak is safer than installing something directly in your filesystem as everything it needs is contained within the flatpak.
+
+
+#### How is a flatpak made?
+ A flatpak is generated from a manifest file. A software called flatpak-builder reads the manifest, then starts downloading dependencies and starts building the software. After the build process is done it generates the software in a .flatpak file. This file can then be hosted on Flathub or distributed on the web.
+
+
+#### How does the RetroDECK flatpak manifest look like?
+ You can find out manifest here: https://github.com/XargonWan/RetroDECK/blob/main/net.retrodeck.retrodeck.yml
+
+
+
+
+## Emulation & Games
+
+
+
+### Why are games call ROMs?
+ ROM stands for "Read Only Memory" and was a common method to store games.
+The games where later dumped from their ROM chips into digitalized files that can be played with an emulator.
+Read more on [wikipedia](https://en.wikipedia.org/wiki/Read-only_memory)
+
+
+
+### How can I set another default emulator?
+ The ES-DE interface allows you to change emulators for systems that has many different emulators. In the main menu go to `Other Settings` - `Alternative Emulators` to set other defaults.
+
+
+
+### Game X/Y/Z is not working or showing black screen
+- Some emulators needs BIOS and/or firmware files, first you can check if you got the `How-to's 💬` - `How to: Manage BIOS and Firmware`.
+
+### PS2 games are not working or buggy in the RetroArch Core.
+ It's a known issue with if you are using the libretro core but you can use the the standalone pcsx2 emulator to solve this issue.
+ Be sure to check that the bios files are in the correct folder. Read more on the `How-to's 💬` - `How to: Manage BIOS and Firmware`
+
+
+
+### I configured RetroArch but the configuration was not saved.
+ Configuring RetroArch can be dangerous for an inexperienced user, so RetroDECK is set to don't save the RetroArch configuration upon exiting.
+
+### Will you support Lightguns (Sinden, Gun4IR, Samco etc...)?
+ The long term answer is yes, but there are several issues that need to be addressed from various dependencies that are beyond the scope of what RetroDECK can do by it self. We are talking to several projects and hope to have those issues addressed in the future. Right now the best way to use lightgun hardware is to use Batocera as they have developed native support in their OS.
+
+
+
+## Emulation on the Steam Deck
+
+
+
+
+
+
+### Can I launch RetroDECK from inside of the Steam Decks gamemode?
+ Yes, RetroDECK currently only supports Steam Deck's gamemode as it relies on Steam Controller configs.
+ To add it into Steam please check the second step of `Steam Deck 🕹️` - `Steam Deck - Installation and Updates`.
+
+
+
+### XBOX games are slow on the Steam Deck
+ Unfortunately on thanks to missing optimizations focusing on the Steam Deck and the hardware is limited in scope makes performance not great. Like most emulators they will get improvements over time and we will follow the XBOX emulators progress with great interest.
+
+
+
+### The games are stuck at 30FPS on the Steam Deck!
+ Press the [...] button on the Steam Deck, go into the Power menu and see if the Framerate Limit is set to 30FPS and set it to 60FPS or off.
+
+
+
+### Fast forwarding is slow on the Steam Deck!
+ Same as above: Check the Power menu Framerate Limit.
+
+
+
+### Some emulators run slow when I got my Steam Deck docked to a 4k, 8k or above resolution monitor.
+ The Steam Deck does not have the power to play all the games in those high resolutions with a stable framerate. What you could do is go into desktop mode while docked and lower the resolution of the display to 1080p or 720p then return to gamemode.
+
+
+
+
+## Emulationstation-DE: General Questions
+
+
+
+### 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.
+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.
+
+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 seemingly at random depending on the layout of the grid.
+Every time it would requiring a different number of button presses depending on the grid layout.
+
+This type of contextual navigation feels very weird in practice, especially when you have to press the up button twice to get to the bottom of a list in some lists but more times in others depending on the button layout.
+
+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.
+
+
+## Emulationstation-DE: Themes
+
+
+
+### How can I add more themes?
+ ES-DE comes with a built in Theme Downloader `UI Settings Theme Downloader`. But you can also add themes manually in the: `~/retrodeck/themes` folder.
+
+
+
+### 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?
+ You can switch between them by open the menu and then navigate to `UI Settings Theme Set` to select the theme you want to use.
+
+
+
+### "Why does the theme I am using not work?" or "Why does the layout look broken?" (black screen with blue text)?
+ * Please make sure you are specifically using a theme that is compatible with [ES-DE](https://www.es-de.org).
+
+ * If you are trying to use a theme that was built for Batocera it will likely not be compatible.
+
+ * ES-DE uses a unique theme engine so themes are not directly portable from Batocera.
+
+ * Please see ES-DE's EmulationStation-DE Guide 📘 for more details.
+
+
+
+### Why does the theme layout look squished?
+ * 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.
+
+ * All of 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.
+
+ * 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.
+
+
+
+
+
+## Emulationstation-DE: Scraping
+
+
+
+### Can I manually add custom game images/videos/media for games that I can not scrape?
+ 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)
+
+
+
+### Where is my scraped data?
+ In: `~/retrodeck/downloaded_media` folder.
+
+
+
+### I got some weird error message about quota after scraping!
+The error message mentions something about quota. You have a quota limit on how much you can scrape each day from [Screenscraper](https://www.screenscraper.fr/) where each item you scrape counts as 1 quota of the daily total.
+You can pay them to get a bit more daily quota and show your support or just wait 24 hours.
+
+
+
+### The Scraper said: The Server or Service is down?
+The service is down, check [Screenscraper](https://www.screenscraper.fr/) when they get back up.
+
+
+
+### Can I only scrape one game or can I narrow down the scraping method?
+Yes, check the `EmulationStation-DE Guide 📘` for more details.
+
+
+
+### Can I move the downloaded_media folder?
+ You can move it with the the move RetroDECK option inside the configurator.
+
+
+
+### Can I copy the downloaded_media folder to another device?
+ Yes, just copy it into the other device RetroDECK folder.
+
+
+
+### The scraping is very slow...
+[Screenscraper](https://www.screenscraper.fr/) offers different types of donations that can increase your speed with extra threads.
+
+
+
+
+
+### My systems storage ran out after scraping...
+ You can clean out images and videos that takes a lot of space under: `~/retrodeck/downloaded_media`.
+
+#### But I still want them...
+ The only way to still keep them is either delete something else from the storage or buy more storage.
+
+
diff --git a/wiki-rtd/How-to-Manage-your-games.md b/wiki-rtd/docs/wiki_howto_faq/games-management.md
similarity index 69%
rename from wiki-rtd/How-to-Manage-your-games.md
rename to wiki-rtd/docs/wiki_howto_faq/games-management.md
index 48158266..dd792002 100644
--- a/wiki-rtd/How-to-Manage-your-games.md
+++ b/wiki-rtd/docs/wiki_howto_faq/games-management.md
@@ -1,26 +1,11 @@
-# Supported extensions
-In order to check which file extensions are supported check the page [Emulators: Folders & File extensions](https://github.com/XargonWan/RetroDECK/wiki/Emulators-Folders-&-File-extensions)
+# How to: Manage your Games
-## Special ROMs formats
-Some emulators are working only with specific rips, here is what I gather.
-
-**XEMU**: you must use iso files called xiso (the extensions are usually `.xiso.iso` or `.iso` only)
-
-**NDS**: needs a decrypted dump
-
-**3DS**: needs a decrypted dump
-
-**PS3**: are folders that need to be with the `.ps3` file extension in the end.
-Example: `Gran Turismo 5.ps3`
-
-# RetroAchievements
-Until we don't implement a proper menu, the RetroAchievements must be enabled from RetroArch:
-`Tools` -> `Start RetroArch` -> `Settings` -> `Achievements`
-Here you have to insert your username and password that you used to register to [RetroAchievements](https://retroachievements.org), then [save your RetroArch config](https://github.com/XargonWan/RetroDECK/wiki/FAQs---Frequently-asked-questions#i-configured-retroarch-but-the-configuration-was-not-saved).
-**NOTE:** not all the games are supported; your game [hash](https://docs.retroachievements.org/FAQ/#what-is-an-ra-hash) must be checked on [RetroAchievements website](https://retroachievements.org).
+# Supported file extensions for each emulator
+For a detalied list of which file extensions are supported and where to put the roms check this page:
+[ES-DE: Folders and Files](../wiki_emulationStation_de/esde-folders-files.md)
# Multidisk/file games: Directory interpreted as files
-You can put all the game files inside a sub-folder in order to keep you game list clean, these folder will be seen as the game itself from RetroDECK and not as an actual folder, more info [here](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#directories-interpreted-as-files) on the official ES-DE Documentation. The folder needs to have the corresponding .m3u file and the folder needs to be renamed to the exact filename of the .m3u
+You can put all the game files inside a sub-folder in order to keep you game list clean, these folder will be seen as the game itself from RetroDECK and not as an actual folder, more info [here](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#directories-interpreted-as-files) on the official ES-DE Documentation. The folder needs to have the corresponding .m3u file and the folder needs to be renamed to the exact filename of the .m3u
Example on how a structure could be:
```
@@ -32,12 +17,12 @@ Example on how a structure could be:
```
In this case the folder will be viewed as a single game and it will launch `Dragon Fantasy VII.m3u` so you can easly swap the disks from RetroArch menu.
-## How do I create a Multidisk Directory?
+## How do I create a Multidisk Directory?
Let's use the Dragon Fantasy VII example as written above.
### Step 1: Make a .m3u sub-folder
-Make a new sub-folder inside the PSX roms directory where you move and store the Dragon Fantasy VII files with a .m3u file extension in the end.
+Make a new sub-folder inside the PSX roms directory where you move and store the Dragon Fantasy VII files with a .m3u file extension in the end.
The name of the folder will be Dragon Fantasy VII.m3u and the full file path will be:
`~/retrodeck/roms/psx/Dragon Fantasy VII.m3u`
@@ -48,10 +33,10 @@ Following the example above, make an empty file inside the Dragon Fantasy VII.m3
`~/retrodeck/roms/psx/Dragon Fantasy VII.m3u/Dragon Fantasy VII.m3u`
-### Step 3: Populate the .m3u file
+### Step 3: Populate the .m3u file
Open the `Dragon Fantasy VII.m3u` file with an text editor and write the filenames of all files contained in the folder, one per line.
-When you are done, the structure of the file should look something like this:
+When you are done, the structure of the file should look something like this:
`Dragon Fantasy VII - Disk1.chd`
`Dragon Fantasy VII - Disk2.chd`
@@ -65,20 +50,24 @@ The ES-DE interface that RetroDECK uses should now pick up on the game as one fi
# Emulators compatibility lists
Here is a collection of games that were tested on Steam Deck, not on RetroDECK specifically.
If you find some inconsistences please report them on our `#support` channel on Discord.
-* [Xemu](https://xemu.app/#compatibility)
* [Citra](https://citra-emu.org/game/)
* [Dolphin](https://dolphin-emu.org/compat/?nocr=true)
-* [Yuzu](https://yuzu-emu.org/game/)
* [PCSX2](https://pcsx2.net/compat/)
* [RPCS3](https://docs.google.com/spreadsheets/d/1EzTcNoKiBaMS4orZrGEOKwMpFOZEFKVSOZjLRJqzEkA/)
+* [Vita3K](https://vita3k.org/compatibility.html?lang=en)
+* [Yuzu](https://yuzu-emu.org/game/)
+* [Xemu](https://xemu.app/#compatibility)
# Scraping
+Scraping allows you to make the games look "pretty" with coverarts, icons, discimages and more.
+Read up on the ES-DE userguide on scraping here:
-[Check out FAQ on Scraping on the wiki](https://github.com/XargonWan/RetroDECK/wiki/FAQs%3A-Frequently-asked-questions#scraping-questions)
+[ES-DE Scraper guide](https://gitlab.com/es-de/emulationstation-de/-/blob/master/USERGUIDE.md#scraping)
## Quick tips
* Register an account on https://www.screenscraper.fr/ (support them on Patreon for faster downloads, more scrapes per day and priority scraping).
* Login to your Screenscraper.fr account inside of the ES-DE interface in RetroDECK
* Choose what content you want to scrape (remember that each content you choose could take up several mb of data per game).
-* Do an initial scrape of all the games you want to scrape.
+* Do an initial scrape of all the games you want to scrape.
* If some games are missed do a more narrow scraping by enabling `Scraper -> Other Settings -> Interactive Mode -> On`& Scraper -> `Other Settings -> Auto-Accept Single Game Matches -> On` and choose to scrape by games missing metadata. This will allow you to select each game from a list and also tweak the searches of the missing games. In some cases you need to remove certain aspects of the name like if a rom comes both with a Japanese name and English name, you could try to remove one of the names to find a better result.
+
diff --git a/wiki-rtd/docs/wiki_howto_faq/retrodeck-move.md b/wiki-rtd/docs/wiki_howto_faq/retrodeck-move.md
new file mode 100644
index 00000000..b2c1b2a4
--- /dev/null
+++ b/wiki-rtd/docs/wiki_howto_faq/retrodeck-move.md
@@ -0,0 +1,123 @@
+# How do I move RetroDECK to a new device
+
+### Prerequisites: Before you move
+- Make sure you are running the latest version of RetroDECK on the old device and have started it at least once.
+- If your device has a battery like a Steam Deck or Laptop, make sure it has enough charge to complete the file transfer. We recommend you are plugged in while doing this to prevent data loss
+- If your old device is broken but you still have access to the data you can skip this step.
+
+
+## Quickguides
+
+### Ultra Quickguide
+1. Just copy the `~/retrodeck` folder to the new device to the location you want it.
+2. Install RetroDECK on the new device and point to it the new location of `~/retrodeck` during first setup.
+3. Proceed installation as normal.
+
+### Steam Deck
+1. Put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`.
+2. Back up existing the RetroDECK `~/retrodeck` folder .
+3. On the new Steam Deck install RetroDECK on your new Steam Deck.
+4. Do not launch RetroDECK on your new device until you have copied over the backed up folders.
+5. Copy over the backup folder to the same location (or new) on the new device.
+6. Launch RetroDECK on the new device and point towards the `~/retrodeck` location during installation. So if you have moved the `~/retrodeck` to the SD card of the new Steam Deck choose the SD card option during initial install, if you have moved it to the internal storage (home/) choose that option or third chose the custom option.
+
+After that you can keep following following the installation guide
+[Steam Deck - Installation and Updates](../wiki_devices/steamdeck/steamdeck-start.md) if you are unsure on progress the installation.
+
+### Linux Desktop
+1. Back up existing the RetroDECK `~/retrodeck` folder .
+2. On the new PC install RetroDECK from Flathub via your application manager.
+3. Do not launch RetroDECK on your new device until you have copied over the backed up folders.
+4. Copy over the backup folder to the same location (or new) on the new device.
+5. Launch RetroDECK on the new device and point towards the `~/retrodeck` location during installation.
+
+After that you can keep following following the installation guide
+[Linux Desktop - Installation and Updates](../wiki_devices/linux_desktop/linux-install.md) if you are unsure on progress the installation.
+
+## Indepth Guide
+
+### Information on moving RetroDECK
+
+RetroDECK contains mainly two folders:
+
+`~/retrodeck`
+This is the important folder, that contains all the user content like roms/bios/saves/screenshots/scraped data etc...
+The location of the folder is where you have chosen to install it like `/home/retrodeck` `sd-card` `external drive` `other`.
+
+`~/.var/app/net.retrodeck.retrodeck`
+This is the location of the core flatpak, emulator files and configurations.
+
+
+## How to: move from a old Steam Deck to a new Steam Deck?
+
+**Note:**
+
+Depending on how comfortable you are using the Steam Deck controller to navigate the desktop environment, this may be easier to do with a connected mouse and keyboard.
+
+What follows is a short comparison on the two ways to move RetroDECK.
+
+### Move only `~/retrodeck` (Recommended)
+
+**Downsides:**
+
+You will lose all your custom emulator settings inside the emulators (like graphic settings or other tweaks), everything else stays intact and you will need to go through the initial setup again and point to the moved retrodeck folder.
+
+**Upsides:**
+
+You will get the benefits of a fresh install with all your content intact (saves, games, scraped data etc..) and you minimize the risks of any file conflicts.
+
+#### Step 1: Back up your existing files
+You will need to backup the the main `~/retrodeck` folder.
+
+- First put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`.
+- Main `~/retrodeck` folder
+ - Open the Dolphin File Manager (the folder icon in the taskbar).
+ - Navigate to where you installed `~/retrodeck` (this folder should contain sub-folders such as `bios`, `roms`, and `saves`).
+ - Copy the whole folder `~/retrodeck` to a device used for transfer such as a thumb drive, microSD Card, NAS, SFTP and get the files to the new Steam Deck. Or use a transfer software like warpinator to send the folder to the new Steam Deck via network.
+
+
+#### Step 2: Install RetroDECK on your new Steam Deck
+- Follow steps 1 and 2 of the installation guide over at: [Steam Deck - Installation and Updates](../wiki_devices/steamdeck/steamdeck-start.md) but stop after Step 2 and do not open RetroDECK yet!
+
+#### Step 3: Restore your backed up files
+- Copy over the `~/retrodeck` to the new device via any of the chosen methods from step 1.
+- Launch RetroDECK on the new device and point towards the `~/retrodeck` location during installation. So if you have moved the `~/retrodeck` to the SD card of the new Steam Deck choose the SD card option during initial install, if you have moved it to the internal storage choose that option or third chose the custom option.
+- Keep following the [Steam Deck - Installation and Updates](../wiki_devices/steamdeck/steamdeck-start.md) as normal.
+
+
+### Move `.var/ files` and `~/retrodeck` (Not Recommended)
+
+This is not recommended, but if you know what you are doing you could try this way.
+
+**Downsides:**
+
+You will need to reinstall things from configurator like controller profiles, must make sure you are on the same version before you update and if there are any version conflicts within `~/.var/app/net.retrodeck.retrodeck` things could break.
+
+**Upsides:**
+
+No first install, just move and play and all custom emulator settings you have made are moved.
+
+#### Step 1: Back up your existing files
+You will need to backup two directories: the main `~/retrodeck` folders and a hidden `~/.var/app/net.retrodeck.retrodeck` folder.
+
+- First put the Steam Deck into Desktop Mode `Steam button` > `Power` > `Switch to Desktop`.
+- Main `retrodeck` folder
+ - Open the Dolphin File Manager (the folder icon in the taskbar).
+ - Navigate to where you installed `~/retrodeck` (this folder should contain sub-folders such as `bios`, `roms`, and `saves`).
+ - Copy the whole folder `~/retrodeck` to a device used for transfer such as a thumb drive, microSD Card, NAS, SFTP and get the files to the new Steam Deck. Or use a transfer software like warpinator to send the folder to the new Steam Deck via network.
+ - Put the copy in the same location as the old Steam Deck.
+
+- Hidden `net.retrodeck.retrodeck` folder
+ - Return to `home`
+ - Find the "hamburger" menu button (three horizontal lines in the top-right). Open the menu and select `Show Hidden Files`. If on a keyboard, you can type `Ctrl+H`.
+ - Navigate to `home/.var/app/net.retrodeck.retrodeck/` and copy the whole folder it to device used for transfer such as a thumb drive, microSD Card, NAS, SFTP and get the files to the new Steam Deck. Or use a transfer software like warpinator to send the folder to the new Steam Deck via network.
+
+#### Step 2: Install RetroDECK on your new Steam Deck
+- Follow steps 1 and 2 of the installation guide over at: [Steam Deck - Installation and Updates](../wiki_devices/steamdeck/steamdeck-start.md) but stop after Step 2 and do not open RetroDECK yet!
+
+#### Step 3: Restore your backed up files
+- Move the copy of `~/retrodeck` to the same location as the old Steam Deck.
+- Move the copy of `~/.var/app/net.retrodeck.retrodeck` to `~/.var/app/net.retrodeck.retrodeck` on the new device.
+- In both cases, you can safely overwrite all existing files.
+- You can now just launch RetroDECK if all have gone well directly from gamemode, without needing to do the initial setup.
+- Don't forget to install the official controller profile in the configurator!
diff --git a/wiki-rtd/docs/wiki_howto_faq/retrodeck-start.md b/wiki-rtd/docs/wiki_howto_faq/retrodeck-start.md
new file mode 100644
index 00000000..62b2fba3
--- /dev/null
+++ b/wiki-rtd/docs/wiki_howto_faq/retrodeck-start.md
@@ -0,0 +1,112 @@
+# Getting started
+
+This is a guide on how to get started with RetroDECK
+
+## Step 0: Prerequisites
+
+### What do I need?
+You need to meet the following prerequisites before you start following this guide:
+
+* You need to have a device to install RetroDECK on.
+* Have related BIOS & Firmware ready
+* Have game backups of various formats ready that you want to play
+
+## Step 1: Installation & Configuration
+Only install RetroDECK from the official channels via Flathub!
+
+### Steam Deck - Installation
+Read and follow the following guide
+
+[Steam Deck - Installation and Updates](../wiki_devices/steamdeck/steamdeck-start.md)
+
+### Linux Desktop - Installation
+Read and follow the:
+
+[Linux Desktop - Installation and Updates](../wiki_devices/linux_desktop/linux-install.md)
+
+
+### Other SteamOS / Linux gaming devices - Installation
+
+(more information later)
+
+## Step 2: BIOS & Firmware
+
+**NOTE:** On the Steam Deck this step needs to be done in Desktop Mode
+
+### Information
+Read up on [Manage your BIOS/Firmware](../wiki_howto_faq/bios-firmware.md)
+
+* The BIOS & Firmware files go into the `~/retrodeck/bios/` directory
+
+
+**Example:**
+You have a BIOS for the PSX called `exampleBIOSPSX.bin`, you just put that file into the `~/retrodeck/bios/` folder.
+
+## Step 3: ROMs
+
+**NOTE:** On the Steam Deck this step needs to be done in Desktop Mode
+
+### On ROMs
+
+Rom files needs to be put in their corresponding system directory inside the `roms` folder.
+Note that the `roms` folder location can be different depending on where you choose to put it during the installation process. The following options are available during the installation:
+
+#### **Choice: Internal**
+If during the installation of RetroDECK you choose the Internal option for the roms folder:
+The roms folder is:`~/retrodeck/roms/`
+
+#### **Choice: SDCard**
+If during the installation of RetroDECK you choose the SDCard option for the roms folder:
+The roms folder is: `/retrodeck/roms/`
+
+(Please note that the `` is an example and not called so inside your Linux/SteamOS system but rather your unique per SDCard ID number).
+
+#### **Choice: Custom**
+If during the installation of RetroDECK you choose the Custom option for the roms folder:
+The roms folder where ever you choose.
+
+
+### Let's get started on ROMs:
+
+Read up on [ES-DE Folders and Files](../wiki_emulationStation_de/esde-folders-files.md) to see what folder each system has or read the readme file in each systems folder under `~/retrodeck/roms/`
+
+* Put the corresponding roms inside the corresponding system folder
+
+**Example:**
+You have an example NES game called `ExampleNESGame.nes`
+You have to put that game into the `/retrodeck/roms/nes` folder.
+
+## Step 4: Playing the Games
+
+### Steam Deck - Gamemode
+Return to gamemode on the Steam Deck and start up RetroDECK. Now the systems you put rom files for should be shown and be able to be played.
+
+**Example:**
+The NES column should now be shown with our `ExampleNESGame.nes` from `Step 3`
+
+### Linux Desktop
+Start up RetroDECK from Steam. Now the systems you put rom files for should be shown and be able to be played.
+
+**Example:**
+The NES column should now be shown with our `ExampleNESGame.nes` from `Step 3`
+
+## Step 5: Making the games "pretty" with videos, images and art.
+
+Do the following:
+
+1. Make an account on [Screenscraper](https://www.screenscraper.fr/)
+2. Read up on scraping and the various settings that exist for it in the [ES-DE User Guide](../wiki_emulationStation_de/esde-guide.md)
+3. Login to your screenscraper account inside RetroDECK.
+4. Setup the scraping how you want it.
+5. Start scraping.
+6. Look at your nice pretty games.
+
+## Step 6: EmulationStation-DE Themes
+You can download more themes for ES-DE's frontend with the built in theme downloader you can find it in:
+
+`UI Settings > Theme Downloader`
+
+Switch between them and in:
+
+`UI Settings > Theme Set`
+
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0000.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0000.png
new file mode 100644
index 00000000..8c81f0b9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0000.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0001.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0001.png
new file mode 100644
index 00000000..fec71c47
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0001.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0002.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0002.png
new file mode 100644
index 00000000..a4518c71
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0002.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0003.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0003.png
new file mode 100644
index 00000000..73a58adf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0003.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0004.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0004.png
new file mode 100644
index 00000000..9e358dc3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0004.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0005.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0005.png
new file mode 100644
index 00000000..00b26265
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0005.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0006.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0006.png
new file mode 100644
index 00000000..729d0716
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0006.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0007.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0007.png
new file mode 100644
index 00000000..00683170
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0007.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0008.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0008.png
new file mode 100644
index 00000000..296941b9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0008.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0009.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0009.png
new file mode 100644
index 00000000..4c49402c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0009.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0010.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0010.png
new file mode 100644
index 00000000..f5de2e6b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0010.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0011.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0011.png
new file mode 100644
index 00000000..44f7a50b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0011.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0012.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0012.png
new file mode 100644
index 00000000..4367cd7d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0012.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0013.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0013.png
new file mode 100644
index 00000000..dc03eb63
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0013.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0014.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0014.png
new file mode 100644
index 00000000..a9075413
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0014.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0015.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0015.png
new file mode 100644
index 00000000..3f0a150b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0015.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0016.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0016.png
new file mode 100644
index 00000000..00e65730
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0016.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0017.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0017.png
new file mode 100644
index 00000000..f25834ff
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0017.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0018.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0018.png
new file mode 100644
index 00000000..bc221527
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0018.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0019.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0019.png
new file mode 100644
index 00000000..12f21c2f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0019.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0020.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0020.png
new file mode 100644
index 00000000..a4855e61
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0020.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0021.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0021.png
new file mode 100644
index 00000000..c9bafb28
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0021.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0022.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0022.png
new file mode 100644
index 00000000..0271fee3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0022.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0023.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0023.png
new file mode 100644
index 00000000..bee0f8cb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0023.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0024.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0024.png
new file mode 100644
index 00000000..baf1a9e7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0024.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0025.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0025.png
new file mode 100644
index 00000000..2c6a39ca
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0025.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0026.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0026.png
new file mode 100644
index 00000000..44a9b5e4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0026.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0027.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0027.png
new file mode 100644
index 00000000..c17bfc03
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0027.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0028.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0028.png
new file mode 100644
index 00000000..560df5ea
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0028.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0029.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0029.png
new file mode 100644
index 00000000..35b7857b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0029.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0030.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0030.png
new file mode 100644
index 00000000..1c33fa64
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0030.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0031.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0031.png
new file mode 100644
index 00000000..62b1dd91
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0031.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0032.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0032.png
new file mode 100644
index 00000000..bde1a324
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0032.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0033.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0033.png
new file mode 100644
index 00000000..ad6a08e8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0033.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0034.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0034.png
new file mode 100644
index 00000000..b41d3fe4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0034.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0035.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0035.png
new file mode 100644
index 00000000..937003f0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0035.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0036.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0036.png
new file mode 100644
index 00000000..260bddad
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0036.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0037.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0037.png
new file mode 100644
index 00000000..6fffb87c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0037.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0038.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0038.png
new file mode 100644
index 00000000..3c08af1c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0038.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0039.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0039.png
new file mode 100644
index 00000000..0d186403
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0039.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0040.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0040.png
new file mode 100644
index 00000000..624bce23
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0040.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0041.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0041.png
new file mode 100644
index 00000000..fab38b4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0041.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0042.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0042.png
new file mode 100644
index 00000000..c326feb7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0042.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0043.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0043.png
new file mode 100644
index 00000000..9663dc1a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0043.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0044.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0044.png
new file mode 100644
index 00000000..35da859a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0044.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0045.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0045.png
new file mode 100644
index 00000000..96e569d0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0045.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0046.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0046.png
new file mode 100644
index 00000000..8a77911d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0046.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0047.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0047.png
new file mode 100644
index 00000000..dea39c2c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0047.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0048.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0048.png
new file mode 100644
index 00000000..80053a01
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0048.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0049.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0049.png
new file mode 100644
index 00000000..2d2fea2d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0049.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0050.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0050.png
new file mode 100644
index 00000000..1980d3ad
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0050.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0051.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0051.png
new file mode 100644
index 00000000..90801774
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0051.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0052.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0052.png
new file mode 100644
index 00000000..cb6298bb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0052.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0053.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0053.png
new file mode 100644
index 00000000..9812e858
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0053.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0054.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0054.png
new file mode 100644
index 00000000..6ff77832
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0054.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0055.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0055.png
new file mode 100644
index 00000000..ee87662f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0055.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0056.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0056.png
new file mode 100644
index 00000000..d3638349
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0056.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0057.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0057.png
new file mode 100644
index 00000000..019f596e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0057.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0058.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0058.png
new file mode 100644
index 00000000..700d1006
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0058.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0059.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0059.png
new file mode 100644
index 00000000..e9b0015a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0059.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0060.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0060.png
new file mode 100644
index 00000000..74c7baf2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0060.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0061.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0061.png
new file mode 100644
index 00000000..496c6388
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0061.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0062.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0062.png
new file mode 100644
index 00000000..afde0034
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0062.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0063.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0063.png
new file mode 100644
index 00000000..778c9804
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0063.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0064.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0064.png
new file mode 100644
index 00000000..0ccd036e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0064.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0065.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0065.png
new file mode 100644
index 00000000..ee2a0d7e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0065.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0066.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0066.png
new file mode 100644
index 00000000..aac6831f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0066.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0067.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0067.png
new file mode 100644
index 00000000..96eb251f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0067.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0068.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0068.png
new file mode 100644
index 00000000..f140f9c0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0068.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0069.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0069.png
new file mode 100644
index 00000000..b6a69e80
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0069.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0070.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0070.png
new file mode 100644
index 00000000..981f16b5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0070.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0071.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0071.png
new file mode 100644
index 00000000..452d3c68
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0071.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0072.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0072.png
new file mode 100644
index 00000000..4aac318a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0072.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0073.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0073.png
new file mode 100644
index 00000000..da691c91
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0073.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0074.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0074.png
new file mode 100644
index 00000000..48297e36
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0074.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0075.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0075.png
new file mode 100644
index 00000000..fab38b4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0075.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0076.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0076.png
new file mode 100644
index 00000000..7802850e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0076.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0077.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0077.png
new file mode 100644
index 00000000..3d681693
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0077.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0078.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0078.png
new file mode 100644
index 00000000..793156de
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0078.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0079.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0079.png
new file mode 100644
index 00000000..1f6fc2db
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0079.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0080.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0080.png
new file mode 100644
index 00000000..5d7d1c55
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0080.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0081.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0081.png
new file mode 100644
index 00000000..027fc070
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0081.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0082.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0082.png
new file mode 100644
index 00000000..3418db79
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0082.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0083.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0083.png
new file mode 100644
index 00000000..16b54dd6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0083.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0084.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0084.png
new file mode 100644
index 00000000..230d9b93
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0084.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0085.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0085.png
new file mode 100644
index 00000000..d8425116
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0085.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0086.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0086.png
new file mode 100644
index 00000000..c6b16ccc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0086.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0087.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0087.png
new file mode 100644
index 00000000..55faa930
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0087.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0088.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0088.png
new file mode 100644
index 00000000..f5b2a0ec
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0088.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0089.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0089.png
new file mode 100644
index 00000000..b1337edb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0089.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0090.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0090.png
new file mode 100644
index 00000000..58a8b496
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0090.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0091.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0091.png
new file mode 100644
index 00000000..ba929997
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0091.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0092.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0092.png
new file mode 100644
index 00000000..34b5cf5a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0092.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0093.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0093.png
new file mode 100644
index 00000000..74c7baf2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0093.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0094.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0094.png
new file mode 100644
index 00000000..8ba217dc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0094.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0095.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0095.png
new file mode 100644
index 00000000..cf12c36c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0095.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0096.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0096.png
new file mode 100644
index 00000000..f2e37588
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0096.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0097.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0097.png
new file mode 100644
index 00000000..6a42f455
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0097.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0098.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0098.png
new file mode 100644
index 00000000..ebb7519c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0098.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0099.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0099.png
new file mode 100644
index 00000000..ad51d23a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0099.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0100.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0100.png
new file mode 100644
index 00000000..64b06f5d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0100.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0101.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0101.png
new file mode 100644
index 00000000..84b503e2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0101.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0102.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0102.png
new file mode 100644
index 00000000..61cdd0ae
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0102.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0103.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0103.png
new file mode 100644
index 00000000..8311169e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0103.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0104.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0104.png
new file mode 100644
index 00000000..69e51881
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0104.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0105.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0105.png
new file mode 100644
index 00000000..11fefd4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0105.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0106.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0106.png
new file mode 100644
index 00000000..6c4379f1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0106.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0107.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0107.png
new file mode 100644
index 00000000..548c31c0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0107.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0108.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0108.png
new file mode 100644
index 00000000..df558ee2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0108.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0109.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0109.png
new file mode 100644
index 00000000..0d9d46a4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0109.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0110.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0110.png
new file mode 100644
index 00000000..0a540e9e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0110.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0111.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0111.png
new file mode 100644
index 00000000..39330b07
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0111.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0112.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0112.png
new file mode 100644
index 00000000..64808cc1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0112.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0113.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0113.png
new file mode 100644
index 00000000..dab0e732
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0113.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0114.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0114.png
new file mode 100644
index 00000000..958a8c40
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0114.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0115.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0115.png
new file mode 100644
index 00000000..3440f94f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0115.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0116.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0116.png
new file mode 100644
index 00000000..7a9e3a05
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0116.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0117.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0117.png
new file mode 100644
index 00000000..fa862418
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0117.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0118.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0118.png
new file mode 100644
index 00000000..9605c279
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0118.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0119.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0119.png
new file mode 100644
index 00000000..c0ea4d4f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0119.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0120.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0120.png
new file mode 100644
index 00000000..58f767e6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0120.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0121.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0121.png
new file mode 100644
index 00000000..978cc70d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0121.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0122.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0122.png
new file mode 100644
index 00000000..9670cdb2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0122.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0123.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0123.png
new file mode 100644
index 00000000..2b952466
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0123.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0124.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0124.png
new file mode 100644
index 00000000..fb2b6404
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0124.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0125.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0125.png
new file mode 100644
index 00000000..587bb054
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0125.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0126.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0126.png
new file mode 100644
index 00000000..1eacc5bf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0126.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0127.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0127.png
new file mode 100644
index 00000000..faeda5de
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0127.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0128.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0128.png
new file mode 100644
index 00000000..36bb3c93
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0128.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0129.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0129.png
new file mode 100644
index 00000000..d22d9577
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0129.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0130.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0130.png
new file mode 100644
index 00000000..6e05508b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0130.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0131.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0131.png
new file mode 100644
index 00000000..eaecb1b3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0131.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0132.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0132.png
new file mode 100644
index 00000000..4520e95d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0132.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0133.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0133.png
new file mode 100644
index 00000000..47e5fe17
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0133.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0134.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0134.png
new file mode 100644
index 00000000..b6415985
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0134.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0135.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0135.png
new file mode 100644
index 00000000..c3638e13
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0135.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0136.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0136.png
new file mode 100644
index 00000000..8f5361be
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0136.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0137.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0137.png
new file mode 100644
index 00000000..57e33ac8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0137.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0138.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0138.png
new file mode 100644
index 00000000..47f3a148
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0138.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0139.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0139.png
new file mode 100644
index 00000000..23b8c9ba
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0139.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0140.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0140.png
new file mode 100644
index 00000000..974105cc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0140.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0141.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0141.png
new file mode 100644
index 00000000..86a1bb9d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0141.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0142.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0142.png
new file mode 100644
index 00000000..b2386cf2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0142.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0143.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0143.png
new file mode 100644
index 00000000..0d9d46a4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0143.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0144.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0144.png
new file mode 100644
index 00000000..37ae6905
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0144.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0145.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0145.png
new file mode 100644
index 00000000..32c99067
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0145.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0146.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0146.png
new file mode 100644
index 00000000..50d1f3fb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0146.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0147.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0147.png
new file mode 100644
index 00000000..2e22136d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0147.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0148.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0148.png
new file mode 100644
index 00000000..b80e40af
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0148.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0149.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0149.png
new file mode 100644
index 00000000..48ce6d72
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0149.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0150.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0150.png
new file mode 100644
index 00000000..8d75aa45
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0150.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0151.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0151.png
new file mode 100644
index 00000000..d709059f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0151.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0152.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0152.png
new file mode 100644
index 00000000..0846347a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0152.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0153.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0153.png
new file mode 100644
index 00000000..460711df
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0153.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0154.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0154.png
new file mode 100644
index 00000000..48a2db7b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0154.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0155.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0155.png
new file mode 100644
index 00000000..a4a4856e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0155.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0156.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0156.png
new file mode 100644
index 00000000..192237fb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0156.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0157.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0157.png
new file mode 100644
index 00000000..21fc5c7d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0157.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0158.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0158.png
new file mode 100644
index 00000000..35676f27
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0158.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0159.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0159.png
new file mode 100644
index 00000000..a6619d03
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0159.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0160.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0160.png
new file mode 100644
index 00000000..c63675c4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0160.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0161.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0161.png
new file mode 100644
index 00000000..3ed92cc8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0161.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0162.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0162.png
new file mode 100644
index 00000000..e652507c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0162.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0163.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0163.png
new file mode 100644
index 00000000..27afb27d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0163.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0164.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0164.png
new file mode 100644
index 00000000..0df02b16
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0164.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0165.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0165.png
new file mode 100644
index 00000000..8376eaf5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0165.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0166.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0166.png
new file mode 100644
index 00000000..c0ea4d4f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0166.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0167.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0167.png
new file mode 100644
index 00000000..2c397d7c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0167.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0168.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0168.png
new file mode 100644
index 00000000..99e44fd1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0168.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0169.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0169.png
new file mode 100644
index 00000000..67ad8661
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0169.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0170.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0170.png
new file mode 100644
index 00000000..ec98f2f1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0170.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0171.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0171.png
new file mode 100644
index 00000000..342882d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0171.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0172.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0172.png
new file mode 100644
index 00000000..e4abfe0b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0172.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0173.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0173.png
new file mode 100644
index 00000000..3be93a26
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0173.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0174.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0174.png
new file mode 100644
index 00000000..e1eea0f6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0174.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0175.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0175.png
new file mode 100644
index 00000000..3a573833
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0175.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0176.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0176.png
new file mode 100644
index 00000000..014eb5fc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0176.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0177.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0177.png
new file mode 100644
index 00000000..8fe7a049
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0177.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0178.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0178.png
new file mode 100644
index 00000000..9c65881a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0178.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0179.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0179.png
new file mode 100644
index 00000000..71adeeaf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0179.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0180.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0180.png
new file mode 100644
index 00000000..02049bc2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0180.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0181.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0181.png
new file mode 100644
index 00000000..0fe29dc1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0181.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0182.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0182.png
new file mode 100644
index 00000000..29293d9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0182.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0183.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0183.png
new file mode 100644
index 00000000..806f22ea
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0183.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0184.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0184.png
new file mode 100644
index 00000000..b92bea9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0184.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0185.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0185.png
new file mode 100644
index 00000000..f4492c11
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0185.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0186.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0186.png
new file mode 100644
index 00000000..3d763354
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0186.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0187.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0187.png
new file mode 100644
index 00000000..7482062f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0187.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0188.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0188.png
new file mode 100644
index 00000000..999e5fb3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0188.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0189.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0189.png
new file mode 100644
index 00000000..3ad0174b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0189.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0190.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0190.png
new file mode 100644
index 00000000..999e5fb3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0190.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0191.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0191.png
new file mode 100644
index 00000000..94e9fda9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0191.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0192.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0192.png
new file mode 100644
index 00000000..999e5fb3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0192.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0193.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0193.png
new file mode 100644
index 00000000..6da1df6a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0193.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0194.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0194.png
new file mode 100644
index 00000000..999e5fb3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0194.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0195.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0195.png
new file mode 100644
index 00000000..717255be
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0195.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0196.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0196.png
new file mode 100644
index 00000000..999e5fb3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0196.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0197.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0197.png
new file mode 100644
index 00000000..212daecd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0197.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0198.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0198.png
new file mode 100644
index 00000000..1fe5b1b3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0198.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0199.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0199.png
new file mode 100644
index 00000000..efb0b219
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0199.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0200.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0200.png
new file mode 100644
index 00000000..ec4094f7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0200.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0201.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0201.png
new file mode 100644
index 00000000..0540be5e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0201.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0202.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0202.png
new file mode 100644
index 00000000..e743ed7c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0202.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0203.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0203.png
new file mode 100644
index 00000000..0e3bd51c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0203.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0204.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0204.png
new file mode 100644
index 00000000..216555d3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0204.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0205.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0205.png
new file mode 100644
index 00000000..2e6624dd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0205.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0206.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0206.png
new file mode 100644
index 00000000..d760e91f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0206.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0207.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0207.png
new file mode 100644
index 00000000..7c325189
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0207.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0208.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0208.png
new file mode 100644
index 00000000..5b2cabf9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0208.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0209.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0209.png
new file mode 100644
index 00000000..dda4c097
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0209.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0210.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0210.png
new file mode 100644
index 00000000..56d7435e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0210.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0211.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0211.png
new file mode 100644
index 00000000..8843815f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0211.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0212.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0212.png
new file mode 100644
index 00000000..a828cdcb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0212.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0213.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0213.png
new file mode 100644
index 00000000..e0471c88
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0213.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0214.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0214.png
new file mode 100644
index 00000000..1e8ed4c2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0214.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0215.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0215.png
new file mode 100644
index 00000000..b8a4eae1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0215.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0216.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0216.png
new file mode 100644
index 00000000..584ede8c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0216.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0217.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0217.png
new file mode 100644
index 00000000..b5ef7ef3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0217.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0218.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0218.png
new file mode 100644
index 00000000..418109e8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0218.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0219.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0219.png
new file mode 100644
index 00000000..4fea1a8d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0219.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0220.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0220.png
new file mode 100644
index 00000000..664a91eb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0220.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0221.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0221.png
new file mode 100644
index 00000000..c104f740
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0221.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0222.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0222.png
new file mode 100644
index 00000000..2ae69103
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0222.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0223.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0223.png
new file mode 100644
index 00000000..5a9e7fc1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0223.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0224.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0224.png
new file mode 100644
index 00000000..6f710b22
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0224.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0225.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0225.png
new file mode 100644
index 00000000..e6fac2a2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0225.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0226.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0226.png
new file mode 100644
index 00000000..61309a59
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0226.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0227.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0227.png
new file mode 100644
index 00000000..dd1d2a17
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0227.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0228.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0228.png
new file mode 100644
index 00000000..55e9b6cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0228.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0229.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0229.png
new file mode 100644
index 00000000..acc28508
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0229.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0230.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0230.png
new file mode 100644
index 00000000..6b8443ab
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0230.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0231.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0231.png
new file mode 100644
index 00000000..6e7c7f19
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0231.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0232.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0232.png
new file mode 100644
index 00000000..c28790e2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0232.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0233.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0233.png
new file mode 100644
index 00000000..ad4a5d12
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0233.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0234.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0234.png
new file mode 100644
index 00000000..228962b5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0234.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0235.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0235.png
new file mode 100644
index 00000000..1d5893f9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0235.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0236.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0236.png
new file mode 100644
index 00000000..83f98a98
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0236.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0237.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0237.png
new file mode 100644
index 00000000..96eb251f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0237.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0238.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0238.png
new file mode 100644
index 00000000..b53e647c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0238.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0239.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0239.png
new file mode 100644
index 00000000..5576e5aa
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0239.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0240.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0240.png
new file mode 100644
index 00000000..018d4417
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0240.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0241.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0241.png
new file mode 100644
index 00000000..1d8e0274
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0241.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0242.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0242.png
new file mode 100644
index 00000000..d5077888
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0242.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0243.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0243.png
new file mode 100644
index 00000000..2d1377d3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0243.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0244.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0244.png
new file mode 100644
index 00000000..3787ebda
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0244.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0245.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0245.png
new file mode 100644
index 00000000..e688e28e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0245.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0246.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0246.png
new file mode 100644
index 00000000..10edd406
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0246.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0247.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0247.png
new file mode 100644
index 00000000..e3c7f3ea
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0247.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0248.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0248.png
new file mode 100644
index 00000000..bcd7f871
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0248.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0249.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0249.png
new file mode 100644
index 00000000..ea5fba31
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0249.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0250.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0250.png
new file mode 100644
index 00000000..5f352f64
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0250.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0251.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0251.png
new file mode 100644
index 00000000..3a697dd7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0251.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0252.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0252.png
new file mode 100644
index 00000000..45b0761f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0252.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0253.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0253.png
new file mode 100644
index 00000000..c2d7d354
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0253.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0254.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0254.png
new file mode 100644
index 00000000..64987372
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0254.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0255.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0255.png
new file mode 100644
index 00000000..a2efb56f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0255.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0256.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0256.png
new file mode 100644
index 00000000..d8ce61e5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0256.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0257.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0257.png
new file mode 100644
index 00000000..8a398022
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0257.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0258.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0258.png
new file mode 100644
index 00000000..cfb4b3fb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0258.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0259.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0259.png
new file mode 100644
index 00000000..68dc4d89
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0259.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0260.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0260.png
new file mode 100644
index 00000000..2f871bc4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0260.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0261.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0261.png
new file mode 100644
index 00000000..8d712fdc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0261.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0262.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0262.png
new file mode 100644
index 00000000..4dcd496d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0262.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0263.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0263.png
new file mode 100644
index 00000000..589b244a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0263.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0264.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0264.png
new file mode 100644
index 00000000..67b39da8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0264.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0265.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0265.png
new file mode 100644
index 00000000..ebdb8a5d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0265.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0266.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0266.png
new file mode 100644
index 00000000..de218d73
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0266.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0267.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0267.png
new file mode 100644
index 00000000..d9dea7f3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0267.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0268.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0268.png
new file mode 100644
index 00000000..0f8caeb1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0268.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0269.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0269.png
new file mode 100644
index 00000000..a69cc0f2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0269.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0270.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0270.png
new file mode 100644
index 00000000..9a0ca8d3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0270.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0271.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0271.png
new file mode 100644
index 00000000..c8618b14
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0271.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0272.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0272.png
new file mode 100644
index 00000000..e7b2464f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0272.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0273.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0273.png
new file mode 100644
index 00000000..674bab03
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0273.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0274.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0274.png
new file mode 100644
index 00000000..857fc463
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0274.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0275.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0275.png
new file mode 100644
index 00000000..1516ba57
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0275.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0276.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0276.png
new file mode 100644
index 00000000..92af0841
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0276.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0277.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0277.png
new file mode 100644
index 00000000..bcd5ef3c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0277.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0278.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0278.png
new file mode 100644
index 00000000..744ac4e7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0278.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0279.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0279.png
new file mode 100644
index 00000000..e688e28e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0279.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0280.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0280.png
new file mode 100644
index 00000000..ecbb7572
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0280.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0281.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0281.png
new file mode 100644
index 00000000..08117bcb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0281.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0282.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0282.png
new file mode 100644
index 00000000..c806cd17
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0282.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0283.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0283.png
new file mode 100644
index 00000000..a6ec1068
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0283.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0284.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0284.png
new file mode 100644
index 00000000..4a5c03db
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0284.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0285.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0285.png
new file mode 100644
index 00000000..844beaa2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0285.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0286.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0286.png
new file mode 100644
index 00000000..11b34b7a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0286.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0287.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0287.png
new file mode 100644
index 00000000..dbc41089
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0287.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0288.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0288.png
new file mode 100644
index 00000000..107b1854
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0288.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0289.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0289.png
new file mode 100644
index 00000000..437e0458
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0289.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0290.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0290.png
new file mode 100644
index 00000000..e5db8dcd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0290.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0291.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0291.png
new file mode 100644
index 00000000..5dfa9651
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0291.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0292.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0292.png
new file mode 100644
index 00000000..76d139ac
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0292.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0293.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0293.png
new file mode 100644
index 00000000..2b40121e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0293.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0294.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0294.png
new file mode 100644
index 00000000..6ea84877
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0294.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0295.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0295.png
new file mode 100644
index 00000000..ddea86f8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0295.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0296.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0296.png
new file mode 100644
index 00000000..a596aa7e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0296.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0297.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0297.png
new file mode 100644
index 00000000..fe086ed6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0297.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0298.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0298.png
new file mode 100644
index 00000000..09015659
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0298.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0299.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0299.png
new file mode 100644
index 00000000..34a13b18
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0299.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0300.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0300.png
new file mode 100644
index 00000000..e60dbb30
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0300.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0301.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0301.png
new file mode 100644
index 00000000..99002d87
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0301.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0302.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0302.png
new file mode 100644
index 00000000..358bb52e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0302.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0303.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0303.png
new file mode 100644
index 00000000..12fcaaa8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0303.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0304.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0304.png
new file mode 100644
index 00000000..f58d9017
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0304.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0305.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0305.png
new file mode 100644
index 00000000..dc20f579
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0305.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0306.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0306.png
new file mode 100644
index 00000000..484e4216
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0306.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0307.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0307.png
new file mode 100644
index 00000000..af9533b3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0307.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0308.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0308.png
new file mode 100644
index 00000000..1fc3292b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0308.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0309.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0309.png
new file mode 100644
index 00000000..fa79f6bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0309.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0310.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0310.png
new file mode 100644
index 00000000..8a8d204e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0310.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0311.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0311.png
new file mode 100644
index 00000000..bc2adcc5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0311.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0312.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0312.png
new file mode 100644
index 00000000..e5330a85
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0312.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0313.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0313.png
new file mode 100644
index 00000000..fa79f6bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0313.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0314.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0314.png
new file mode 100644
index 00000000..eb8db249
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0314.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0315.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0315.png
new file mode 100644
index 00000000..d7bae332
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0315.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0316.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0316.png
new file mode 100644
index 00000000..6077361c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0316.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0317.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0317.png
new file mode 100644
index 00000000..6558c786
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0317.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0318.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0318.png
new file mode 100644
index 00000000..ded5139c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0318.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0319.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0319.png
new file mode 100644
index 00000000..a2214e47
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0319.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0320.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0320.png
new file mode 100644
index 00000000..34414c69
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0320.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0321.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0321.png
new file mode 100644
index 00000000..e0f4647e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0321.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0322.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0322.png
new file mode 100644
index 00000000..d071144f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0322.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0323.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0323.png
new file mode 100644
index 00000000..ed0110ae
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0323.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0324.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0324.png
new file mode 100644
index 00000000..8ae97e32
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0324.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0325.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0325.png
new file mode 100644
index 00000000..77b4f930
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0325.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0326.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0326.png
new file mode 100644
index 00000000..dbf8c4d7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0326.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0327.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0327.png
new file mode 100644
index 00000000..64ba5e38
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0327.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0328.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0328.png
new file mode 100644
index 00000000..5dc24850
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0328.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0329.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0329.png
new file mode 100644
index 00000000..dd52f4f7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0329.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0330.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0330.png
new file mode 100644
index 00000000..68850b72
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0330.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0331.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0331.png
new file mode 100644
index 00000000..a3f07147
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0331.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0332.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0332.png
new file mode 100644
index 00000000..80eabcaf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0332.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0333.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0333.png
new file mode 100644
index 00000000..660a303c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0333.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0334.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0334.png
new file mode 100644
index 00000000..5bf54789
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0334.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0335.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0335.png
new file mode 100644
index 00000000..3991717e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0335.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0336.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0336.png
new file mode 100644
index 00000000..38dc15ac
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0336.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0337.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0337.png
new file mode 100644
index 00000000..d46ef1a3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0337.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0338.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0338.png
new file mode 100644
index 00000000..af5f21f1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0338.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0339.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0339.png
new file mode 100644
index 00000000..a8db3b29
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0339.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0340.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0340.png
new file mode 100644
index 00000000..e80a9873
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0340.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0341.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0341.png
new file mode 100644
index 00000000..fe83b78f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0341.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0342.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0342.png
new file mode 100644
index 00000000..38319a25
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0342.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0343.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0343.png
new file mode 100644
index 00000000..96d1352f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0343.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0344.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0344.png
new file mode 100644
index 00000000..8a49232f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0344.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0345.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0345.png
new file mode 100644
index 00000000..7815e341
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0345.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0346.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0346.png
new file mode 100644
index 00000000..6cbe1f41
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0346.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0347.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0347.png
new file mode 100644
index 00000000..96d1352f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0347.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0348.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0348.png
new file mode 100644
index 00000000..d1c634bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0348.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0349.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0349.png
new file mode 100644
index 00000000..953ce4c6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0349.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0350.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0350.png
new file mode 100644
index 00000000..f74a9a02
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0350.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0351.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0351.png
new file mode 100644
index 00000000..11f388f3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0351.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0352.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0352.png
new file mode 100644
index 00000000..9f5dadb5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0352.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0353.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0353.png
new file mode 100644
index 00000000..504eca24
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0353.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0354.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0354.png
new file mode 100644
index 00000000..4d5e4248
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0354.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0355.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0355.png
new file mode 100644
index 00000000..e07d4b42
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0355.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0356.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0356.png
new file mode 100644
index 00000000..e8568f04
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0356.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0357.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0357.png
new file mode 100644
index 00000000..e202f881
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0357.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0358.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0358.png
new file mode 100644
index 00000000..46ee0118
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0358.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0359.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0359.png
new file mode 100644
index 00000000..81d76dbc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0359.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0360.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0360.png
new file mode 100644
index 00000000..88ad1b11
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0360.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0361.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0361.png
new file mode 100644
index 00000000..14094475
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0361.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0362.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0362.png
new file mode 100644
index 00000000..b88a3858
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0362.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0363.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0363.png
new file mode 100644
index 00000000..4c4b26ea
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0363.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0364.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0364.png
new file mode 100644
index 00000000..912b0b6f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0364.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0365.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0365.png
new file mode 100644
index 00000000..80eabcaf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0365.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0366.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0366.png
new file mode 100644
index 00000000..7b79bc68
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0366.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0367.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0367.png
new file mode 100644
index 00000000..599cd9fa
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0367.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0368.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0368.png
new file mode 100644
index 00000000..9e7c525a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0368.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0369.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0369.png
new file mode 100644
index 00000000..fa6d307c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0369.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0370.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0370.png
new file mode 100644
index 00000000..e1881e83
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0370.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0371.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0371.png
new file mode 100644
index 00000000..77eb94d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0371.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0372.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0372.png
new file mode 100644
index 00000000..b6bc4262
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0372.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0373.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0373.png
new file mode 100644
index 00000000..a252d2e9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0373.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0374.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0374.png
new file mode 100644
index 00000000..5ba0a8c2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0374.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0375.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0375.png
new file mode 100644
index 00000000..5ec0af9d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0375.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0376.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0376.png
new file mode 100644
index 00000000..f06dd313
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0376.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0377.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0377.png
new file mode 100644
index 00000000..a0ae3004
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0377.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0378.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0378.png
new file mode 100644
index 00000000..47fa200c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0378.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0379.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0379.png
new file mode 100644
index 00000000..2a39c42a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0379.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0380.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0380.png
new file mode 100644
index 00000000..a79ad261
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0380.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0381.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0381.png
new file mode 100644
index 00000000..a26ee41e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0381.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0382.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0382.png
new file mode 100644
index 00000000..8f29fd37
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0382.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0383.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0383.png
new file mode 100644
index 00000000..db1fef7d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0383.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0384.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0384.png
new file mode 100644
index 00000000..50452527
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0384.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0385.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0385.png
new file mode 100644
index 00000000..509bad13
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0385.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0386.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0386.png
new file mode 100644
index 00000000..6bdfe33a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0386.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0387.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0387.png
new file mode 100644
index 00000000..dc1497f7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0387.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0388.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0388.png
new file mode 100644
index 00000000..0b506779
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0388.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0389.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0389.png
new file mode 100644
index 00000000..b459e38c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0389.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0390.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0390.png
new file mode 100644
index 00000000..b7fd1f1c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0390.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0391.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0391.png
new file mode 100644
index 00000000..76a15807
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0391.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0392.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0392.png
new file mode 100644
index 00000000..3ae68cab
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0392.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0393.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0393.png
new file mode 100644
index 00000000..500206c7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0393.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0394.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0394.png
new file mode 100644
index 00000000..c238b135
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0394.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0395.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0395.png
new file mode 100644
index 00000000..e38a06f9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0395.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0396.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0396.png
new file mode 100644
index 00000000..1042d403
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0396.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0397.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0397.png
new file mode 100644
index 00000000..cf1c9b49
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0397.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0398.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0398.png
new file mode 100644
index 00000000..fd0b5698
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0398.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0399.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0399.png
new file mode 100644
index 00000000..738d336f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0399.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0400.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0400.png
new file mode 100644
index 00000000..e9e92c85
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0400.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0401.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0401.png
new file mode 100644
index 00000000..21eff841
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0401.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0402.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0402.png
new file mode 100644
index 00000000..4498d2cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0402.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0403.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0403.png
new file mode 100644
index 00000000..9ef3326f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0403.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0404.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0404.png
new file mode 100644
index 00000000..de73fa4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0404.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0405.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0405.png
new file mode 100644
index 00000000..9456ce69
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0405.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0406.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0406.png
new file mode 100644
index 00000000..b6c1da18
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0406.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0407.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0407.png
new file mode 100644
index 00000000..71c90a6b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0407.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0408.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0408.png
new file mode 100644
index 00000000..3ae792f4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0408.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0409.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0409.png
new file mode 100644
index 00000000..b00b8ca1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0409.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0410.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0410.png
new file mode 100644
index 00000000..c8c9376c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0410.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0411.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0411.png
new file mode 100644
index 00000000..488a34cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0411.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0412.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0412.png
new file mode 100644
index 00000000..3e8fb086
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0412.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0413.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0413.png
new file mode 100644
index 00000000..df198e48
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0413.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0414.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0414.png
new file mode 100644
index 00000000..41dbb6d5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0414.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0415.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0415.png
new file mode 100644
index 00000000..8c3dc338
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0415.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0416.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0416.png
new file mode 100644
index 00000000..b9865280
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0416.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0417.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0417.png
new file mode 100644
index 00000000..aa285e8f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0417.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0418.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0418.png
new file mode 100644
index 00000000..533ecf24
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0418.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0419.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0419.png
new file mode 100644
index 00000000..fb26d312
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0419.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0420.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0420.png
new file mode 100644
index 00000000..570f6ec8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0420.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0421.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0421.png
new file mode 100644
index 00000000..19309d59
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0421.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0422.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0422.png
new file mode 100644
index 00000000..8ca17326
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0422.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0423.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0423.png
new file mode 100644
index 00000000..6d93a5f6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0423.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0424.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0424.png
new file mode 100644
index 00000000..2e92b1b3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0424.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0425.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0425.png
new file mode 100644
index 00000000..fee50608
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0425.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0426.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0426.png
new file mode 100644
index 00000000..7c4b8442
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0426.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0427.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0427.png
new file mode 100644
index 00000000..bfb3768d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0427.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0428.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0428.png
new file mode 100644
index 00000000..0dd50657
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0428.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0429.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0429.png
new file mode 100644
index 00000000..1462d6fb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0429.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0430.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0430.png
new file mode 100644
index 00000000..14bc0ee6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0430.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0431.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0431.png
new file mode 100644
index 00000000..d5916217
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0431.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0432.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0432.png
new file mode 100644
index 00000000..2657f81b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0432.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0433.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0433.png
new file mode 100644
index 00000000..e705a096
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0433.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0434.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0434.png
new file mode 100644
index 00000000..6f29f3ea
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0434.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0435.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0435.png
new file mode 100644
index 00000000..009d6d2f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0435.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0436.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0436.png
new file mode 100644
index 00000000..672d4011
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0436.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0437.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0437.png
new file mode 100644
index 00000000..006731e3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0437.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0438.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0438.png
new file mode 100644
index 00000000..76a15807
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0438.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0439.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0439.png
new file mode 100644
index 00000000..96336f11
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0439.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0440.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0440.png
new file mode 100644
index 00000000..8cc1f517
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0440.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0441.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0441.png
new file mode 100644
index 00000000..3783f7e3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0441.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0442.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0442.png
new file mode 100644
index 00000000..76f40547
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0442.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0443.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0443.png
new file mode 100644
index 00000000..7c75d73e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0443.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0444.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0444.png
new file mode 100644
index 00000000..09881f70
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0444.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0445.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0445.png
new file mode 100644
index 00000000..22c516ef
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0445.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0446.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0446.png
new file mode 100644
index 00000000..d03384c9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0446.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0447.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0447.png
new file mode 100644
index 00000000..68672af9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0447.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0448.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0448.png
new file mode 100644
index 00000000..0cac7cdc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0448.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0449.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0449.png
new file mode 100644
index 00000000..1550d000
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0449.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0450.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0450.png
new file mode 100644
index 00000000..04f67d9b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0450.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0451.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0451.png
new file mode 100644
index 00000000..abc2d702
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0451.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0452.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0452.png
new file mode 100644
index 00000000..89ef992a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0452.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0453.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0453.png
new file mode 100644
index 00000000..8890ddb6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0453.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0454.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0454.png
new file mode 100644
index 00000000..409878e9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0454.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0455.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0455.png
new file mode 100644
index 00000000..4d78f6d3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0455.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0456.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0456.png
new file mode 100644
index 00000000..751c6a2f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0456.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0457.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0457.png
new file mode 100644
index 00000000..13aea54b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0457.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0458.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0458.png
new file mode 100644
index 00000000..8f13d4d5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0458.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0459.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0459.png
new file mode 100644
index 00000000..c99abfc9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0459.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0460.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0460.png
new file mode 100644
index 00000000..ba3d9a9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0460.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0461.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0461.png
new file mode 100644
index 00000000..1ccdd21d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0461.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0462.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0462.png
new file mode 100644
index 00000000..ba3d9a9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0462.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0463.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0463.png
new file mode 100644
index 00000000..d5f84b02
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0463.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0464.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0464.png
new file mode 100644
index 00000000..ba3d9a9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0464.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0465.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0465.png
new file mode 100644
index 00000000..d4c9755b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0465.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0466.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0466.png
new file mode 100644
index 00000000..ba3d9a9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0466.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0467.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0467.png
new file mode 100644
index 00000000..45d4e8cc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0467.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0468.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0468.png
new file mode 100644
index 00000000..ba3d9a9f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0468.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0469.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0469.png
new file mode 100644
index 00000000..20a68fc7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0469.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0470.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0470.png
new file mode 100644
index 00000000..c8c483fd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0470.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0471.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0471.png
new file mode 100644
index 00000000..321f3b42
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0471.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0472.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0472.png
new file mode 100644
index 00000000..ac2b8035
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0472.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0473.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0473.png
new file mode 100644
index 00000000..00502327
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0473.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0474.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0474.png
new file mode 100644
index 00000000..9a75aa1c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0474.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0475.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0475.png
new file mode 100644
index 00000000..12aa8dba
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0475.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0476.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0476.png
new file mode 100644
index 00000000..230ec86b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0476.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0477.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0477.png
new file mode 100644
index 00000000..1bdd3ccf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0477.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0478.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0478.png
new file mode 100644
index 00000000..c6078c80
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0478.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0479.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0479.png
new file mode 100644
index 00000000..45770f56
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0479.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0480.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0480.png
new file mode 100644
index 00000000..af4e7d83
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0480.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0481.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0481.png
new file mode 100644
index 00000000..aac42d98
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0481.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0482.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0482.png
new file mode 100644
index 00000000..eea24cf3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0482.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0483.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0483.png
new file mode 100644
index 00000000..7af46b14
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0483.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0484.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0484.png
new file mode 100644
index 00000000..50950822
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0484.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0485.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0485.png
new file mode 100644
index 00000000..16b6aa8c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0485.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0486.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0486.png
new file mode 100644
index 00000000..8fe893f4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0486.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0487.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0487.png
new file mode 100644
index 00000000..8547a4eb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0487.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0488.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0488.png
new file mode 100644
index 00000000..de3d57e7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0488.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0489.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0489.png
new file mode 100644
index 00000000..678d0055
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0489.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0490.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0490.png
new file mode 100644
index 00000000..e0264cda
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0490.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0491.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0491.png
new file mode 100644
index 00000000..b7f8f940
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0491.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0492.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0492.png
new file mode 100644
index 00000000..9af01ad4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0492.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0493.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0493.png
new file mode 100644
index 00000000..ae5f966a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0493.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0494.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0494.png
new file mode 100644
index 00000000..261df106
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0494.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0495.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0495.png
new file mode 100644
index 00000000..c4ccd03f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0495.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0496.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0496.png
new file mode 100644
index 00000000..4de5f923
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0496.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0497.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0497.png
new file mode 100644
index 00000000..b8ee5d99
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0497.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0498.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0498.png
new file mode 100644
index 00000000..344d6acd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0498.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0499.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0499.png
new file mode 100644
index 00000000..612eaa1f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0499.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0500.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0500.png
new file mode 100644
index 00000000..078b47b7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0500.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0501.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0501.png
new file mode 100644
index 00000000..10e2b681
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0501.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0502.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0502.png
new file mode 100644
index 00000000..89279a69
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0502.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0503.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0503.png
new file mode 100644
index 00000000..f7c8ce52
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0503.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0504.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0504.png
new file mode 100644
index 00000000..315ff417
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0504.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0505.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0505.png
new file mode 100644
index 00000000..6f142da8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0505.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0506.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0506.png
new file mode 100644
index 00000000..1ac8f686
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0506.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0507.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0507.png
new file mode 100644
index 00000000..ac6fdadd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0507.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0508.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0508.png
new file mode 100644
index 00000000..01158100
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0508.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0509.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0509.png
new file mode 100644
index 00000000..a8db3b29
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0509.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0510.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0510.png
new file mode 100644
index 00000000..81919210
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0510.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0511.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0511.png
new file mode 100644
index 00000000..0c1d0bab
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0511.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0512.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0512.png
new file mode 100644
index 00000000..a9c7d93a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0512.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0513.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0513.png
new file mode 100644
index 00000000..a6e215c2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0513.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0514.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0514.png
new file mode 100644
index 00000000..9c6b0a90
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0514.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0515.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0515.png
new file mode 100644
index 00000000..56e6b6a6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0515.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0516.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0516.png
new file mode 100644
index 00000000..efa3dfad
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0516.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0517.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0517.png
new file mode 100644
index 00000000..3f929ccd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0517.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0518.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0518.png
new file mode 100644
index 00000000..9ef7f9e8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0518.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0519.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0519.png
new file mode 100644
index 00000000..1d0bc6d8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0519.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0520.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0520.png
new file mode 100644
index 00000000..6287c9e5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0520.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0521.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0521.png
new file mode 100644
index 00000000..d37674a2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0521.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0522.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0522.png
new file mode 100644
index 00000000..f4e1b829
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0522.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0523.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0523.png
new file mode 100644
index 00000000..3b8c3b55
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0523.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0524.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0524.png
new file mode 100644
index 00000000..cde68dde
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0524.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0525.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0525.png
new file mode 100644
index 00000000..69d5377d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0525.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0526.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0526.png
new file mode 100644
index 00000000..fae3b210
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0526.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0527.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0527.png
new file mode 100644
index 00000000..3548874c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0527.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0528.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0528.png
new file mode 100644
index 00000000..b0500085
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0528.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0529.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0529.png
new file mode 100644
index 00000000..c2976867
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0529.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0530.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0530.png
new file mode 100644
index 00000000..0a5988ff
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0530.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0531.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0531.png
new file mode 100644
index 00000000..87b08b30
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0531.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0532.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0532.png
new file mode 100644
index 00000000..de1258f6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0532.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0533.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0533.png
new file mode 100644
index 00000000..ab765345
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0533.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0534.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0534.png
new file mode 100644
index 00000000..970b55b6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0534.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0535.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0535.png
new file mode 100644
index 00000000..728344fa
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0535.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0536.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0536.png
new file mode 100644
index 00000000..82390404
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0536.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0537.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0537.png
new file mode 100644
index 00000000..cc9a811a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0537.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0538.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0538.png
new file mode 100644
index 00000000..6301cff1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0538.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0539.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0539.png
new file mode 100644
index 00000000..a5fc1085
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0539.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0540.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0540.png
new file mode 100644
index 00000000..b14dff21
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0540.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0541.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0541.png
new file mode 100644
index 00000000..29ea8ff6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0541.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0542.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0542.png
new file mode 100644
index 00000000..611cd474
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0542.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0543.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0543.png
new file mode 100644
index 00000000..85d214cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0543.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0544.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0544.png
new file mode 100644
index 00000000..b499bc5f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0544.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0545.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0545.png
new file mode 100644
index 00000000..b3eab6f1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0545.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0546.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0546.png
new file mode 100644
index 00000000..6d62553a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0546.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0547.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0547.png
new file mode 100644
index 00000000..1f9053fe
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0547.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0548.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0548.png
new file mode 100644
index 00000000..8f27a4a8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0548.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0549.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0549.png
new file mode 100644
index 00000000..1a1cf755
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0549.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0550.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0550.png
new file mode 100644
index 00000000..97a78eb7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0550.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0551.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0551.png
new file mode 100644
index 00000000..2244f795
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0551.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0552.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0552.png
new file mode 100644
index 00000000..3de6b656
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0552.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0553.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0553.png
new file mode 100644
index 00000000..bf44b573
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0553.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0554.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0554.png
new file mode 100644
index 00000000..01279021
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0554.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0555.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0555.png
new file mode 100644
index 00000000..f889e1b1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0555.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0556.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0556.png
new file mode 100644
index 00000000..e3e87be4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0556.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0557.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0557.png
new file mode 100644
index 00000000..f334e389
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0557.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0558.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0558.png
new file mode 100644
index 00000000..7b667ed8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0558.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0559.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0559.png
new file mode 100644
index 00000000..3bd3a36d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0559.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0560.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0560.png
new file mode 100644
index 00000000..8bba31aa
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0560.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0561.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0561.png
new file mode 100644
index 00000000..86847ebd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0561.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0562.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0562.png
new file mode 100644
index 00000000..3ae62a77
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0562.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0563.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0563.png
new file mode 100644
index 00000000..19ddd176
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0563.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0564.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0564.png
new file mode 100644
index 00000000..582c3969
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0564.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0565.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0565.png
new file mode 100644
index 00000000..9cc46dd7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0565.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0566.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0566.png
new file mode 100644
index 00000000..a0e3325e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0566.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0567.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0567.png
new file mode 100644
index 00000000..17785e88
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0567.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0568.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0568.png
new file mode 100644
index 00000000..9554b503
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0568.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0569.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0569.png
new file mode 100644
index 00000000..cd797a34
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0569.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0570.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0570.png
new file mode 100644
index 00000000..5d2d61df
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0570.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0571.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0571.png
new file mode 100644
index 00000000..7c34235e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0571.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0572.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0572.png
new file mode 100644
index 00000000..6c81c6ef
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0572.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0573.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0573.png
new file mode 100644
index 00000000..da201c93
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0573.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0574.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0574.png
new file mode 100644
index 00000000..d2bf2041
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0574.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0575.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0575.png
new file mode 100644
index 00000000..65ce6093
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0575.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0576.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0576.png
new file mode 100644
index 00000000..0ec313f3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0576.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0577.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0577.png
new file mode 100644
index 00000000..68c2f983
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0577.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0578.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0578.png
new file mode 100644
index 00000000..a5e06052
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0578.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0579.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0579.png
new file mode 100644
index 00000000..a6576cda
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0579.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0580.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0580.png
new file mode 100644
index 00000000..3d11d414
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0580.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0581.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0581.png
new file mode 100644
index 00000000..bcfa0b6f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0581.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0582.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0582.png
new file mode 100644
index 00000000..ff370c91
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0582.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0583.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0583.png
new file mode 100644
index 00000000..8aef5d3a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0583.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0584.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0584.png
new file mode 100644
index 00000000..e778831f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0584.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0585.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0585.png
new file mode 100644
index 00000000..66c755d0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0585.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0586.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0586.png
new file mode 100644
index 00000000..3621bb41
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0586.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0587.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0587.png
new file mode 100644
index 00000000..2eaaa3ae
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0587.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0588.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0588.png
new file mode 100644
index 00000000..9c0fff7f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0588.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0589.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0589.png
new file mode 100644
index 00000000..f8612d5a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0589.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0590.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0590.png
new file mode 100644
index 00000000..1e0e2dc4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0590.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0591.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0591.png
new file mode 100644
index 00000000..b88c811a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0591.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0592.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0592.png
new file mode 100644
index 00000000..95435efc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0592.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0593.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0593.png
new file mode 100644
index 00000000..d133d3e2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0593.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0594.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0594.png
new file mode 100644
index 00000000..40a06887
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0594.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0595.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0595.png
new file mode 100644
index 00000000..cddac939
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0595.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0596.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0596.png
new file mode 100644
index 00000000..20993ea2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0596.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0597.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0597.png
new file mode 100644
index 00000000..2da15fcf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0597.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0598.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0598.png
new file mode 100644
index 00000000..b5f12f5f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0598.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0599.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0599.png
new file mode 100644
index 00000000..a51753cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0599.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0600.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0600.png
new file mode 100644
index 00000000..e8d48499
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0600.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0601.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0601.png
new file mode 100644
index 00000000..c23a0d49
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0601.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0602.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0602.png
new file mode 100644
index 00000000..e38150d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0602.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0603.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0603.png
new file mode 100644
index 00000000..db93ac89
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0603.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0604.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0604.png
new file mode 100644
index 00000000..12a1e506
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0604.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0605.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0605.png
new file mode 100644
index 00000000..636b43d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0605.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0606.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0606.png
new file mode 100644
index 00000000..ae2584a5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0606.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0607.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0607.png
new file mode 100644
index 00000000..1cb8ff0c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0607.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0608.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0608.png
new file mode 100644
index 00000000..ec7841f3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0608.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0609.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0609.png
new file mode 100644
index 00000000..953dd433
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0609.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0610.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0610.png
new file mode 100644
index 00000000..84867637
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0610.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0611.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0611.png
new file mode 100644
index 00000000..03428b31
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0611.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0612.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0612.png
new file mode 100644
index 00000000..da2831d0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0612.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0613.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0613.png
new file mode 100644
index 00000000..a4702bf7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0613.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0614.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0614.png
new file mode 100644
index 00000000..e7ed5db1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0614.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0615.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0615.png
new file mode 100644
index 00000000..a36ec679
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0615.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0616.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0616.png
new file mode 100644
index 00000000..818f721f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0616.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0617.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0617.png
new file mode 100644
index 00000000..2ed1120a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0617.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0618.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0618.png
new file mode 100644
index 00000000..94a06a4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0618.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0619.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0619.png
new file mode 100644
index 00000000..aa9ec5dc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0619.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0620.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0620.png
new file mode 100644
index 00000000..0bea4d69
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0620.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0621.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0621.png
new file mode 100644
index 00000000..3cadf7a9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0621.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0622.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0622.png
new file mode 100644
index 00000000..b233619d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0622.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0623.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0623.png
new file mode 100644
index 00000000..781e4bc5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0623.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0624.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0624.png
new file mode 100644
index 00000000..4ef53ef0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0624.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0625.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0625.png
new file mode 100644
index 00000000..fc3b04af
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0625.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0626.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0626.png
new file mode 100644
index 00000000..de63315b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0626.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0627.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0627.png
new file mode 100644
index 00000000..7f50222e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0627.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0628.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0628.png
new file mode 100644
index 00000000..e67c6b46
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0628.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0629.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0629.png
new file mode 100644
index 00000000..49605c31
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0629.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0630.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0630.png
new file mode 100644
index 00000000..6f9f2c36
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0630.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0631.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0631.png
new file mode 100644
index 00000000..de7ca1f7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0631.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0632.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0632.png
new file mode 100644
index 00000000..828b604b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0632.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0633.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0633.png
new file mode 100644
index 00000000..507a5acd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0633.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0634.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0634.png
new file mode 100644
index 00000000..31ce4272
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0634.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0635.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0635.png
new file mode 100644
index 00000000..c230619e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0635.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0636.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0636.png
new file mode 100644
index 00000000..d17ea2bd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0636.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0637.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0637.png
new file mode 100644
index 00000000..4027d2bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0637.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0638.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0638.png
new file mode 100644
index 00000000..bc5513a3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0638.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0639.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0639.png
new file mode 100644
index 00000000..f357241f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0639.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0640.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0640.png
new file mode 100644
index 00000000..171466d3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0640.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0641.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0641.png
new file mode 100644
index 00000000..0b919ddb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0641.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0642.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0642.png
new file mode 100644
index 00000000..2d0b726c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0642.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0643.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0643.png
new file mode 100644
index 00000000..94a4dc90
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0643.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0644.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0644.png
new file mode 100644
index 00000000..48467360
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0644.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0645.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0645.png
new file mode 100644
index 00000000..d424c374
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0645.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0646.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0646.png
new file mode 100644
index 00000000..1cfa1e65
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0646.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0647.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0647.png
new file mode 100644
index 00000000..559208ce
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0647.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0648.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0648.png
new file mode 100644
index 00000000..b5f4b6fb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0648.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0649.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0649.png
new file mode 100644
index 00000000..a15f6436
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0649.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0650.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0650.png
new file mode 100644
index 00000000..04a52f3b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0650.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0651.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0651.png
new file mode 100644
index 00000000..337ef24b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0651.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0652.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0652.png
new file mode 100644
index 00000000..642ff73c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0652.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0653.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0653.png
new file mode 100644
index 00000000..7e547991
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0653.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0654.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0654.png
new file mode 100644
index 00000000..5d8cfd6e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0654.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0655.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0655.png
new file mode 100644
index 00000000..11970684
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0655.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0656.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0656.png
new file mode 100644
index 00000000..77321df5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0656.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0657.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0657.png
new file mode 100644
index 00000000..a6097a75
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0657.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0658.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0658.png
new file mode 100644
index 00000000..c75a1fbc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0658.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0659.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0659.png
new file mode 100644
index 00000000..f0de9999
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0659.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0660.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0660.png
new file mode 100644
index 00000000..66e43498
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0660.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0661.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0661.png
new file mode 100644
index 00000000..e007fff4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0661.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0662.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0662.png
new file mode 100644
index 00000000..97305ffc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0662.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0663.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0663.png
new file mode 100644
index 00000000..8579654f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0663.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0664.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0664.png
new file mode 100644
index 00000000..d7cf937c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0664.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0665.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0665.png
new file mode 100644
index 00000000..7595783e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0665.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0666.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0666.png
new file mode 100644
index 00000000..04738457
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0666.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0667.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0667.png
new file mode 100644
index 00000000..d2aa61dd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0667.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0668.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0668.png
new file mode 100644
index 00000000..7b991efb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0668.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0669.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0669.png
new file mode 100644
index 00000000..e0bfeac9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0669.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0670.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0670.png
new file mode 100644
index 00000000..6ce35894
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0670.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0671.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0671.png
new file mode 100644
index 00000000..efbf80a9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0671.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0672.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0672.png
new file mode 100644
index 00000000..e3e050bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0672.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0673.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0673.png
new file mode 100644
index 00000000..5add6c15
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0673.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0674.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0674.png
new file mode 100644
index 00000000..1f7694c4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0674.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0675.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0675.png
new file mode 100644
index 00000000..09cbaffd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0675.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0676.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0676.png
new file mode 100644
index 00000000..44bce1e3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0676.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0677.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0677.png
new file mode 100644
index 00000000..5561cb07
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0677.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0678.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0678.png
new file mode 100644
index 00000000..4866476f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0678.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0679.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0679.png
new file mode 100644
index 00000000..af35d422
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0679.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0680.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0680.png
new file mode 100644
index 00000000..8b0f05db
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0680.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0681.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0681.png
new file mode 100644
index 00000000..a664d658
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0681.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0682.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0682.png
new file mode 100644
index 00000000..ac7fcf3e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0682.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0683.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0683.png
new file mode 100644
index 00000000..078c2575
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0683.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0684.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0684.png
new file mode 100644
index 00000000..4431e9ce
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0684.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0685.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0685.png
new file mode 100644
index 00000000..142c1b32
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0685.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0686.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0686.png
new file mode 100644
index 00000000..c0e66430
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0686.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0687.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0687.png
new file mode 100644
index 00000000..da866538
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0687.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0688.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0688.png
new file mode 100644
index 00000000..0307fcb0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0688.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0689.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0689.png
new file mode 100644
index 00000000..a4f1b498
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0689.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0690.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0690.png
new file mode 100644
index 00000000..9aade2d6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0690.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0691.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0691.png
new file mode 100644
index 00000000..6096e67a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0691.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0692.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0692.png
new file mode 100644
index 00000000..4cdca32d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0692.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0693.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0693.png
new file mode 100644
index 00000000..64a2973a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0693.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0694.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0694.png
new file mode 100644
index 00000000..6150aaf3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0694.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0695.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0695.png
new file mode 100644
index 00000000..1188ab47
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0695.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0696.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0696.png
new file mode 100644
index 00000000..b46fa7bf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0696.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0697.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0697.png
new file mode 100644
index 00000000..1ae17383
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0697.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0698.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0698.png
new file mode 100644
index 00000000..edd8659a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0698.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0699.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0699.png
new file mode 100644
index 00000000..d3c53655
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0699.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0700.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0700.png
new file mode 100644
index 00000000..0c19d887
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0700.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0701.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0701.png
new file mode 100644
index 00000000..62874e25
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0701.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0702.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0702.png
new file mode 100644
index 00000000..520f4bfa
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0702.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0703.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0703.png
new file mode 100644
index 00000000..473b2aa4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0703.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0704.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0704.png
new file mode 100644
index 00000000..bee03086
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0704.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0705.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0705.png
new file mode 100644
index 00000000..73f29be2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0705.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0706.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0706.png
new file mode 100644
index 00000000..b5c99e28
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0706.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0707.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0707.png
new file mode 100644
index 00000000..4c6b8705
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0707.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0708.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0708.png
new file mode 100644
index 00000000..a38bd639
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0708.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0709.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0709.png
new file mode 100644
index 00000000..defab4e9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0709.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0710.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0710.png
new file mode 100644
index 00000000..5d5f9d86
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0710.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0711.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0711.png
new file mode 100644
index 00000000..2c707b5f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0711.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0712.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0712.png
new file mode 100644
index 00000000..83446c7d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0712.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0713.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0713.png
new file mode 100644
index 00000000..4412e597
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0713.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0714.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0714.png
new file mode 100644
index 00000000..cfc574e1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0714.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0715.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0715.png
new file mode 100644
index 00000000..84b5ec22
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0715.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0716.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0716.png
new file mode 100644
index 00000000..a308a445
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0716.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0717.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0717.png
new file mode 100644
index 00000000..66916573
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0717.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0718.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0718.png
new file mode 100644
index 00000000..97dcce9b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0718.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0719.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0719.png
new file mode 100644
index 00000000..ce6b41c6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0719.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0720.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0720.png
new file mode 100644
index 00000000..06b5337d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0720.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0721.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0721.png
new file mode 100644
index 00000000..8339e11f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0721.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0722.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0722.png
new file mode 100644
index 00000000..de990405
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0722.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0723.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0723.png
new file mode 100644
index 00000000..639c2d23
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0723.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0724.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0724.png
new file mode 100644
index 00000000..991bef25
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0724.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0725.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0725.png
new file mode 100644
index 00000000..e7d6c7a0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0725.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0726.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0726.png
new file mode 100644
index 00000000..34ed222c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0726.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0727.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0727.png
new file mode 100644
index 00000000..7df133f6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0727.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0728.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0728.png
new file mode 100644
index 00000000..dbb33c6a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0728.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0729.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0729.png
new file mode 100644
index 00000000..dc538566
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0729.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0730.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0730.png
new file mode 100644
index 00000000..5faca4a7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0730.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0731.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0731.png
new file mode 100644
index 00000000..7d06d636
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0731.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0732.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0732.png
new file mode 100644
index 00000000..142312a6
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0732.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0733.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0733.png
new file mode 100644
index 00000000..7d0a5e41
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0733.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0734.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0734.png
new file mode 100644
index 00000000..939ff0bd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0734.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0735.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0735.png
new file mode 100644
index 00000000..80984c48
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0735.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0736.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0736.png
new file mode 100644
index 00000000..14f2f507
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0736.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0737.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0737.png
new file mode 100644
index 00000000..699f8491
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0737.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0738.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0738.png
new file mode 100644
index 00000000..271d6a91
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0738.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0739.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0739.png
new file mode 100644
index 00000000..5ac3b3a7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0739.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0740.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0740.png
new file mode 100644
index 00000000..8546d9c0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0740.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0741.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0741.png
new file mode 100644
index 00000000..fd788d2e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0741.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0742.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0742.png
new file mode 100644
index 00000000..a80468bc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0742.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0743.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0743.png
new file mode 100644
index 00000000..bdcb0fa5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0743.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0744.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0744.png
new file mode 100644
index 00000000..45c0db4e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0744.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0745.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0745.png
new file mode 100644
index 00000000..813af3bb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0745.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0746.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0746.png
new file mode 100644
index 00000000..ad6c6e2a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0746.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0747.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0747.png
new file mode 100644
index 00000000..e0b90465
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0747.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0748.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0748.png
new file mode 100644
index 00000000..2a07dd34
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0748.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0749.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0749.png
new file mode 100644
index 00000000..467755ed
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0749.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0750.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0750.png
new file mode 100644
index 00000000..dc393e6c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0750.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0751.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0751.png
new file mode 100644
index 00000000..4ab1236a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0751.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0752.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0752.png
new file mode 100644
index 00000000..e19d869f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0752.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0753.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0753.png
new file mode 100644
index 00000000..f27bbc4f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0753.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0754.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0754.png
new file mode 100644
index 00000000..ac8daaa7
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0754.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0755.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0755.png
new file mode 100644
index 00000000..aa11743f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0755.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0756.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0756.png
new file mode 100644
index 00000000..ab8b50cb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0756.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0757.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0757.png
new file mode 100644
index 00000000..babef621
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0757.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0758.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0758.png
new file mode 100644
index 00000000..05028307
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0758.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0759.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0759.png
new file mode 100644
index 00000000..b1238e7d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0759.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0760.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0760.png
new file mode 100644
index 00000000..3afef611
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0760.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0761.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0761.png
new file mode 100644
index 00000000..b5f4b8d8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0761.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0762.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0762.png
new file mode 100644
index 00000000..1998db6c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0762.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0763.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0763.png
new file mode 100644
index 00000000..298ecdaf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0763.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0764.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0764.png
new file mode 100644
index 00000000..db954c2f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0764.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0765.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0765.png
new file mode 100644
index 00000000..47b1bbed
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0765.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0766.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0766.png
new file mode 100644
index 00000000..0c8ef645
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0766.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0767.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0767.png
new file mode 100644
index 00000000..a95e28fd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0767.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0768.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0768.png
new file mode 100644
index 00000000..de9360b1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0768.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0769.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0769.png
new file mode 100644
index 00000000..5c60c6e5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0769.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0770.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0770.png
new file mode 100644
index 00000000..0cd9bf08
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0770.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0771.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0771.png
new file mode 100644
index 00000000..0539edf2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0771.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0772.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0772.png
new file mode 100644
index 00000000..17818542
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0772.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0773.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0773.png
new file mode 100644
index 00000000..ec16ed6c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0773.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0774.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0774.png
new file mode 100644
index 00000000..26f9676f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0774.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0775.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0775.png
new file mode 100644
index 00000000..b63356fc
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0775.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0776.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0776.png
new file mode 100644
index 00000000..231d0900
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0776.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0777.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0777.png
new file mode 100644
index 00000000..820bfa62
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0777.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0778.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0778.png
new file mode 100644
index 00000000..a7f5ca9c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0778.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0779.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0779.png
new file mode 100644
index 00000000..fe8085cb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0779.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0780.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0780.png
new file mode 100644
index 00000000..0b4ada3b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0780.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0781.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0781.png
new file mode 100644
index 00000000..68f2054c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0781.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0782.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0782.png
new file mode 100644
index 00000000..caf13793
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0782.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0783.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0783.png
new file mode 100644
index 00000000..e36c4f6f
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0783.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0784.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0784.png
new file mode 100644
index 00000000..50031155
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0784.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0785.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0785.png
new file mode 100644
index 00000000..0878deb5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0785.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0786.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0786.png
new file mode 100644
index 00000000..6b0075d4
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0786.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0787.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0787.png
new file mode 100644
index 00000000..9a8253d1
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0787.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0788.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0788.png
new file mode 100644
index 00000000..b05334cd
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0788.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0789.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0789.png
new file mode 100644
index 00000000..9f2eb1e2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0789.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0790.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0790.png
new file mode 100644
index 00000000..a11c5c69
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0790.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0791.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0791.png
new file mode 100644
index 00000000..dcfcbbc9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0791.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0792.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0792.png
new file mode 100644
index 00000000..10f55865
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0792.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0793.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0793.png
new file mode 100644
index 00000000..bebc2199
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0793.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0794.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0794.png
new file mode 100644
index 00000000..d0cbd96c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0794.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0795.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0795.png
new file mode 100644
index 00000000..82e77fac
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0795.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0796.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0796.png
new file mode 100644
index 00000000..593b5f4b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0796.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0797.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0797.png
new file mode 100644
index 00000000..a65824d5
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0797.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0798.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0798.png
new file mode 100644
index 00000000..1726089c
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0798.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0799.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0799.png
new file mode 100644
index 00000000..6e78f72b
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0799.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0800.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0800.png
new file mode 100644
index 00000000..9a8c192d
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0800.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0801.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0801.png
new file mode 100644
index 00000000..a37c24a0
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0801.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0802.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0802.png
new file mode 100644
index 00000000..8bddc981
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0802.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0803.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0803.png
new file mode 100644
index 00000000..57ec7a57
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0803.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0804.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0804.png
new file mode 100644
index 00000000..63057449
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0804.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0805.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0805.png
new file mode 100644
index 00000000..2a255e80
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0805.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0806.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0806.png
new file mode 100644
index 00000000..fd3038a2
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0806.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0807.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0807.png
new file mode 100644
index 00000000..e2c23045
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0807.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0808.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0808.png
new file mode 100644
index 00000000..60f8badf
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0808.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0809.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0809.png
new file mode 100644
index 00000000..737730f8
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0809.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0810.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0810.png
new file mode 100644
index 00000000..c664056e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0810.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0811.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0811.png
new file mode 100644
index 00000000..7661f2ef
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0811.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0812.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0812.png
new file mode 100644
index 00000000..db19dfae
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0812.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0813.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0813.png
new file mode 100644
index 00000000..298ffc4a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0813.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0814.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0814.png
new file mode 100644
index 00000000..67a0bb1e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0814.png differ
diff --git a/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0815.png b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0815.png
new file mode 100644
index 00000000..324abd15
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/kenneynl-input-pixel16×/tile_0815.png differ
diff --git a/wiki-rtd/docs/wiki_icons/playstation/playstation-circle.png b/wiki-rtd/docs/wiki_icons/playstation/playstation-circle.png
new file mode 100644
index 00000000..aeb53d0e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/playstation/playstation-circle.png differ
diff --git a/wiki-rtd/docs/wiki_icons/playstation/playstation-cross.png b/wiki-rtd/docs/wiki_icons/playstation/playstation-cross.png
new file mode 100644
index 00000000..bb42db28
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/playstation/playstation-cross.png differ
diff --git a/wiki-rtd/docs/wiki_icons/playstation/playstation-square.png b/wiki-rtd/docs/wiki_icons/playstation/playstation-square.png
new file mode 100644
index 00000000..a968455a
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/playstation/playstation-square.png differ
diff --git a/wiki-rtd/docs/wiki_icons/playstation/playstation-triangle.png b/wiki-rtd/docs/wiki_icons/playstation/playstation-triangle.png
new file mode 100644
index 00000000..67f1d491
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/playstation/playstation-triangle.png differ
diff --git a/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_16x16.png b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_16x16.png
new file mode 100644
index 00000000..244350d9
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_16x16.png differ
diff --git a/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_180x180.png b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_180x180.png
new file mode 100644
index 00000000..bab446bb
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_180x180.png differ
diff --git a/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_192x192.png b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_192x192.png
new file mode 100644
index 00000000..d55c7e67
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_192x192.png differ
diff --git a/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_32x32.png b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_32x32.png
new file mode 100644
index 00000000..ee50205e
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_32x32.png differ
diff --git a/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_512x512.png b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_512x512.png
new file mode 100644
index 00000000..f06467a3
Binary files /dev/null and b/wiki-rtd/docs/wiki_icons/retrodeck/rd_icon_circle_512x512.png differ
diff --git a/wiki-rtd/docs/wiki_images/concepts/GODOT_configurator.png b/wiki-rtd/docs/wiki_images/concepts/GODOT_configurator.png
new file mode 100644
index 00000000..06087d0a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/concepts/GODOT_configurator.png differ
diff --git a/wiki-rtd/docs/wiki_images/concepts/rekku.png b/wiki-rtd/docs/wiki_images/concepts/rekku.png
new file mode 100644
index 00000000..33f0d672
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/concepts/rekku.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/8bitdo-pro2.png b/wiki-rtd/docs/wiki_images/controllers/8bitdo-pro2.png
new file mode 100644
index 00000000..0360cd18
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/8bitdo-pro2.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/arcade-ps3.png b/wiki-rtd/docs/wiki_images/controllers/arcade-ps3.png
new file mode 100644
index 00000000..482664c6
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/arcade-ps3.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/arcade-set.png b/wiki-rtd/docs/wiki_images/controllers/arcade-set.png
new file mode 100644
index 00000000..460816a4
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/arcade-set.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/arcade-trackball.png b/wiki-rtd/docs/wiki_images/controllers/arcade-trackball.png
new file mode 100644
index 00000000..9ba4721c
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/arcade-trackball.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/arcade-x-arcade.png b/wiki-rtd/docs/wiki_images/controllers/arcade-x-arcade.png
new file mode 100644
index 00000000..7830b238
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/arcade-x-arcade.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/disney-infinity-base.png b/wiki-rtd/docs/wiki_images/controllers/disney-infinity-base.png
new file mode 100644
index 00000000..540300dc
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/disney-infinity-base.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/dj-hero-turntable.png b/wiki-rtd/docs/wiki_images/controllers/dj-hero-turntable.png
new file mode 100644
index 00000000..f243cded
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/dj-hero-turntable.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/dk-bongos.png b/wiki-rtd/docs/wiki_images/controllers/dk-bongos.png
new file mode 100644
index 00000000..2ca7203a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/dk-bongos.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/flight-cockpit.png b/wiki-rtd/docs/wiki_images/controllers/flight-cockpit.png
new file mode 100644
index 00000000..19095562
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/flight-cockpit.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/flight-pedals.png b/wiki-rtd/docs/wiki_images/controllers/flight-pedals.png
new file mode 100644
index 00000000..270eb6f4
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/flight-pedals.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/flightstick-arcade.png b/wiki-rtd/docs/wiki_images/controllers/flightstick-arcade.png
new file mode 100644
index 00000000..128b1b71
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/flightstick-arcade.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/flightstick-pro.png b/wiki-rtd/docs/wiki_images/controllers/flightstick-pro.png
new file mode 100644
index 00000000..6b586e4d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/flightstick-pro.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/gamecube-standard.png b/wiki-rtd/docs/wiki_images/controllers/gamecube-standard.png
new file mode 100644
index 00000000..2243e998
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/gamecube-standard.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/gamecube-wavebird.png b/wiki-rtd/docs/wiki_images/controllers/gamecube-wavebird.png
new file mode 100644
index 00000000..3f02f36d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/gamecube-wavebird.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/guitar-hero-guitars.png b/wiki-rtd/docs/wiki_images/controllers/guitar-hero-guitars.png
new file mode 100644
index 00000000..d7c243e5
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/guitar-hero-guitars.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/joy-con.png b/wiki-rtd/docs/wiki_images/controllers/joy-con.png
new file mode 100644
index 00000000..3da60e9d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/joy-con.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lego-toypad.png b/wiki-rtd/docs/wiki_images/controllers/lego-toypad.png
new file mode 100644
index 00000000..537dfec9
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lego-toypad.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-aelightgun.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-aelightgun.png
new file mode 100644
index 00000000..fbeb20a2
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-aelightgun.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-aimtrak.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-aimtrak.png
new file mode 100644
index 00000000..14aa454e
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-aimtrak.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon1.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon1.png
new file mode 100644
index 00000000..8a905bbd
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon1.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon2.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon2.png
new file mode 100644
index 00000000..6b2d736d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon2.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon3.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon3.png
new file mode 100644
index 00000000..b042f587
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-guncon3.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-sinden.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-sinden.png
new file mode 100644
index 00000000..ac9a4c0f
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-sinden.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/lightgun-wiigun.png b/wiki-rtd/docs/wiki_images/controllers/lightgun-wiigun.png
new file mode 100644
index 00000000..a7e29658
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/lightgun-wiigun.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/portal-of-power.png b/wiki-rtd/docs/wiki_images/controllers/portal-of-power.png
new file mode 100644
index 00000000..60c8b514
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/portal-of-power.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/ps3-dualshock3.png b/wiki-rtd/docs/wiki_images/controllers/ps3-dualshock3.png
new file mode 100644
index 00000000..4882fa5a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/ps3-dualshock3.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/ps4-dualshock4.png b/wiki-rtd/docs/wiki_images/controllers/ps4-dualshock4.png
new file mode 100644
index 00000000..c4906f04
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/ps4-dualshock4.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/ps5-dualsense.png b/wiki-rtd/docs/wiki_images/controllers/ps5-dualsense.png
new file mode 100644
index 00000000..df57b5cf
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/ps5-dualsense.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/racing-kit.png b/wiki-rtd/docs/wiki_images/controllers/racing-kit.png
new file mode 100644
index 00000000..e858f115
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/racing-kit.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/rockband-drums.png b/wiki-rtd/docs/wiki_images/controllers/rockband-drums.png
new file mode 100644
index 00000000..887cf16b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/rockband-drums.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/steam-controller-gordon.png b/wiki-rtd/docs/wiki_images/controllers/steam-controller-gordon.png
new file mode 100644
index 00000000..b3ac61d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/steam-controller-gordon.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/steel-battalion.png b/wiki-rtd/docs/wiki_images/controllers/steel-battalion.png
new file mode 100644
index 00000000..3001a8d4
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/steel-battalion.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/switch-pro.png b/wiki-rtd/docs/wiki_images/controllers/switch-pro.png
new file mode 100644
index 00000000..3d8ba2a5
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/switch-pro.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/taiko-drum-bachi.png b/wiki-rtd/docs/wiki_images/controllers/taiko-drum-bachi.png
new file mode 100644
index 00000000..c453f4cb
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/taiko-drum-bachi.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/traptanium-portal.png b/wiki-rtd/docs/wiki_images/controllers/traptanium-portal.png
new file mode 100644
index 00000000..6aeed768
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/traptanium-portal.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/wii-mote.png b/wiki-rtd/docs/wiki_images/controllers/wii-mote.png
new file mode 100644
index 00000000..17c926cb
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/wii-mote.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/wii-u-gamepad.png b/wiki-rtd/docs/wiki_images/controllers/wii-u-gamepad.png
new file mode 100644
index 00000000..25cdaf13
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/wii-u-gamepad.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/wiiu-gcpad-adapter.png b/wiki-rtd/docs/wiki_images/controllers/wiiu-gcpad-adapter.png
new file mode 100644
index 00000000..75d5c1e0
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/wiiu-gcpad-adapter.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/xbox-360.png b/wiki-rtd/docs/wiki_images/controllers/xbox-360.png
new file mode 100644
index 00000000..e3a1cb76
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/xbox-360.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/xbox-adaptive.png b/wiki-rtd/docs/wiki_images/controllers/xbox-adaptive.png
new file mode 100644
index 00000000..98668d8b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/xbox-adaptive.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/xbox-wireless.png b/wiki-rtd/docs/wiki_images/controllers/xbox-wireless.png
new file mode 100644
index 00000000..241a6b4e
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/xbox-wireless.png differ
diff --git a/wiki-rtd/docs/wiki_images/controllers/xiaomi-controller.png b/wiki-rtd/docs/wiki_images/controllers/xiaomi-controller.png
new file mode 100644
index 00000000..e0ffaac9
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/controllers/xiaomi-controller.png differ
diff --git a/wiki-rtd/docs/wiki_images/devices/crt-tv.png b/wiki-rtd/docs/wiki_images/devices/crt-tv.png
new file mode 100644
index 00000000..68982105
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/devices/crt-tv.png differ
diff --git a/wiki-rtd/docs/wiki_images/devices/wii-bar.png b/wiki-rtd/docs/wiki_images/devices/wii-bar.png
new file mode 100644
index 00000000..c3fce18a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/devices/wii-bar.png differ
diff --git a/wiki-rtd/docs/wiki_images/devices/wii-dolphinbar.png b/wiki-rtd/docs/wiki_images/devices/wii-dolphinbar.png
new file mode 100644
index 00000000..0de3d835
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/devices/wii-dolphinbar.png differ
diff --git a/wiki-rtd/docs/wiki_images/emulators/scummvm/scummvm-sky.png b/wiki-rtd/docs/wiki_images/emulators/scummvm/scummvm-sky.png
new file mode 100644
index 00000000..11d02cb5
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/emulators/scummvm/scummvm-sky.png differ
diff --git a/wiki-rtd/docs/wiki_images/emulators/vita3k/vita3k-titleid.png b/wiki-rtd/docs/wiki_images/emulators/vita3k/vita3k-titleid.png
new file mode 100644
index 00000000..d5232495
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/emulators/vita3k/vita3k-titleid.png differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-esde.png b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-esde.png
new file mode 100644
index 00000000..bccb9b01
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-esde.png differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-kde.png b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-kde.png
new file mode 100644
index 00000000..94ac9540
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator-kde.png differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/configurator/configurator.png b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator.png
new file mode 100644
index 00000000..2884e9df
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/configurator/configurator.png differ
diff --git a/docs/wiki/steamdeck/layout/graphics/DS - Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/DS _Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/DS - Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/DS _Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Disp_Graph_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Disp_Graph_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Disp_Graph_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Disp_Graph_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Emu_Spec_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Emu_Spec_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Emu_Spec_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Emu_Spec_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/GC_Wii_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/GC_Wii_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/GC_Wii_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/GC_Wii_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/General_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/General_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/General_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/General_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/MAME_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/MAME_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/MAME_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/MAME_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Main_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Main_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Main_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Main_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Quick_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Quick_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Quick_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Quick_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/RetroArch_ Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/RetroArch_ Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/RetroArch_ Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/RetroArch_ Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Speed_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Speed_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Speed_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Speed_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/State_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/State_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/State_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/State_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/SteamDeck_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/SteamDeck_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/SteamDeck_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/SteamDeck_Menu.png
diff --git a/docs/wiki/steamdeck/layout/graphics/Switch_Menu.png b/wiki-rtd/docs/wiki_images/graphics/radialmenu/Switch_Menu.png
similarity index 100%
rename from docs/wiki/steamdeck/layout/graphics/Switch_Menu.png
rename to wiki-rtd/docs/wiki_images/graphics/radialmenu/Switch_Menu.png
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen1.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen1.jpeg
new file mode 100644
index 00000000..8918a07e
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen1.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen2.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen2.jpeg
new file mode 100644
index 00000000..9e2de1a4
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen2.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen3.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen3.jpeg
new file mode 100644
index 00000000..980a8794
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen3.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen4.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen4.jpeg
new file mode 100644
index 00000000..db74ee0c
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen4.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen5.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen5.jpeg
new file mode 100644
index 00000000..3ce14b43
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen5.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen6.jpeg b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen6.jpeg
new file mode 100644
index 00000000..4d2e52f1
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_sd_screen6.jpeg differ
diff --git a/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_wallpaper.png b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_wallpaper.png
new file mode 100644
index 00000000..c4458b8c
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/graphics/steamdeck/rd_wallpaper.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/ares-logo.png b/wiki-rtd/docs/wiki_images/logos/ares-logo.png
new file mode 100644
index 00000000..4193e225
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/ares-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/batocera-logo.png b/wiki-rtd/docs/wiki_images/logos/batocera-logo.png
new file mode 100644
index 00000000..2ce932d9
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/batocera-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/boilr-logo.png b/wiki-rtd/docs/wiki_images/logos/boilr-logo.png
new file mode 100644
index 00000000..af789081
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/boilr-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/cemu-logo.png b/wiki-rtd/docs/wiki_images/logos/cemu-logo.png
new file mode 100644
index 00000000..15820a90
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/cemu-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/citra-logo.svg b/wiki-rtd/docs/wiki_images/logos/citra-logo.svg
new file mode 100644
index 00000000..b6abc1cc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/citra-logo.svg
@@ -0,0 +1,2 @@
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/cryoutilities-logo.png b/wiki-rtd/docs/wiki_images/logos/cryoutilities-logo.png
new file mode 100644
index 00000000..bb9e589f
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/cryoutilities-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/decky-loader-logo.png b/wiki-rtd/docs/wiki_images/logos/decky-loader-logo.png
new file mode 100644
index 00000000..17832cab
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/decky-loader-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/discover-logo.png b/wiki-rtd/docs/wiki_images/logos/discover-logo.png
new file mode 100644
index 00000000..d248cc67
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/discover-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/discover-overlay-logo.svg b/wiki-rtd/docs/wiki_images/logos/discover-overlay-logo.svg
new file mode 100644
index 00000000..f4279d1c
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/discover-overlay-logo.svg
@@ -0,0 +1,81 @@
+
+
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/dolphin-logo.png b/wiki-rtd/docs/wiki_images/logos/dolphin-logo.png
new file mode 100644
index 00000000..c9d5b683
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/dolphin-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/duckstation-logo.png b/wiki-rtd/docs/wiki_images/logos/duckstation-logo.png
new file mode 100644
index 00000000..bc6655bb
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/duckstation-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/es-de-logo.png b/wiki-rtd/docs/wiki_images/logos/es-de-logo.png
new file mode 100644
index 00000000..a6890a5b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/es-de-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/flatpak-logo.png b/wiki-rtd/docs/wiki_images/logos/flatpak-logo.png
new file mode 100644
index 00000000..7052f48a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/flatpak-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/flips-logo.png b/wiki-rtd/docs/wiki_images/logos/flips-logo.png
new file mode 100644
index 00000000..3427cf7c
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/flips-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/gun4ir-logo.png b/wiki-rtd/docs/wiki_images/logos/gun4ir-logo.png
new file mode 100644
index 00000000..fc53cdd5
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/gun4ir-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/guncon-logo.png b/wiki-rtd/docs/wiki_images/logos/guncon-logo.png
new file mode 100644
index 00000000..16557e0b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/guncon-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/gzdoom-logo.png b/wiki-rtd/docs/wiki_images/logos/gzdoom-logo.png
new file mode 100644
index 00000000..63dd52c7
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/gzdoom-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/igdb-logo.png b/wiki-rtd/docs/wiki_images/logos/igdb-logo.png
new file mode 100644
index 00000000..8ae77024
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/igdb-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/ikemen-go-logo.png b/wiki-rtd/docs/wiki_images/logos/ikemen-go-logo.png
new file mode 100644
index 00000000..228ad77f
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/ikemen-go-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/jrommanager-logo.png b/wiki-rtd/docs/wiki_images/logos/jrommanager-logo.png
new file mode 100644
index 00000000..d20c2063
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/jrommanager-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/kennynl-logo.png b/wiki-rtd/docs/wiki_images/logos/kennynl-logo.png
new file mode 100644
index 00000000..e45e4e35
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/kennynl-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/linux-tux-logo.svg b/wiki-rtd/docs/wiki_images/logos/linux-tux-logo.svg
new file mode 100644
index 00000000..6b558e7b
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/linux-tux-logo.svg
@@ -0,0 +1,438 @@
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/mame-logo.png b/wiki-rtd/docs/wiki_images/logos/mame-logo.png
new file mode 100644
index 00000000..b74f01ac
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/mame-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/melonds-logo.svg b/wiki-rtd/docs/wiki_images/logos/melonds-logo.svg
new file mode 100644
index 00000000..6cef68cc
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/melonds-logo.svg
@@ -0,0 +1,80 @@
+
diff --git a/wiki-rtd/docs/wiki_images/logos/mkdocs-material-logo.svg b/wiki-rtd/docs/wiki_images/logos/mkdocs-material-logo.svg
new file mode 100644
index 00000000..d55d922f
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/mkdocs-material-logo.svg
@@ -0,0 +1,3 @@
+
diff --git a/wiki-rtd/docs/wiki_images/logos/openbor-logo.svg b/wiki-rtd/docs/wiki_images/logos/openbor-logo.svg
new file mode 100644
index 00000000..0acb8579
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/openbor-logo.svg
@@ -0,0 +1,88 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/pcsx2-logo.png b/wiki-rtd/docs/wiki_images/logos/pcsx2-logo.png
new file mode 100644
index 00000000..f8fa3b2d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/pcsx2-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/pico-8-logo.png b/wiki-rtd/docs/wiki_images/logos/pico-8-logo.png
new file mode 100644
index 00000000..d64b005a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/pico-8-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/powertools-logo.png b/wiki-rtd/docs/wiki_images/logos/powertools-logo.png
new file mode 100644
index 00000000..25a89b49
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/powertools-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/ppsspp-logo.png b/wiki-rtd/docs/wiki_images/logos/ppsspp-logo.png
new file mode 100644
index 00000000..458fc369
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/ppsspp-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/primehack-logo.png b/wiki-rtd/docs/wiki_images/logos/primehack-logo.png
new file mode 100644
index 00000000..84ebd6d2
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/primehack-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/rd-logo-box.png b/wiki-rtd/docs/wiki_images/logos/rd-logo-box.png
new file mode 100644
index 00000000..d9fc05e5
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/rd-logo-box.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/rd-stacked-esde-logo.png b/wiki-rtd/docs/wiki_images/logos/rd-stacked-esde-logo.png
new file mode 100644
index 00000000..9ba88276
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/rd-stacked-esde-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/rd-unstacked-logo.svg b/wiki-rtd/docs/wiki_images/logos/rd-unstacked-logo.svg
new file mode 100644
index 00000000..9de96f02
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/rd-unstacked-logo.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/rd-xmas-logo.svg b/wiki-rtd/docs/wiki_images/logos/rd-xmas-logo.svg
new file mode 100644
index 00000000..da779565
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/rd-xmas-logo.svg
@@ -0,0 +1,1736 @@
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/retroarch-logo.png b/wiki-rtd/docs/wiki_images/logos/retroarch-logo.png
new file mode 100644
index 00000000..d591952d
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/retroarch-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/retrobat-logo.png b/wiki-rtd/docs/wiki_images/logos/retrobat-logo.png
new file mode 100644
index 00000000..47c76430
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/retrobat-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/romm-logo.svg b/wiki-rtd/docs/wiki_images/logos/romm-logo.svg
new file mode 100644
index 00000000..13fa4d7e
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/romm-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/rpcs3-logo.png b/wiki-rtd/docs/wiki_images/logos/rpcs3-logo.png
new file mode 100644
index 00000000..e59a9b5b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/rpcs3-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/ryujinx-logo.svg b/wiki-rtd/docs/wiki_images/logos/ryujinx-logo.svg
new file mode 100644
index 00000000..d6a76312
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/ryujinx-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/screenscraper-logo.png b/wiki-rtd/docs/wiki_images/logos/screenscraper-logo.png
new file mode 100644
index 00000000..0ce3d63a
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/screenscraper-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/scummvm-logo.svg b/wiki-rtd/docs/wiki_images/logos/scummvm-logo.svg
new file mode 100644
index 00000000..a8cd58fa
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/scummvm-logo.svg
@@ -0,0 +1,333 @@
+
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/snapcraft-logo.svg b/wiki-rtd/docs/wiki_images/logos/snapcraft-logo.svg
new file mode 100644
index 00000000..e5322f82
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/snapcraft-logo.svg
@@ -0,0 +1,30 @@
+
+
+
diff --git a/wiki-rtd/docs/wiki_images/logos/solarus-logo.svg b/wiki-rtd/docs/wiki_images/logos/solarus-logo.svg
new file mode 100644
index 00000000..237926cf
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/solarus-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/steam-deck-logo.png b/wiki-rtd/docs/wiki_images/logos/steam-deck-logo.png
new file mode 100644
index 00000000..2597f33b
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/steam-deck-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/steam-logo.svg b/wiki-rtd/docs/wiki_images/logos/steam-logo.svg
new file mode 100644
index 00000000..2e839c5d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/steam-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/logos/vita3k-logo.png b/wiki-rtd/docs/wiki_images/logos/vita3k-logo.png
new file mode 100644
index 00000000..81672364
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/vita3k-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/xemu-logo.png b/wiki-rtd/docs/wiki_images/logos/xemu-logo.png
new file mode 100644
index 00000000..a39c0e30
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/xemu-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/xenia-logo.png b/wiki-rtd/docs/wiki_images/logos/xenia-logo.png
new file mode 100644
index 00000000..ba11fd82
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/logos/xenia-logo.png differ
diff --git a/wiki-rtd/docs/wiki_images/logos/yuzu-logo.svg b/wiki-rtd/docs/wiki_images/logos/yuzu-logo.svg
new file mode 100644
index 00000000..93171d1b
--- /dev/null
+++ b/wiki-rtd/docs/wiki_images/logos/yuzu-logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wiki-rtd/docs/wiki_images/other/wiki-qrcode.png b/wiki-rtd/docs/wiki_images/other/wiki-qrcode.png
new file mode 100644
index 00000000..19eff7ce
Binary files /dev/null and b/wiki-rtd/docs/wiki_images/other/wiki-qrcode.png differ
diff --git a/wiki-rtd/Archive.md b/wiki-rtd/docs/wiki_misc/archive.md
similarity index 100%
rename from wiki-rtd/Archive.md
rename to wiki-rtd/docs/wiki_misc/archive.md
diff --git a/wiki-rtd/Citra-Mods.md b/wiki-rtd/docs/wiki_mods/citra-mods.md
similarity index 84%
rename from wiki-rtd/Citra-Mods.md
rename to wiki-rtd/docs/wiki_mods/citra-mods.md
index 2a12e987..38088750 100644
--- a/wiki-rtd/Citra-Mods.md
+++ b/wiki-rtd/docs/wiki_mods/citra-mods.md
@@ -1,31 +1,31 @@
-# Citra - 3DS
+# Mods: Citra - 3DS
The `~/retrodeck/mods/citra/` represents the `/load/mods/` folder in Citra.
**Note:**
`TITLEID` is different for every game.
-
+
## How do I add mods?
**Requirements:** Mod files
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
There are two ways of adding mods into Citra
-### From Citra
+### From Citra
1. Extract any mod from compressed `.zip` or any other format to folders.
-2. Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
+2. Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
3. Right click on the game you want to add mods into.
4. Click on `Open Mods Location`.
-5. Paste the mod files inside that directory, each folder is stored by the `TITLLEID` of the game.
+5. Paste the mod files inside that directory, each folder is stored by the `TITLLEID` of the game.
6. Quit Citra
-### From the mod folder directly
+### From the mod folder directly
1. Extract any mod files from compressed `.zip` or any other format into folders.
2. Go into `~/retrodeck/mods/citra/`. The folders are all named by `TITLEID`.
-3. Past the mods into the right `~/retrodeck/mods/yuzu/` folder.
\ No newline at end of file
+3. Past the mods into the right `~/retrodeck/mods/yuzu/` folder.
diff --git a/wiki-rtd/Dolphin-and-Primehack-Mods.md b/wiki-rtd/docs/wiki_mods/dolphin-prime-mods.md
similarity index 79%
rename from wiki-rtd/Dolphin-and-Primehack-Mods.md
rename to wiki-rtd/docs/wiki_mods/dolphin-prime-mods.md
index 24f34554..da9e336e 100644
--- a/wiki-rtd/Dolphin-and-Primehack-Mods.md
+++ b/wiki-rtd/docs/wiki_mods/dolphin-prime-mods.md
@@ -1,5 +1,5 @@
-# Dolphin / Primehack - GC & Wii
-Primehack is based on Dolphin so the method is the same.
+# Mods: Dolphin / Primehack - GC & Wii
+Primehack is based on Dolphin so the method is the same.
The `~/retrodeck/mods/dolphin/` & `~/retrodeck/mods/primehack/` that represents the `/load/GraphicMods` folder.
@@ -11,8 +11,8 @@ Some texture packs could made for a specific version or region of a game. Make s
`GAME_ID` is different for every game.
## Enable Custom Textures
-* Open up Dolphin or Primehack inside `RetroDECK Configurator` by pressing `Open Emulator` - `Dolphin` or `Primehack`.
-* Press `Options` -> `Graphic Settings`
+* Open up Dolphin or Primehack inside `RetroDECK Configurator` by pressing `Open Emulator` - `Dolphin` or `Primehack`.
+* Press `Options` -> `Graphic Settings`
`Enable Graphics Mods` and set it to `On`.
@@ -20,7 +20,7 @@ Some texture packs could made for a specific version or region of a game. Make s
**Requirements:** Mod files
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
### Directly into the mods folder
@@ -29,8 +29,9 @@ Some texture packs could made for a specific version or region of a game. Make s
2. Go into mods folders, they contain folders that are all named by `GAME_ID`.
**Dolphin:**`~/retrodeck/mods/dolphin/`
-**Primehack:**`~/retrodeck/mods/primehack/`.
+**Primehack:**`~/retrodeck/mods/primehack/`.
3. Move the mods into the right folder:
**Dolphin:** `~/retrodeck/mods/dolphin/`
**Primehack:** `~/retrodeck/mods/primehack/`
+
diff --git a/wiki-rtd/docs/wiki_mods/ryujinx-mods.md b/wiki-rtd/docs/wiki_mods/ryujinx-mods.md
new file mode 100644
index 00000000..6af92392
--- /dev/null
+++ b/wiki-rtd/docs/wiki_mods/ryujinx-mods.md
@@ -0,0 +1,14 @@
+# Mods: Ryujinx - Switch
+
+WIP
+
+**Note:**
+`TITLEID` is different for every game.
+
+## How do I add mods?
+
+**Requirements:** Mod files
+
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+
+There are two ways of adding mods into Ryujinx
diff --git a/wiki-rtd/Yuzu-Mods.md b/wiki-rtd/docs/wiki_mods/yuzu-mods.md
similarity index 80%
rename from wiki-rtd/Yuzu-Mods.md
rename to wiki-rtd/docs/wiki_mods/yuzu-mods.md
index 9000da34..1c98a7ce 100644
--- a/wiki-rtd/Yuzu-Mods.md
+++ b/wiki-rtd/docs/wiki_mods/yuzu-mods.md
@@ -1,4 +1,4 @@
-# Yuzu
+# Mods: Yuzu - Switch
**Note:**
`TITLEID` is different for every game.
@@ -11,13 +11,13 @@
There are two ways of adding mods into Yuzu
-### From Yuzu directly
+### From Yuzu directly
1. Extract any mod files from compressed `.zip` or any other format to folders.
-2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
+2. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
3. Right click on the game you want to add mods into.
4. Click on `Open Mod Data Destination`.
-5. Paste the mod folders inside that directory.
-6. Right clicking on the game and selecting `Properties`.
+5. Paste the mod folders inside that directory.
+6. Right clicking on the game and selecting `Properties`.
7. Enable the mods you want to enable by pressing the checkboxes in the `Add-Ons` tab and press OK.
8. Quit Yuzu
@@ -27,7 +27,8 @@ There are two ways of adding mods into Yuzu
1. Extract any mod files from compressed `.zip` or any other format into folders.
2. Go into `~/retrodeck/mods/yuzu/` and file the right folder for the game you want to add mods to. The folders are all named by `TITLEID`.
3. Move those folders into `~/retrodeck/mods/yuzu/`
-4. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
-5. Right clicking on the game and selecting `Properties`.
+4. Open up Yuzu inside `RetroDECK Configurator` by pressing `Open Emulator` - `Yuzu`.
+5. Right clicking on the game and selecting `Properties`.
6. Enable the mods you want to enable by pressing the checkboxes in the `Add-Ons` tab and press OK.
7. Quit Yuzu
+
diff --git a/wiki-rtd/docs/wiki_rd_versions/version-history.md b/wiki-rtd/docs/wiki_rd_versions/version-history.md
new file mode 100644
index 00000000..0d58fb0a
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version-history.md
@@ -0,0 +1,25 @@
+# RetroDECK Versions
+
+## Version 0.7b
+- [0.7.5b](version_0.7b/0.7.5b.md)
+- [0.7.4b](version_0.7b/0.7.4b.md)
+- [0.7.3b](version_0.7b/0.7.3b.md)
+- [0.7.2b](version_0.7b/0.7.2b.md)
+- [0.7.1b](version_0.7b/0.7.1b.md)
+- [0.7.0b](version_0.7b/0.7.0b.md)
+
+## Version 0.6b
+- [0.6.6b](version_0.6b/0.6.6b.md)
+- [0.6.5b](version_0.6b/0.6.5b.md)
+- [0.6.4b](version_0.6b/0.6.4b.md)
+- [0.6.3b](version_0.6b/0.6.3b.md)
+- [0.6.2b](version_0.6b/0.6.2b.md)
+- [0.6.1b](version_0.6b/0.6.1b.md)
+- [0.6.0b](version_0.6b/0.6.0b.md)
+
+## Version 0.5b
+
+- [0.5.3b](version_0.5b/0.5.3b.md)
+- [0.5.2b](version_0.5b/0.5.2b.md)
+- [0.5.1b](version_0.5b/0.5.1b.md)
+- [0.5.0b](version_0.5b/0.5.0b.md)
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.0b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.0b.md
new file mode 100644
index 00000000..3e6e8e63
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.0b.md
@@ -0,0 +1,186 @@
+# RetroDECK v0.5.0b
+
+**Release Date: 2022-10-12**
+
+## Important: New save folder structure and migration in 0.5.0b
+
+### General information
+
+
+[I see ~ refereed in documentation and examples, what does it mean?](https://github.com/XargonWan/RetroDECK/wiki/FAQs:-Frequently-asked-questions#i-see--refereed-in-documentation-and-examples-what-does-it-mean)
+
+**Saves = game saves and save states**
+The word "saves" is used to reference both save files and save state files in this wiki article. Both files are treated in the same manner, the only difference is that saves are located at.
+
+**PLEASE BE PATIENT:**
+The migration of the saves only needs to be done once.
+Depending on how large roms library you have, this migration can take several minutes.
+If you have an extremely large roms library (+5.000 roms) this process can take over an hour.
+
+### Why are you changing the save folder structure?
+
+In the long run, it is about the safety of your saves and we feel it's better to tackle this now during the beta period then later.
+
+By default, RetroArch (which handles emulation of most older systems) puts all your saves together in one folder.
+This is normally not an issue, but what you if you want to play the same game but different versions of it across multiple systems?
+RetroArch has no way of telling the difference between a save for `Mortal Kombat 3` on the Sega Genesis and on the Super Nintendo when the saves are all bundled together. RetroDECK is moving to a save storage structure where every save file is in a per system sub-folder inside of the `~/retrodeck/saves/` for game saves or `~/retrodeck/states/` for save states.
+
+### How saves are stored in RetroDECK pre 0.5.0b:
+
+_Example: Structure of the `~/retrodeck/saves/` folder_
+
+ ~/retrodeck/saves/Final Fantasy 3.save
+
+ ~/retrodeck/saves/Sonic the Hedgehog.save
+
+_Example: Structure of the `~/retrodeck/states/` folder_
+
+ ~/retrodeck/saves/Final Fantasy VI.savestate
+
+ ~/retrodeck/saves/Sonic the Hedgehog 2.savestate
+
+
+### How saves are stored in RetroDECK post 0.5.0b:
+
+_Example: Structure of the `~/retrodeck/saves/` folder and with new sub-folders_
+
+ ~/retrodeck/saves/nes/Super Mario Bros. 3.save
+
+ ~/retrodeck/saves/genesis/Sonic the Hedgehog.save
+
+_Example: Structure of the `~/retrodeck/states/` folder_
+
+ ~/retrodeck/states/snes/Final Fantasy VI.savestate
+
+ ~/retrodeck/states/genesis/Sonic the Hedgehog 2.savestate
+
+Since RetroArch will be looking for your saves in new locations, RetroDECK will do its best to sort your saves into the new structure automatically, so you likely won't need to do anything except enjoy knowing your saves are safer than ever.
+
+### How will it work?
+
+* The fist time you run RetroDECK after upgrading from a previews version to 0.5.0b a new dialog prompt will appear letting you that the migration process will start after pressing `OK`.
+
+* The migration process matches up all of your saves with all of your ROMs.
+
+* Once a match is found, the save is moved to where the sub-folder it needs to be in.
+
+* At the end of the process RetroDECK will let you know if any saves could not be sorted automatically.
+
+* **NOTE:** Only saves created by RetroArch need to be sorted, standalone emulators such as Yuzu and Citra already use their own folder structure and don't need to go through this process.
+
+* **NOTE:** If a match can't be found (for instance if you have a save for Mortal Kombat 3 and have both the SNES and Genesis editions in your ROM library) the save will be left alone and will need to be sorted manually, since only you will know for sure what system you were playing that game on.
+
+### Where will my saves be moved to?
+
+The saves will still be in the `~/retrodeck/saves` folder, but will also be moved into a new folder that matches what system the associated game is on.
+
+ _Example: Game save - The Legend of Zelda on the NES_
+
+`~/retrodeck/saves/The Legend of Zelda.save`
+
+ will be moved to
+
+ `~/retrodeck/saves/nes/The Legend of Zelda.save`
+
+ _Example 2: Save state - Super Mario Bros 3 on the NES_
+
+`~/retrodeck/states/Super Mario Bros 3.savestate`
+
+ will be moved to
+
+ `~/retrodeck/states/nes/Super Mario Bros 3.savestate`
+
+### Why could not all saves be moved automatically?
+
+If you have a large ROM library, it is likely you will have multiple versions of the same game across multiple systems.
+
+RetroArch creates save files that have the same name as the original ROM file. If there are multiple ROM files with the same name as a save, there is no way to tell which system the save belongs to.
+
+In the interest of ultimate safety for your saves, we only sort files we can be sure of. It is unfortunate that some saves may need to be sorted manually for some users, but this is a one time process that will keep your saves safer in the long run.
+
+### How do I move them manually?
+
+The saves can be moved like any other file, using the Dolphin file manager included in the Steam Deck desktop mode to the corresponding sub-folder inside `/retrodeck/saves/(system sub-folder)`.
+
+### Where can I find saves that could not be moved?
+
+If you see a message after the migration process saying some of your saves could not be sorted automatically, they will be found where they have always been, in `~/retrodeck/saves` or `~/retrodeck/states`.
+
+In the `~/retrodeck` folder there will also be a file called `manual_sort_needed.log` listing every save that could not be sorted automatically with a reason it was not moved. In order to be used again, these files will need to be moved into the folder matching the name of the system that the game the save belongs to runs on.
+
+For example, this save file could not be sorted automatically, because there are multiple ROMs in the library with the same name.
+
+**Example: Game saves**
+* New theme 1: [Alekfull-NX-Light](https://github.com/anthonycaccese/alekfull-nx-retropie/tree/retro-deck-esde-1.x-light) for ES-DE
+![rd-theme-RetrofixRevisited-GamelistView](https://user-images.githubusercontent.com/1454947/193457594-b803546b-36eb-4e71-9eca-bfee1d81ba36.jpeg)
+![rd-theme-RetrofixRevisited-SystemView](https://user-images.githubusercontent.com/1454947/193457596-05dc4316-9f2a-41ae-aa27-9609c680ec5a.jpeg)
+
+## Updates & minor additions in 0.5.0b
+
+* New variables system: now some variables such as game folder location are saved in /var/config/retrodeck/retrodeck.cfg.
+* Rewritten build and publication workflows
+* Updated ES-DE from 1.2.4 to 1.2.6 (Please note that not all the supported emulators in ES-DE are included in RetroDECK at this moment)
+For the full ES-DE patch notes follow these links:
+[1.2.5 Patch Notes](https://gitlab.com/es-de/emulationstation-de/-/blob/master/CHANGELOG.md#version-125)
+[1.2.6 Patch Notes](https://gitlab.com/es-de/emulationstation-de/-/blob/master/CHANGELOG.md#version-126)
+* Updated RetroArch, updated all cores and added new cores from 1.10.2 to 1.11.1
+[1.10.3 Patch Notes](https://www.libretro.com/index.php/retroarch-1-10-3-release/)
+[1.11.1 Patch Notes](https://www.libretro.com/index.php/retroarch-1-11-0-release/)
+* Updated all the standalone emulators to their latest releases
+* Updated all included themes to their latest version.
+
+## Bug fixes in 0.5.0b
+
+* Removed the unavailable emulators from the ES-DE interface to avoid confusion.
+* Solved an issue where Dolphin (Standalone) was not saving in the intended directories.
+* Various smaller bug fixes, for a more detailed list check the [issues list](https://github.com/XargonWan/RetroDECK/issues?q=is%3Aissue+milestone%3A0.5.0b+)
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.1b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.1b.md
new file mode 100644
index 00000000..b9fa1f81
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.1b.md
@@ -0,0 +1,7 @@
+# RetroDECK v0.5.1b
+
+**Release Date: 2022-10-13**
+
+## Bug fixes in 0.5.1b
+
+* Fixed an issue with Yuzu not being compiled correctly
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.2b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.2b.md
new file mode 100644
index 00000000..6d89e784
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.2b.md
@@ -0,0 +1,9 @@
+# RetroDECK v0.5.2b
+
+**Release Date: 2022-10-14**
+
+## Bug fixes in 0.5.2b
+
+* Fixed a bug where the Citra save folder was duplicated
+* Fixed a bug where scraped videos would not be played correctly for certain systems
+* Fixed the Rewind Tool
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.3b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.3b.md
new file mode 100644
index 00000000..cf4da54d
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.5b/0.5.3b.md
@@ -0,0 +1,20 @@
+# RetroDECK v0.5.3b
+
+**Release Date: 2022-10-28**
+
+## Bug fixes in v0.5.3b
+
+* Fixed inaccessible RetroArch shaders folder
+* Fixed PSP saving issue when using RetroArch core
+* Fixed ROM visibility for Dolphin when running standalone, which should address ability to use AR/Gecko codes
+* Changed default RPCS3 launch method to fix games not starting properly
+* Fixed PCSX2 (legacy) autosave loading issue
+* (Hopefully) Fixed RetroAchievements login on PCSX2-QT
+
+## Changes in 0.5.3b
+* Made Citra standalone the default 3DS emulator
+
+## Additions in 0.5.3b
+* Added Citra SA sysdata folder to RetroDECK BIOS folder
+* Added Yuzu save folders to RetroDECK saves folder
+* A progress window during emulator initialization where it can look like RetroDECK has crashed
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.0b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.0b.md
new file mode 100644
index 00000000..be9fc75b
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.0b.md
@@ -0,0 +1,32 @@
+# RetroDECK v0.6.0b
+
+**Release Date: 2022-12-27**
+
+## New Emulators
+* Primehack
+* Ryjuinx (Disabled in 0.6.2b)
+
+## New Features
+* Merged all tools into single Configurator
+* The Configurator can now move the whole retrodeck folder eslewhere (not just the ROMs one)
+* The Configurator can now reset a single emulator, all RetroArch or all Standaloned configs (so there is no need to di it via CLI anymore
+* The first install is now asking where to place the whole retrodeck folder instead of requesting the location of the ROMs folder only.
+
+## RetroArch
+* Updated RetroArch to version [v1.14.0](https://www.libretro.com/index.php/retroarch-1-14-0-release/)
+* Updated Cores
+* Updated Cheat_db
+
+## Updated standalone emulators
+These emulators are updated to the latest version available on 31/10/2022.
+* Updated PPSSPP
+* Updated Yuzu
+* Updated Citra
+* Updated PCSX2-QT
+* Updated Dolphin
+* Updated Xemu
+* Updated RPCS3
+* Updated Duckstation
+
+## Fixes
+* PCSX2-QT is now looking for saves in the correct directory `~/retrodeck/saves/ps2/memcards` and not in `~/retrodeck/saves/ps2/pcsx2/memcards`
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.1b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.1b.md
new file mode 100644
index 00000000..2f2775e4
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.1b.md
@@ -0,0 +1,21 @@
+# RetroDECK v0.6.1b
+
+**Release Date: 2023-02-21**
+
+## New features:
+* Added CLI option to run Configurator directly
+* Added "--configure" option to RetroDECK CLI
+
+## Updates:
+* Yuzu updated to mainline-1301
+
+## Fixes & adjustments:
+* Adjusted Configuration window sizes
+* Temporarily removed Ryjuinx as it was broken and had too many issues (will be added back in a future patch).
+* Removed deprecated emulators from Configurator (eg. Legacy PCSX2)
+* Made improvements to file-moving code
+* Fixed Primehack preconfiguration and Configurator entry
+* Fixed a bug where the hidden files were not moved during the directory preparation
+* Fixed a bug where the symlinks were recursively placed inside the prepeared paths
+* Fixed issue with missing symlink after RetroDECK base directory was moved somewhere else
+* Fixed Duckstation preconfiguration
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.2b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.2b.md
new file mode 100644
index 00000000..86264ce2
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.2b.md
@@ -0,0 +1,28 @@
+# RetroDECK v0.6.2b
+
+**Release Date: 2023-03-15**
+
+## New features - General:
+- Persistent configurations when updating RetroDECK (This means your custom configurations should be saved across future versions. We also laid groundwork for dynamic persistent configurations, more on that in a future update. This is the reason why it has taken quite long to fix this).
+- Added Primehack controller profiles for both Xbox and Nintendo button layouts
+- Added a warning when running RetroDECK in desktop mode that not all control inputs will work properly. It also comes with a "Never show again" button.
+- Added CLI for CHD compression (chdman) of single games
+- Reworked CLI commands and added safety "y/n" confirmations for the reset arguments.
+
+## New features - RetroDECK Configurator:
+- The RetroDECK Configurator "toolbox" has a new structure for more easy access to various tools
+- The power user prompt has a "Never show again" button
+- Added tool to do CHD compression (chdman) of single games (multi-game batch compression coming in a future update)
+- Added tool to check for common BIOS files
+- Added tool to check for common multi-file game structure issues
+
+## Bug fixes and other changes:
+- Fixed Primehack initial configuration as it was broken (will automatically reset the emulator just this once)
+- Fixed Duckstation initial configuration as it was broken (will require user-performed reset just this once)
+- Fixed Pico-8 initial configuration as it was broken.
+- Fixed Pico-8 dual bios folders. The program files `pico8_dyn`,`pico8.dat` and `pico8` have to be manually moved to the correct location`~/retrodeck/bios/pico-8/`. The old `~/retrodeck/bios/pico8/` is renamed `~/retrodeck/bios/pico8_olddata/` to avoid confusion on where to put files. After the files have moved the `pico8_olddata `folder can be deleted.
+- Fixed a bug that made the Dolphin RetroArch core not working properly (the standalone version of Dolphin always worked and is the default)
+- Various backend fixes
+
+## Updates:
+- Updated all Emulators, RetroArch and libreretro cores. (PLEASE NOTE! ES-DE was not updated to version 2.0, this will be done in the next major version of RetroDECK as we need more time to work on the new theme format).
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.3b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.3b.md
new file mode 100644
index 00000000..18035e91
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.3b.md
@@ -0,0 +1,23 @@
+# RetroDECK v0.6.3b
+
+**Release Date: 2023-03-24**
+
+## New features - General:
+- Added support support for multiple file compression via CLI.
+
+## RetroDECK Configurator:
+- Added support support for multiple file compression in the Configurator.
+- Added safety y/n prompts to the reset functions.
+- Fixed some missing layout changes.
+- Renamed "Reset All" to "Reset RetroDECK".
+- Moved the configurator into the RO partition for futher enhancements.
+
+## Bug fixes and other changes:
+- Fixed a bug in the compression tool with certain filenames with spaces.
+- Fixed a bug where some folders were recursively symlinked.
+- Fixed a bug where some emulator configs were not correctly deployed.
+- Fixed a manifest bug that caused a conflict between Dolphin and Primehack in certain scenarios.
+- Fixed the Configurator BIOS tool looking in the wrong location (Thanks sofauxboho for the report!)
+- Implemented new configurations for Yuzu and Citra thanks to the big config file changes in the latest emulator updates in both emulators.
+- Removed some leftover files from Legacy PCSX2.
+- Removed the legacy "Reset Tools" command from Configurator and CLI.
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.4b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.4b.md
new file mode 100644
index 00000000..8fc35d54
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.4b.md
@@ -0,0 +1,14 @@
+# RetroDECK v0.6.4b
+
+**Release Date: 2023-04-04**
+
+## New features - General:
+- Updated to ES-DE 2.0
+- Added the NSO Menu Interpreted theme
+- Updated all included themes
+- Updated the Emulators/RetroArch + cores
+
+## Bug fixes and other changes:
+
+- Fixed an audio issue in the Primehack configuration
+- Various backend fixes
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.5b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.5b.md
new file mode 100644
index 00000000..807664a6
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.5b.md
@@ -0,0 +1,14 @@
+# RetroDECK v0.6.5b
+
+**Release Date: 2023-04-07**
+
+### Information:
+Just a quick hotfix for Yuzu (since some games where not working in 0.6.4b).
+So we had to roll back to the latest working version.
+Newer versions will be shipped with v0.7b
+
+## Bug fixes and other changes:
+- Rolled back to latest working Yuzu as some games had issues with the latest update.
+- Slightly improved Yuzu performance by tweaking GPU options
+- Fixed an issue where the default theme was not loaded
+- Removed unavailable emulators entries
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.6b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.6b.md
new file mode 100644
index 00000000..513616c4
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.6b/0.6.6b.md
@@ -0,0 +1,11 @@
+# RetroDECK v0.6.6b
+
+**Release Date: 2023-04-26**
+
+### Information:
+This patch is a quick hotfix for ES-DE.
+
+
+## Bug fixes and other changes:
+- ES-DE had the wrong buildflag and pushed the update notification.
+- Reverted to the Swanstation Core for RetroArch
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.0b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.0b.md
new file mode 100644
index 00000000..833bd57e
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.0b.md
@@ -0,0 +1,134 @@
+# RetroDECK v0.7.0b - Amazing Aozora
+
+**Release Date: 2023-06-16**
+
+## Read First – Important Changes!
+
+* `PCSX2-SA` latest updates are not compatible with old save states. Please make sure you do an in-game save to your virtual memory card before upgrading.
+
+* The following emulators have changed the defaults and now run the stand-alone version: `Dolphin`, `Citra`, `PPSSPP`.
+If you have saves states or just want to go back to the RetroArch version, you can always switch back by pressing: `Other Settings` – `Alternative Emulators` and set them back to the core versions.
+
+* If you decide to install the new `RetroDECK Controller Layout` for the Steam Deck (highly recommended), it will wipe your custom configurations and emulator settings. That’s because all the configs needs to be updated and changed to be compatible.
+The choice is yours (you can always install it later via the Configurator if you change your mind).
+
+
+## New Emulators
+
+- Wii U powered by CEMU
+
+- We had hopes to add MAME standalone as well but we had to push it towards a future update because of various issues. That's why there is a MAME submenu in the new radial menus.
+
+
+
+## New General Features
+
+### New - Steam Deck Controller Layout
+
+Please read up on: https://github.com/XargonWan/RetroDECK/wiki/Steam-Deck%3A-Hotkeys-and-controls
+- All hotkeys for all emulators have been unified where possible.
+
+This Steam Deck Controller Layout features both
+
+- Radial input menus on the left touchpad.
+- Button bound hotkeys you can access by either holding R4 or L4.
+
+**Installation of the layout:**
+
+**From an upgrade:**
+
+A upgrade from a older version to 0.7b you will get a prompt during the upgrade process that asks you if you want to install the layout. If you choose to do this (highly recommended), it will reset your emulators custom configurations if you had them.
+
+**For everyone (upgrade or fresh install):**
+
+After installation need to manually enable the config as under (you also need to do this for a new RetroDECK install):
+`Controller Settings` -> `Controller Layouts` -> `Templates` `RetroDECK: Official Layout` with a version number.
+
+**NOTE:**
+
+Not all Emulators has hotkey support; some have partial support, some has none and some has a majority implemented.
+
+**Known issues:**
+
+PPSSPP has an issue with flatpak hotkeys currently on their github so we have mapped ESC `HK + R3` ( press the `Escape` key from the radial menu) to `Open PPSSPP Menu`. In this way you can shutdown, save and access PPSSPP functions from there.
+As soon as the issue is solved we will remap everything to the correct hotkeys.
+
+### New - RetroDECK system folders
+
+Handling modpacks and texture packs has never been easier! You can read more on the wiki!
+
+https://github.com/XargonWan/RetroDECK/wiki
+
+**New folder: Mods**
+
+`retrodeck/mods/` Inside you will find easy to access mod folders for the following systems: Citra ,Dolphin, Primehack, Yuzu
+
+
+**New folder: Texture Packs**
+
+`retrodeck/texture_packs/` inside you will find easy to access texture pack folders for the following systems: Citra, Dolphin, Duckstation, PCSX2, PPSSPP, Primehack, RetroArch-Mesen, RetroArch-Mupen64Plus
+
+
+**New folder: Gamelists**
+
+`retrodeck/gamelists` gamelists are now moved into by default for ease of access and added security.
+
+
+## New - System features
+
+- The Configurator has a new home inside the ES-DE main menu and thus the tools menu has been removed.
+- The Configurator also has a .deskop icon for ease of access for both Steam Deck desktop mode and Linux Desktop users.
+- Added RetroDECK auto updates on launch, this can be disabled from the Configurator this works in Game Mode for the Steam Deck.
+
+## New RetroDECK Configurator features:
+
+- The Configurator has a new structure, with more menus and options.
+- The compression tool has been updated to allow for even more formats such as .zip in addition to the standard disc-based formats for certain systems.
+- The compression tool has been updated to have an even stronger verification before a compression job starts.
+- Added a global preset to swap A/B and X/Y in all supported emulators (aka N layout).
+- Added a global preset to enable/disable Widescreen in all supported emulators, globally or per core/emulator.
+- Added a global preset to enable/disable Ask-to-Exit prompts in all supported emulators.
+- Added a preset to enable/disable Pegasus and NyNy77 Borders for RetroArch, globally or per core.
+- Added an option to install Venomalia's Universial Dynamic Input Textures for Dolphin https://github.com/Venomalia/UniversalDynamicInput
+- Added an RetroDECK: About section
+- Added an option to install the RetroDECK Steam Deck controller profile
+- Added an “RetroDECK: Auto Updates” function that enables or disables auto updates on RetroDECK launch.
+- Added a Semi-automated RPCS3 firmware installer.
+- The Move Folder tool has been greatly expanded
+ - You can now move the entire folder or different folders as you choose. (WARNING! Please do not try to move the data to more exotic locations).
+- The basic BIOS checker has been removed.
+- The BIOS checker has been updated to look for over 120+ BIOS.
+- RetroAchivements Login: Now logs into all supported emulators/cores at once.
+- RetroAchivements Logout: Now logs out of all supported emulators/cores at once.
+- Added RetroAchivements: Hardcore Mode, that lets you toggle hardcore mode for supported emulators/cores with a logged in RetroAchivements account.
+
+## Updates
+
+- Updated ES-DE to the latest version.
+- Updated RetroArch and the cores to latest versions.
+- Updated all standalone emulators and to their latest versions.
+
+
+## Bugfixes & other changes:
+
+- Dolphin/Primehack Wii Mote controls have been redesigned for the Steam Deck to allow both for touch input or right radial as pointer and `R2` emulates the Wii Remote Shake needed for certain games.
+- Updated the RPCS3 to run better and with a better configuration. Read more on the wiki on how to install DLC and patches.
+- RPCS3 and Duckstations save files where in the wrong directory. They have been moved to fit the overall inside the RetroDECK Framework. If you have any issues, contact us on discord or add them on github.
+- We made a unique PICO-8 wrapper that makes it runs better in a flatpak environment.
+- Fixed an avcodec issue that caused some roms for certain emulators to break.
+- Changed the ES-DE progress bar color
+- Changed how Yuzu builds are handled and should allow for better Yuzu updates.
+- Added a low space warning on launch.
+- Various backend improvements and fixes.
+- Added the foss Capsimg BIOS for the Amiga RetroArch core.
+- Implemented ES-DE's experimental theme downloader. For fresh new installs we only now ship one theme: ArtBookNext (as all other themes can be downloaded from the interface).
+
+## Experimental features:
+You can enable the RetroDECK: Multi-user system and other things from CLI for testing purposes.
+Read more here on how to help us with testing:
+
+https://github.com/XargonWan/RetroDECK/wiki/How-can-I-help-with-testing%3F
+
+There is also a Q&A on the latest blog post:
+
+https://www.reddit.com/r/RetroDeck/comments/13x8dva/retrodeck_status_update_202306/
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.1b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.1b.md
new file mode 100644
index 00000000..d38ae881
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.1b.md
@@ -0,0 +1,42 @@
+# RetroDECK 0.7.1b
+
+**Release Date: 2023-08-22**
+
+## Information:
+- Steam Deck users update RetroDECK from `Discover` in Desktop Mode.
+- Don't forget to reapply the latest controller layout: Go into the `Templates` tab and reapply the new profile ending with 0.7.1b (there is no need to reinstall the entire layout from the Configurator).
+
+
+## Bugfixes & other changes:
+- Fixed an issue to make sure the RD controller layout file at update with each RD update.
+- Fixed an issue with PPSSPP that made `L` and `R` incorrectly bound.
+- Fixed an issue in the Configurator that prevented the Yuzu preset for swapping A/B X/Y from working.
+- Fixed an notification issues on the latest SteamOS Beta releases.
+- Fixed an rsync permissions issue in the RetroDECK Framework.
+- Updated Yuzu presets to handle new config syntax in the RetroDECK Framework.
+- Changed auto-update to notification only, until permissions error can be worked out.
+- Added some new pixelart icons by ItzSelenux (pixelitos-icon-theme)
+
+
+## Updates
+- All Emulators and ES-DE have been updated
+
+## Steam Deck - Global Controller Layout:
+We have done some changes based on community feedback
+
+**Layout Changes:**
+- `Select` is now a hotkey trigger while pressing it down, `L4` and `R4` are still triggers as well.
+- The RetroArch combo of `Select` + `Start` = `Quit` now works on many SA-Emulators.
+- `Open Menu` is removed from `Select`.
+- `R5` = `A` button (this allows for great Wii controls on the right touchpad and pressing down the R5 for A).
+- `L5` = `B` button.
+
+**Global hotkey changes:**
+- `Open Menu` is on `Y`.
+- `Increase Emulation Speed` is on `Dpad-UP`.
+- `Decrease Emulation Speed` is on `Dpad-Down`.
+- `Fullscreen OFF` command is removed (as emulators have migrated to toggle).
+
+## Known issues
+- The built in auto-updater is not working (we are working on it). Discover is ok.
+- Some emulators don't have hotkey support or have bugs affecting their hotkeys.
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.2b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.2b.md
new file mode 100644
index 00000000..947645f1
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.2b.md
@@ -0,0 +1,24 @@
+# RetroDECK 0.7.2b
+
+**Release Date: 28/09/2023**
+
+## Updates:
+The following features have been updated
+
+- All standalone emulators
+- EmulationStation Desktop Edition (ES-DE)
+- RetroArch and cores
+- The included ES-DE themes
+
+## Bugfixes & other changes:
+- Added helper .txt files to the mod & texture pack folders.
+- The builtin changelog is now scrollable.
+- The loading bar color is after much debate once again red.
+- Gameboy Advanced & Game Gear integer scaling changes based on feedback.
+- Optimized and retooled the patching process for ES-DE.
+- Various fixes and optimizations to the RetroDECK build process.
+
+## Known issues
+- PPSSPP: Retroachievements is in the latest version, you can login / logout / enable hardcore mode normally from the emulators interface. It is right now not configurable in the Configurator (as it works a bit different the other emulators), we hope to have a solution for it at a later date.
+- RetroArch: Quitting the Gambatte core with the `Quit` radial function makes the core swap the palette while playing GB.
+- RetroArch: Borders are in some cases disappearing in the latest RetroArch version. A possible workaround is to reset RetroArch from the Configurator.
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.3b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.3b.md
new file mode 100644
index 00000000..e9816926
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.3b.md
@@ -0,0 +1,15 @@
+# RetroDECK 0.7.3b
+
+**Release Date: 14/11/2023**
+
+## Updates:
+The following features have been updated
+
+- All standalone emulators
+- EmulationStation Desktop Edition (ES-DE) to 2.2.1
+- RetroArch and cores
+- The included ES-DE themes
+
+## Other changes:
+- ES-DE have made changes to their theme engine, so we recommend everyone to update any custom themes they have downloaded from the builtin theme downloader or the web.
+
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.4b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.4b.md
new file mode 100644
index 00000000..14d50205
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.4b.md
@@ -0,0 +1,15 @@
+# RetroDECK 0.7.4b
+
+**Release Date: 18/11/2023**
+
+## Bugfixes & other changes:
+- Fixed a bug where some of the roms folders were not correctly generated on a fresh install.
+- Fixed a bug where the RetroDECK Configurator desktop file was not opening the Configurator from Desktop Mode.
+- Fixed a bug where the built-in theme was not showing correctly in certain situations.
+- Added some new shell / bash commands that can be called from within the flatpak for both RetroDECK and the Configurator.
+
+
+## Known issues
+Check the known issues page over at the wiki:
+
+[Known Issues](https://retrodeck.readthedocs.io/en/latest/wiki_general/known-issues/)
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.5b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.5b.md
new file mode 100644
index 00000000..57b3425e
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.7b/0.7.5b.md
@@ -0,0 +1,25 @@
+# RetroDECK 0.7.5b
+
+**Release Date: 14/12/2023**
+
+## New Features
+
+- Added new reset commands to reset just Emulationstation Desktop Edition via Configurator and CLI
+- `RetroArch:` If no stable core exist within a stable release version of RetroArch a nightly version of the core will be used instead.
+- Added the first RetroDECK `Easter Egg Boot Logo` for the Holiday period made by friend of the project, artist and author `Weestuarty`.
+
+## Updates
+
+- All standalone emulators
+- RetroArch and cores
+
+## Bugfixes & other changes
+
+- Fixed a SD Card pathing error that could occur on very creative SD Card naming on SteamOS 3.5.
+- `RetroArch:` The SCUMMVM Core was missing from the last RetroArch stable version and should have returned.
+- `RetroArch:` Borders/Overlays are now disabled by default on fresh installs, since some users where worried about Steam Deck OLED screen burn-in. You can enable or disable them from the Configurator as always.
+- `RPCS3:` Tweaked some configurations to slightly improve the performance on the Steam Deck LCD / OLED
+- `Dolphin:` Fixed the GameCube controller layout that made some buttons inverted: R1 is now Z, R2 is now R and L2 is L.
+- `CEMU:` Tweaked the audio configuration to choose the correct output device when docked.
+
+🎆🤶 In addition the RetroDECK Team wishes you happy holidays and a happy new year! 🎅🎇
diff --git a/wiki-rtd/docs/wiki_rd_versions/version_0.8b/0.8.0b.md b/wiki-rtd/docs/wiki_rd_versions/version_0.8b/0.8.0b.md
new file mode 100644
index 00000000..1e2c83b0
--- /dev/null
+++ b/wiki-rtd/docs/wiki_rd_versions/version_0.8b/0.8.0b.md
@@ -0,0 +1,3 @@
+# RetroDECK v0.8.0b - Bonzai Banana
+
+**Release Date: TBA**
diff --git a/wiki-rtd/Citra-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/citra-tp.md
similarity index 88%
rename from wiki-rtd/Citra-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/citra-tp.md
index 08f44dfa..2a6b5754 100644
--- a/wiki-rtd/Citra-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/citra-tp.md
@@ -1,4 +1,4 @@
-# Citra - 3DS
+# Texture Packs: Citra - 3DS
The `~/retrodeck/texture_packs/citra/` represents the `/load/textures` folder in Citra.
**Note:**
@@ -8,29 +8,29 @@ Some texture packs could made for a specific version or region of a game. Make s
`TITLEID` is different for every game.
## Enable Custom Textures
-* Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
+* Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
* Press `Emulation` -> `Configure` -> `Graphics` -> `Use Custom Textures` and set it to `On`.
-
+
## How do I add texture packs?
**Requirements:** Texture pack files
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
There are two ways of adding texture packs into Citra
-### From Citra
+### From Citra
1. Extract any texture files from compressed `.zip` or any other format to folders.
-2. Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
+2. Open up Citra inside `RetroDECK Configurator` by pressing `Open Emulator` - `Citra`.
3. Right click on the game you want to add textures into.
4. Click on `Open Custom Textures Location`.
-5. Paste the texture folders inside that directory, each folder is stored by the `TITLLEID` of the game.
+5. Paste the texture folders inside that directory, each folder is stored by the `TITLLEID` of the game.
6. Quit Citra
-### From the texture folder directly
+### From the texture folder directly
1. Extract any texture pack files from compressed `.zip` or any other format into folders.
2. Go into `~/retrodeck/texture_packs/citra/`. The folders are all named by `TITLEID`.
@@ -40,4 +40,4 @@ Example:
* You have a `.zip` file for a game that contains the `/load/textures/0000001000` folders.
* All you need to do is take the TITLEID folder: `0000001000` and put it into `~/retrodeck/texture_packs/citra/`
-* So the end result looks like: `~/retrodeck/texture_packs/citra/0000001000`
\ No newline at end of file
+* So the end result looks like: `~/retrodeck/texture_packs/citra/0000001000`
diff --git a/wiki-rtd/Dolphin-and-Primehack-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/dolphing-prime-tp.md
similarity index 80%
rename from wiki-rtd/Dolphin-and-Primehack-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/dolphing-prime-tp.md
index ebf940fb..7a885f10 100644
--- a/wiki-rtd/Dolphin-and-Primehack-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/dolphing-prime-tp.md
@@ -1,10 +1,8 @@
-# Dolphin / Primehack - GC & Wii
-Primehack is based on Dolphin so the method is the same.
+# Texture Packs: Dolphin / Primehack - GC & Wii
+Primehack is based on Dolphin so the method is the same.
The `~/retrodeck/texture_packs/dolphin/` & `~/retrodeck/texture_packs/primehack/` represents the `/load/Textures` folder.
-
-
**Note:**
Some texture packs could made for a specific version or region of a game. Make sure you have the right game and textures for it.
@@ -12,18 +10,18 @@ Some texture packs could made for a specific version or region of a game. Make s
`GAME_ID` is different for every game.
## Enable Custom Textures
-* Open up Dolphin or Primehack inside `RetroDECK Configurator` by pressing `Open Emulator` - `Dolphin` or `Primehack`.
-* Press `Options` -> `Graphic Settings`
+* Open up Dolphin or Primehack inside `RetroDECK Configurator` by pressing `Open Emulator` - `Dolphin` or `Primehack`.
+* Press `Options` -> `Graphic Settings`
`Load Custom Textures` and set it to `On`.
`Prefetch Custom Textures` and set it to `On`.
-
+
## How do I add texture packs?
**Requirements:** Texture pack files
-**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
+**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
### Directly in the folder
@@ -32,8 +30,9 @@ Some texture packs could made for a specific version or region of a game. Make s
2. Go into texture pack folders, they contain folders that are all named by `GAME_ID`.
**Dolphin:**`~/retrodeck/texture_packs/dolphin/`
-**Primehack:**`~/retrodeck/texture_packs/primehack/`.
+**Primehack:**`~/retrodeck/texture_packs/primehack/`.
3. Move the textures into the right folder:
**Dolphin:** `~/retrodeck/texture_packs/dolphin/`
**Primehack:** `~/retrodeck/texture_packs/primehack/`
+
diff --git a/wiki-rtd/Duckstation-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/duckstation-tp.md
similarity index 88%
rename from wiki-rtd/Duckstation-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/duckstation-tp.md
index 86be8d82..d21f038e 100644
--- a/wiki-rtd/Duckstation-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/duckstation-tp.md
@@ -1,4 +1,4 @@
-# Duckstation - PSX
+# Texture Packs: Duckstation - PSX
The `~/retrodeck/texture_packs/duckstaiton/` represents the `/duckstation/textures/` folder in Duckstation.
**Note:**
@@ -8,14 +8,14 @@ Some texture packs could made for a specific version or region of a game. Make s
`TITLEID` is different for every game.
## Enable Custom Textures
-* Open up Duckstation inside `RetroDECK Configurator` by pressing `Open Emulator` - `Duckstation`.
+* Open up Duckstation inside `RetroDECK Configurator` by pressing `Open Emulator` - `Duckstation`.
* Go to `Settings` -> `Advanced` -> `Tweaks/Hacks`
`Enable VRAM Write Texture Replacement` and set it to `On`.
`Preload Texture Replacements` and set it to `On`.
-
+
## How do I add texture packs?
**Requirements:** Texture pack files
@@ -23,8 +23,8 @@ Some texture packs could made for a specific version or region of a game. Make s
**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
-### Texture folder directly
+### Texture folder directly
1. Extract any texture pack files from compressed `.zip` or any other format into folders.
2. Go into `~/retrodeck/texture_packs/duckstation/`. The folders are all named by `TITLEID`.
-3. Move textures into the right `~/retrodeck/texture_packs/duckstation/` folder.
\ No newline at end of file
+3. Move textures into the right `~/retrodeck/texture_packs/duckstation/` folder.
diff --git a/wiki-rtd/PCXS2-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/pcsx2-tp.md
similarity index 89%
rename from wiki-rtd/PCXS2-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/pcsx2-tp.md
index 8911a704..52c5d452 100644
--- a/wiki-rtd/PCXS2-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/pcsx2-tp.md
@@ -1,4 +1,4 @@
-# PCXS2 - Playstation 2
+# Texture Packs: PCSX2 - Playstation 2
The `~/retrodeck/texture_packs/PCSX2/` represents the `/PCSX2/textures/` folder in PCSX2.
**Note:**
@@ -8,14 +8,14 @@ Some texture packs could made for a specific version or region of a game. Make s
`TITLEID` is different for every game.
## Enable Custom Textures
-* Open up PCSX2 inside `RetroDECK Configurator` by pressing `Open Emulator` - `PCSX2`.
+* Open up PCSX2 inside `RetroDECK Configurator` by pressing `Open Emulator` - `PCSX2`.
* Press `Settings` -> `Graphics`
`Load Textures` and set it to `On`.
`Async Texture Loading` and set it to `On`.
-
+
## How do I add texture packs?
**Requirements:** Texture pack files
@@ -23,8 +23,8 @@ Some texture packs could made for a specific version or region of a game. Make s
**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
-### Texture folder directly
+### Texture folder directly
1. Extract any texture pack files from compressed `.zip` or any other format into folders.
2. Go into `~/retrodeck/texture_packs/PCSX2/`. The folders are all named by `TITLEID`.
-3. Move textures into the right `~/retrodeck/texture_packs/PCSX2/` folder.
\ No newline at end of file
+3. Move textures into the right `~/retrodeck/texture_packs/PCSX2/` folder.
diff --git a/wiki-rtd/PPSSPP-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/ppsspp-tp.md
similarity index 93%
rename from wiki-rtd/PPSSPP-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/ppsspp-tp.md
index 6eff6f8e..51dd4b54 100644
--- a/wiki-rtd/PPSSPP-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/ppsspp-tp.md
@@ -9,9 +9,9 @@ Some texture packs could made for a specific version or region of the game. Make
## Enable Custom Textures
-1. Open up PPSSPP inside `RetroDECK Configurator` by pressing `Open Emulator` - `PPSSPP`.
-2. Press `Settings` -> `Tools` -> `Developer Tools` -> `Replace Textures` and set it to `On`.
-
+1. Open up PPSSPP inside `RetroDECK Configurator` by pressing `Open Emulator` - `PPSSPP`.
+2. Press `Settings` -> `Tools` -> `Developer Tools` -> `Replace Textures` and set it to `On`.
+
## How do I add texture packs?
**Requirements:** Texture pack files
diff --git a/wiki-rtd/RetroArch-Mesen-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/retroarch-mesen-tp.md
similarity index 91%
rename from wiki-rtd/RetroArch-Mesen-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/retroarch-mesen-tp.md
index 1703070a..4c883bf0 100644
--- a/wiki-rtd/RetroArch-Mesen-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/retroarch-mesen-tp.md
@@ -1,4 +1,4 @@
-# RetroArch - NES - Mesen
+# Texture Packs: RetroArch - NES - Mesen
The `texture_packs/RetroArch-Mesen/` represents `/retroarch/system/HdPacks/` folder.
**Note:**
@@ -15,16 +15,16 @@ From the `RetroArch Quick Menu`
**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
-* All texture packs go into the `texture_packs/RetroArch-Mesen/` folder.
+* All texture packs go into the `texture_packs/RetroArch-Mesen/` folder.
* The texture pack have to be extracted from .zip or other compressed format into a folder.
-* The name of the folder must be the same name as that of the rom file the texture pack is for.
+* The name of the folder must be the same name as that of the rom file the texture pack is for.
**Example:**
-You want apply a texture pack to a game called `ScaryCastle USA.nes` and you have downloaded the `ScaryCastle TexturePACK HD.zip`.
+You want apply a texture pack to a game called `ScaryCastle USA.nes` and you have downloaded the `ScaryCastle TexturePACK HD.zip`.
1. Extract the `ScaryCastle TexturePACK HD.zip`
-2. Move the extracted `ScaryCastle TexturePACK HD` folder into `texture_packs/RetroArch-Mesen/`
+2. Move the extracted `ScaryCastle TexturePACK HD` folder into `texture_packs/RetroArch-Mesen/`
3. Rename the `ScaryCastle TexturePACK HD` folder so it has the same name as the rom `ScaryCastle USA` without the `.nes` file extension.
9. Start up RetroDECK and select the ScaryCastle nes games.
-**NOTE:** On the Steam Deck go into GameMode first, then launch RetroDECK.
\ No newline at end of file
+**NOTE:** On the Steam Deck go into GameMode first, then launch RetroDECK.
diff --git a/wiki-rtd/RetroArch-Mupen64Plus-Next-Texture-Packs.md b/wiki-rtd/docs/wiki_texture_packs/retroarch-mupen64plus-tp.md
similarity index 90%
rename from wiki-rtd/RetroArch-Mupen64Plus-Next-Texture-Packs.md
rename to wiki-rtd/docs/wiki_texture_packs/retroarch-mupen64plus-tp.md
index f01f921e..4c99e13c 100644
--- a/wiki-rtd/RetroArch-Mupen64Plus-Next-Texture-Packs.md
+++ b/wiki-rtd/docs/wiki_texture_packs/retroarch-mupen64plus-tp.md
@@ -1,4 +1,4 @@
-# RetroArch - N64 - Mupen64Plus-Next
+# Texture Packs: RetroArch - N64 - Mupen64Plus-Next
The `texture_packs/RetroArch-Mupen64Plus/` represents `/retroarch/system/Mupen64plus/` folder.
@@ -9,7 +9,7 @@ Some texture packs could made for a specific version or region of the game. Make
From the `RetroArch Quick Menu`
-* Go to `Core Options` -> `GLideN64` ->
+* Go to `Core Options` -> `GLideN64` ->
`Use High-Res Textures` set to `On`
@@ -32,11 +32,12 @@ Then save the current configuration for that game under `Core Options` -> `Manag
**NOTE:** On the Steam Deck this could be easier to do in `Desktop Mode`.
-* All texture packs go into the `texture_packs//RetroArch-Mupen64Plus/hires_texture/` or `texture_packs/RetroArch-Mupen64Plus/cache/` folder.
+* All texture packs go into the `texture_packs//RetroArch-Mupen64Plus/hires_texture/` or `texture_packs/RetroArch-Mupen64Plus/cache/` folder.
* The texture pack have to be extracted from .zip or other compressed format into a folder.
## Compressed textures in .hts files
Compressed textures that are stored in `.hts` files goes into the `texture_packs/RetroArch-Mupen64Plus/cache/` folder.
-## Uncompressed textures in loose folders or files
+## Uncompressed textures in loose folders or files
Uncompressed textures that are stored in in loose folders or files goes into the `texture_packs/RetroArch-Mupen64Plus/hires_texture/` folder.
+
diff --git a/wiki-rtd/index.md b/wiki-rtd/index.md
deleted file mode 100644
index d2a72138..00000000
--- a/wiki-rtd/index.md
+++ /dev/null
@@ -1,151 +0,0 @@
-### RetroDECK Wiki
-