final Dimension screenSize = Environment.getScreenSize();
this.window.setLocation(screenSize.width - this.window.getSize().x - 20, screenSize.height - this.window.getSize().y - 40);
}
private void initRobot() throws AWTException {
this.robot = new Robot();
this.robot.getEventProvider().addEventListener(new RobotListener());
}