Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is there a way to query for the current screen size?

query screen size
0
10 Posted

Is there a way to query for the current screen size?

0

Yes. Use gtk.gdk.screen_width() and gtk.gdk.screen_height() for the current screen width and height, respectively. The following code will instead get the effective screen space available (net of panels and docks): w = gtk.gdk.get_default_root_window() p = gtk.gdk.atom_intern(‘_NET_WORKAREA’) width, height = w.property_get(p)[2][2:4] More info on WORKAREAs can be found at [standards.freedesktop.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123