The following script allows you to activate HDMI in 1080P 60 hz.
Instructions:
- Download the Script HDMI ON & Script HDMI off
- Move the downloaded files to the
/mnt/mmc/task
folder.
- Navigate to Apps > Task tooltip > HDMI on & off
- Plug in HDMI cable and PROFIT!
The HDMI off will return to internal display, huge shout out to @bitter_bizarro and the command that returns to original resolution:
[ "$(GET_VAR "global" "settings/hdmi/enabled")" -eq 1 ] && SCREEN_TYPE="external" || SCREEN_TYPE="internal"
FB_SWITCH "$(GET_VAR "device" "screen/$SCREEN_TYPE/width")" "$(GET_VAR "device" "screen/$SCREEN_TYPE/height")" 32
Let me know how it works for you, cheers 
3 Likes
My git in case the other link expires: romnix/muOS_Basics/hdmi_on.muxzip at main · amosjerbi/romnix · GitHub
You could also extract the sh script of the zip and put in in tasks folder if you’d like to have it as a task.
Good news! Managed to reverse the HDMI back to internal dispaly AFTER you launched HDMI_on, just run HDMI_off.sh from task toolkit (the resolution will reset once you exit a rom you launched).
Install it on SD1/muos/task
1 Like
Love this! Much better than having to reboot the device to go into HDMI.
Is it possible to make hdmi_off compatible with other devices, though? Using it on an RG35XX H makes the resolution of the device too big for the display and I need to reboot to get it back to normal.
Edit: maybe it could be dynamically adjusted by looking at the device info file in /root
1 Like
The ability to dynamically switch between the internal display and HDMI was removed due to widespread issues across various panel types of the H700 devices. In practice, hot-swapping displays triggered a range of faults from graphical corruption, incorrect colour rendering, blank output, and in severe cases, a rainbow screen crash requiring a full hard reboot.
This wasn’t a removal for the sake of limitation. It was a measured decision to improve system reliability. Having the ability to switch HDMI on boot ensures predictable behaviour and provides a stable baseline for future implementation.
While it is technically possible to re-enable dynamic switching, as shown in the original post, doing so is at your own discretion and may result in system instability or hardware lockups.
3 Likes
I see, thanks for clarifying it! Maybe there could be an option to enable switching dynamically when it detects an HDMI cable, just have it disabled by default and maybe with some kind of warning. I get that it’s safer to reboot into it, but I’d be willing to take the risk!
1 Like