[LibGDX] Is there a way to set the position of the application window?

So, if I understand correctly, since LibGDX uses LWJGL as a backend, LwjglApplicationConfiguration is used to set the properties of the application (such as if it’s resizable, width, height, etc) — but there doesn’t seem to be any setting to be able to set the window’s position on the monitor.

My game runs on a 1280x720 resolution and my laptop’s resolution is 1366x768. When I run the game, the way it launches by default is such that a small portion of the game window is hidden at the bottom of the screen out of view. Sure, this is easily fixed by dragging the window up, but it would be better if dragging the window weren’t necessary.

So if there is any way to set the window’s position so that it launches exactly where I want it to be, that would be great. Thanks!