Put this in your ~/.config/openbox/lubuntu-rc.xml in between <applications> tags:

<application class="Firefox" name="Navigator">
    <fullscreen>yes</fullscreen>
</application>

To get specific class or name for your applications, use this:

obxprop | grep '^_OB_APP'

and then click with your cursor inside the app window.


Useful website: http://openbox.org/wiki/Help:Configuration

Answer from MichalH on Stack Exchange
🌐
Geeksta
geeksta.net › geeklog › open-applications-in-fullscreen-on-ubuntu
Open Applications in Fullscreen on Ubuntu | Geeksta
May 22, 2025 - Learn how to make Ubuntu applications launch in fullscreen by modifying desktop files and application settings with this short step-by-step guide.
🌐
Linux Questions
linuxquestions.org › questions › linux-software-2 › run-application-in-full-screen-747083
Run application in full screen? - Linux - Software
How would i go about running tux math in full screen mode under ubuntu 9.04? i'm sure there would be a command for it, i just can't seem to find it.
🌐
Reddit
reddit.com › r/linux › tip: launch command-line apps with "full screen gnome-terminal"
r/linux on Reddit: Tip: launch command-line apps with "full screen gnome-terminal"
February 3, 2022 -

I've noticed a trend towards command-line "apps" (as opposed to commands) that are smarter, more UI-oriented, and generally tend to want to take the full terminal window.

A subset of these apps need lots of screen real-estate, are very useful for "just a moment", and then when you're done they should go away. For example:

  • lazygit

  • systeroid

  • ncdu

  • nnn

  • (etc.)

I find it very useful to alias these apps within a "full-screen gnome-terminal" setup. This way, the terminal from which the app is launched does not need to be large, but the effect is to make the app go full-screen until you quit it.

For example, lazygit:

alias lg="gnome-terminal --full-screen --zoom 0.8 -- lazygit"

I put this in my ~/.bash_aliases file to be loaded by my ~/.bashrc file. (The default on Ubuntu and probably other systems is for .bashrc file to automatically load .bash_aliases).

Once I'm finished with my session, I quit, and I'm back to my regularly scheduled terminal / desktop.

🌐
Ask Ubuntu
askubuntu.com › questions › 1153956 › opening-a-full-screen-application-on-a-specific-window
xorg - Opening a full screen application on a specific window - Ask Ubuntu
To set which monitor is used for ... applications, I've had the most luck setting the SDL_VIDEO_FULLSCREEN_HEAD environment variable so that this is available within the window manager....
🌐
Xfce Forums
forum.xfce.org › viewtopic.php
Way to set a program to launch in full screen mode / General discussion / Xfce Forums
APPNAME & sleep 1 && wmctrl -r :ACTIVE: -b add,fullscreen · By any chance do you know if there is a way to achieve this using gtk.css? Unfortunately no - that's not what CSS is for. Came across the following link and it just got me wondering if this was possible.
Find elsewhere
🌐
Ask Ubuntu
askubuntu.com › questions › 686398 › make-any-app-run-full-screen
fullscreen - Make any app run full-screen - Ask Ubuntu
Is there any systemwide command to make any app run full screen? It seems some apps have this feature, and some don't. Is there any way to force any app to go full screen?
🌐
Arch Linux Forums
bbs.archlinux.org › viewtopic.php
Force fullscreen for all applications / Newbie Corner / Arch Linux Forums
I' wondering if it's possible to force the default status of applications set at fullscreen on Gnome (Wayland) ? It will give us a lot of pixels... I don't get why it's not already the case by the way ... Here https://askubuntu.com/questions/154377/ … s-in-gnome is a setting that configures whether large windows should be automatically maximized in GNOME/mutter. Is this what you are looking for? ... I think what you want to do is to launch all applications maximized by default.
🌐
Tech Couch
tech-couch.com › post › configure-linux-debian-to-boot-into-a-fullscreen-application
Configure linux debian to boot into a fullscreen application - Tech Couch
Using the --kiosk flag for chromium will automatically start it in fullscreen and disable some UI elements, like tabs and the search bar the top. Instead of a remote URL, you could also provide a filepath to a local HTML file.
🌐
Manjaro Linux
forum.manjaro.org › support › xfce
Open all apps in Fullscreen - Xfce - Manjaro Linux Forum
March 27, 2023 - Hello, How do I set to open all apps in Fullscreen? Manjaro does not remember the last app window frame size. I checked/tried several things in Window Manager to no avail. Is there an option to always open in Fscreen…
🌐
Linux Mint Forums
forums.linuxmint.com › board index › main edition support › beginner questions
[SOLVED] Run a program from a bash script in full screen? - Linux Mint Forums
That worked perfectly, thanks smurphos! I used "wmctrl -ir "$ID" -b toggle,fullscreen" as a second script and it's doing exactly what I wanted.