Creating a Python GUI application that includes mouse manipulation while handling user input for system-wide actions can be somewhat complex and may require libraries like `tkinter` for the GUI and `pynput` for mouse control. Below is a simple implementation based on your requirements. However, please consider that manipulating the mouse position can potentially lead to unwanted behavior, so it should be used with caution.
You might need to


