'How to keep an Ursina window always on top?

I am using the Python Ursina game engine to make a 3D character. I want to keep the window always on top, like a picture-in-picture video. How would I do this, currently my code is as follows...

from ursina import *

app = Ursina()

cube = Entity(model='cube')

def update():
    cube.rotation_y += 1

app.run()

The code runs fine, but it is always behind the other windows I open. Any advice or solutions out there?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source