def move_window(self):
shape=QDesktopWidget().screenGeometry()
w=shape.width()
h=shape.height()
win_w=self.frameGeometry().width()
win_h=self.frameGeometry().height()
x=w-win_w
y=50
self.move(x,y)