def get_screen_resolution(): """ Fetches the screen resolution in pixels. Returns: (int, int): (width, height) in pixels of screen size. """ return wa.GetSystemMetrics(0), wa.GetSystemMetrics(1)