I would like to have the window manager to, well, manage the plots. When I create a plot interactively in python:
from numpy import arange
import matplotlib
matplotlib.use('Qt5Agg')
import matplotlib.pyplot as pt
pt.ion()
x = arange(-10,10,step=.1)
pt.plot(x, x**3)
And check for the window properties, I get nothing.
% xprop | grep CLASS
WM_CLASS(STRING) = " ", " "
How can I tell matplotlib/Python to add X-window properties to its plots?