I'm trying to rename a window and remove all borders from it.
I can shape it just fine using pygetwindow
but for example,
win = pygetwindow.getWindowsWithTitle('Notepad')[0]
renames this window to Notepad1 so I can call another Notepad and rename it Notepad2 and control them independently, preferably not renaming them within the script but so the Windows process would be renamed.
The next step, I can see information for using tkinter to remove a title bar from my own program but how would I go about it for removing it from another application?