This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert) | |
| # Read the video output mode and set it for emuelec to avoid video flicking. | |
| # This file sets the hdmi output and frame buffer to the argument in pixel width. | |
| # Allowed argument example ./setres.sh 1080p60hz <-- For height 1080 pixels. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert) | |
| # Copyright (C) 2022-present Joshua L (https://github.com/Langerz82) | |
| # 2025-present DiegroSan (https://github.com/Diegrosan) | |
| # Read the video output mode and set it for emuelec to avoid video flicking. | |
| # This file sets the hdmi output and frame buffer to the argument in pixel width. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) originally created by Escalade | |
| # Copyright (C) 2018-present 5schatten | |
| # Copyright (C) 2025-present Langerz82, worstcase_scenario | |
| . /etc/profile | |
| # Core paths | |
| AMIBERRY_DIR=/storage/.config/amiberry-lite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| config_description=UAE Amiga 1200/ Amiga CD32 default configuration | |
| config_hardware=true | |
| config_host=true | |
| config_version=8.0.0 | |
| ;rtg_nocustom=true | |
| ;a1000ram=false | |
| ;synchronize_clock=yes | |
| ;sound_auto=yes | |
| ;pandora.jump=-1 | |
| ;pandora.autofire_button=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) 0riginally created by Escalade (https://github.com/escalade) | |
| # Copyright (C) 2018-present 5schatten (https://github.com/5schatten) | |
| # Copyright (C) 2025-present Langerz82 (https://github.com/Langerz82) | |
| . /etc/profile | |
| # Set some common variables | |
| AMIBERRY_DIR=/storage/.config/amiberry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) 2019-present SumavisionQ5 (https://github.com/SumavisionQ5) | |
| # Modifications by Shanti Gilbert (https://github.com/shantigilbert) | |
| # 2025-present Mod by DiegroSan | |
| # 2025-present Mod by WorstcaseSecenario (https://github.com/worstcase-scenario) | |
| # 2025-present Mod by Langerz82 (https://github.com/Langerz82) | |
| # 12/07/2019 use mpv for all splash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (C) 0riginally created by Escalade (https://github.com/escalade) | |
| # Copyright (C) 2018-present 5schatten (https://github.com/5schatten) | |
| # Copyright (C) 2025-present Langerz82 (https://github.com/Langerz82) | |
| . /etc/profile | |
| # Set some common variables | |
| AMIBERRY_DIR=/storage/.config/amiberry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find_gamepad() { | |
| local SDLJOYTEST="/tmp/emulation/amiberry/sdljoytest" | |
| sdljoytest -skip_loop > ${SDLJOYTEST} | |
| local GC_NAME=$(cat ${SDLJOYTEST} | grep "Joystick 0 name" | cut -d"'" -f2) | |
| if [[ ! -z "${GC_NAME}" ]] && [[ -f "/tmp/joypads/${GC_NAME}.cfg" ]]; then | |
| sed -i "s|joyport1_friendlyname=.*|joyport1_friendlyname=${GC_NAME}|" "$AMIBERRY_TMP_CONFIG" | |
| fi | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: GPL-2.0 | |
| # Copyright (C) 2018-present Frank Hartung ([email protected]) | |
| # Modifications by Shanti Gilbert ([email protected]) to work on EmuELEC Copyright (C) 2019-present | |
| . /etc/profile | |
| # Set common paths and defaults | |
| export PULSE_RUNTIME_PATH=/run/pulse | |
| RR_AUDIO_DEVICE="hw:$(get_ee_setting ee_audio_device)" | |
| [ ${RR_AUDIO_DEVICE} = "hw:" ] && RR_AUDIO_DEVICE="hw:0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: GPL-2.0 | |
| # Copyright (C) 2018-present Frank Hartung ([email protected]) | |
| # Modifications by Shanti Gilbert ([email protected]) to work on EmuELEC Copyright (C) 2019-present | |
| . /etc/profile | |
| # Set common paths and defaults | |
| export PULSE_RUNTIME_PATH=/run/pulse | |
| RR_AUDIO_DEVICE="hw:$(get_ee_setting ee_audio_device)" | |
| [ ${RR_AUDIO_DEVICE} = "hw:" ] && RR_AUDIO_DEVICE="hw:0" |
NewerOlder