I would like to write a simple program that sets the terminal (windows CMD) to full screen when i double click my python program on the desktop.
The desired behavior is for the script to change the terminal properties to be full screen, as if the user pressed ALT + ENTER.
My previous attempts include using ctypes
windll.user32
to emulate pressing ALT + ENTER, CMD refused this input. I also tried using the mode command, which just resized the window.