I finally had the courage to move from "Windows 11" to "Linux (mint)" and I've been wanting to test out how well it works on there. Although one issue i've encountered was everytime I enter fullscreen mode, my display forces the resolution the ikemen is set up to. This doesn't normally happened back in Windows.Example: my main desktop display is 1920x1080 while ikemen is at 1280x720 on windowed mode. As soon as I enter fullscreen, my display becomes dark for a few seconds and changes to the same exact one as ikemen (1920x1080 ---> 1280x720). I have to change display settings everytime I do this. Worst of all, if I set ikemen to 640x480 and afterwards closing, opening the display settings would close immediatley, with no other choice than to signout/reboot.Another thing If I try to enter fullscreen on the windows version with WINE, despite enabling "Emulate a virtual desktop" (set to 1920x1080)The Virtual desktop would close itself and ikemen would still be in windowed mode.Spoiler: Before Fullscreen (click to see content)Spoiler: After Fullscreen (click to see content)Notes: Currently running "Mint 22 (Wilma)". Other apps I have/installed doesn't have this issue so far.EDIT: I managed to find a quick fix, but its not permanent. (haven't tried 480p yet)with the "xrandr" command, I entered this in Terminal:Code: xrandr --output DP-0 --mode "1920x1080"with that it reverted back to its previous state along with the same refresh rate I have enabled (60Hz)However I want to know how to make it automatically revert without having to do this manually, perhaps like a shell script (.sh) or do I need to add/change anything to the "Ikemen_GO.command" file?
I don't have a surefire/tested solution, but You can try the configuration below (in save/config.json) and see if it helps:Code: "FullscreenWidth": 1920, "FullscreenHeight": 1080, "GameWidth": 1280, "GameHeight": 720,Also, Ikemen has a native Linux version and needs not be run through Wine.As for the last question, yes You can make a shell script and run Ikemen through it, e.g.:Code: #!/bin/bash"/path/to/Ikemen_GO_Linux"xrandr --output DP-0 --mode "1920x1080"and then simpy run this script instead of the Ikemen executable directly.
Kasasagi said, November 30, 2024, 11:25:00 amAs for the last question, yes You can make a shell script and run Ikemen through it, e.g.:Code: #!/bin/bash"/path/to/Ikemen_GO_Linux"xrandr --output DP-0 --mode "1920x1080"and then simpy run this script instead of the Ikemen executable directly.I somehow managed to find a fix in my graphics control panel (NVIDIA X Server), all I had to do was change the display settings back to "Basic" instead of "Advanced" (I'm guessing the issues were from force composition pipeline).I could try out the script if it offers the same result, thank you