由于您显然使用的是Linux,因此可以使用wmctrl -m或inxi -Sxx。
import subprocess
def get_wm():
output = subprocess.run(['wmctrl', '-m'], text=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if output.stderr:
return(output.stderr)
else:
return(output.stdout)
print(get_wm())