this post was submitted on 10 Sep 2024
8 points (83.3% liked)

Programming

17022 readers
233 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

It was quite difficult to look up for Windows, and X11 has its own more complicated way of doing things. On X11, I've managed to enter fullscreen, but exiting is even more difficult and less documented.

I know Wayland exists, but as long as XWayland provides a good enough support, I'll use that instead for now, due to lack of time on my own side.

EDIT: To clarify: I meant how do I do it via API calls, in programming, not by what key is the default (which is F11).

top 4 comments
sorted by: hot top controversial new old
[–] wildbus8979@sh.itjust.works 10 points 1 week ago* (last edited 1 week ago) (1 children)

F11 is the default in most cases to enter and exit full screen. Same as Windows I think (I wouldn't know for sure, never really used it).

[–] ZILtoid1991@lemmy.world -5 points 1 week ago* (last edited 1 week ago) (1 children)

Thanks, but that's not what I've wanted the help for.

EDIT: Why all the downvotes?

[–] wildbus8979@sh.itjust.works 10 points 1 week ago

You'll have to be more specific then, cause that is the most common way to change a window to full screen and back on Linux. Wayland or X11.

[–] tal@lemmy.today 9 points 1 week ago* (last edited 1 week ago)

To clarify: I meant how do I do it via API calls,

If you mean at the X11 call level, I think that it's a window hint, assuming that you're talking about a borderless fullscreen window, and not true fullscreen (like, DGA or DGA2 or something, in which case you don't have a fullscreen X11 window, but rather direct access to video memory).

https://specifications.freedesktop.org/wm-spec/latest/ar01s05.html

See _NET_WM_STATE_FULLSCREEN, ATOM

If you're using a widget toolkit like gtk or something and writing the program, it'll probably have some higher-level fullscreen toggle function that'll flip that on X11. Ditto for SDL.

If you mean in a script or something, I'd maybe try looking at xprop(1) to set that hint.

I'd also add, on the "user" front, that I don't use F11 and I think that that every window manager or desktop environment that I've ever used provides some way to set a user-specified keystroke to toggle a window's fullscreen state. I've set Windows-Enter to do that for decades, on every environment I've used.