How to fix the popup to fixed workspace.

Issues related to applications and software problems and general support
Post Reply
terence.tang
Posts: 5
Joined: 2016/04/21 02:18:55

How to fix the popup to fixed workspace.

Post by terence.tang » 2022/06/27 04:27:50

There are several workspaces.
I opened workspace 1, then open a terminmal, and run a script on it.
it will popup a widget in 5 seconds,
for example,

#!/usr/bin/python3

import tkinter.messagebox as tkm
from tkinter import Tk
import time

time.sleep(5)
Tk().withdraw()
tkm.showinfo(message="this is pause")


I swhiched to workspace 2 when run this script, the Tk widget will be appreared at workspace2.
I hope it can keep appearing at workspace1 because I ran it on workspace 1.

I basically will run several such similar scripts on different workspace, i expected if I run script A on workspace1, then all popup will be apreared on workspace1, even I switched on workspace2.

This behavior was changed since CentOS 6 I think, before CentOS 6, the popup will always stay on original workspace but not current workspace.
I need to show to always on original workspace.

Is there any solution about it? Thanks,

Post Reply