🌐
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.
🌐
Reddit
reddit.com › r/ubuntu › how to launch applications in full-screen by default?
r/Ubuntu on Reddit: How to launch Applications in Full-screen by Default?
the devilspie2 program can be used to resize, move, and otherwise tweak windows layouts when they first open. there may be command line options that also do what you want. https://askubuntu.com/questions/36287/how-to-start-firefox-in-fullscreen-mode mentions several ways to do it for firefox specifically. So you could make a 'fullscreenfirefox.sh' and a .desktop launcher for it.
🌐
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.
🌐
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.
🌐
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.
🌐
Ask Ubuntu
askubuntu.com › questions › 1356603 › how-can-i-launch-a-gui-application-in-a-fullscreen-window-without-a-complete-des
How can I launch a GUI application in a fullscreen window without a complete desktop environment? - Ask Ubuntu

Yes.

You haven't provided any details of your GUI application; and importantly I think what stacks it uses.

Is it motif? simple xorg?, using GTK2/3? Qt5? etc as most applications require specific stacks that need to run - but if it's a simple X11 GUI app that doesn't use stacks I believe it's a yes. However very few GUI apps remain today that don't use GUI libraries/toolkits.

I've opened GUI apps on unix/sun-OS boxes where the size was defined in the command that opened the window, and full-screen was possible, however they weren't modern apps & didn't use modern toolkits. Many of those programs also ran in Debian & Ubuntu GNU/Linux the same way, but it's been decade+ since I've wanted to run them as they're outdated (with many no longer available, as they were re-written/replaced and it's simpler being able to use a WM than controlling everything from command line).

You however gave no specifics; but it is possible for some applications (just not worth it in my experience; we no longer run machines with that limited resources).

Answer from guiverc on askubuntu.com
🌐
Stack Exchange
unix.stackexchange.com › questions › 217583 › how-to-configure-certain-programs-to-always-open-in-full-screen
lxde - How to configure certain programs to always open in full screen? - Unix & Linux Stack Exchange

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 unix.stackexchange.com
🌐
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....
Find elsewhere
🌐
Stack Overflow
stackoverflow.com › questions › 22395295 › linux-box-with-only-one-application-which-is-fullscreen
desktop - Linux box with only one application which is fullscreen - Stack Overflow

I think you are looking for kiosk mode, you can achieve this by various kiosk based linux based iso distribution like http://sanickiosk.wikidot.com/ (Sanickiosk) and WebKiosk (http://www.binaryemotions.com/).

Even you can customize ubuntu to run only firefox in full screen mode (http://www.instructables.com/id/Setting-Up-Ubuntu-as-a-Kiosk-Web-Appliance/?ALLSTEPS).

Thanks & Regards,
Alok Thaker

Answer from linux_fanatic on stackoverflow.com
🌐
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?
🌐
Reddit
reddit.com › r/linux4noobs › open desktop application on startup in fullscreen
r/linux4noobs on Reddit: Open desktop application on startup in fullscreen
Can someone tell me which environment would be the best and how to automate starting the application? None? You can run X applications without a window manager (see https://wiki.archlinux.org/index.php/Xinit#Starting_applications_without_a_window_manager ).
🌐
Manjaro Linux
forum.manjaro.org › support › xfce
Open all apps in Fullscreen - Xfce - Manjaro Linux Forum
April 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…
🌐
Arch Linux Forums
bbs.archlinux.org › viewtopic.php
How to force an application to be full screen (DE: GNOME WM: Mutter) / Newbie Corner / Arch Linux Forums
Just launch your program from an xinitrc with xinit/startx and have it set it's geometry to the screen size. Unrelated update: The application no longer needs root thanks to adding the user to some groups like uucp.
🌐
Stack Overflow
stackoverflow.com › questions › 2697826 › linux-run-an-application-fullscreen-not-in-a-window
x11 - Linux: run an application fullscreen (not in a window) - Stack Overflow

There are different domains where you can decide if your application runs in fullscreen mode or not.

1) The "X-Borders" are drawn by your window manager. An application running on your X-Server without a window manager won't have any borders. If theres a fullscreen mode for the application depends on the window manager itself.

For example in my i3 you can use the key combination ALT + F to switch to fullscreen mode.

2) The used graphic driver behind your library.

GRX supports different drivers and you can set them with the following function:

     int GrSetDriver(char *drvspec);

The SDL driver supports a windowed mode and a fullscreen mode. So

sdl::fs 

should set your application in fullscreen mode.

See the manual for more information:

http://grx.gnu.de/grx248um.html#Setting-the-graphics-driver

Answer from echox on stackoverflow.com
🌐
Super User
superuser.com › questions › 1265762 › full-screen-window-command-from-linux-terminal
Full screen window command from Linux terminal? - Super User

Based on @dirkt's comment I went and had a look at wmctrl, which is a command line tool that lets you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.

Here's an example that toggles fullscreen for the currently active window:

wmctrl -r ':ACTIVE:' -b toggle,fullscreen

For more details on what you can do with this see the man page and for some example see this tutorial.

Answer from Siôn le Roux on superuser.com
🌐
Stack Overflow
stackoverflow.com › questions › 15435870 › linux-force-application-to-full-screen-on-a-specific-display
c++ - Linux force application to full screen on a specific display - Stack Overflow

What's your setup? Do you actually have 2 separate X displays, or are you using Xinerama to combine the two?

If you're using 2 displays, they should have their own -display or DISPLAY env variable. You can use that to execute a new app.

$ echo $DISPLAY
:0.0
$ xterm -display :0.0

Open a shell in the other display to get your other display env variable.

There's also -geometry, in the format of [Wth,Ht+X+Y]

$ xterm -geometry 132x80+500+0

When Xinerama is enabled, your other display is usually a +X+Y offset.

Of course, this does require the app to process command line arguments. It then passes those off to X when initialising the window. For xterm, width and height are units of text characters, where X/Y are screen pixels.

Answer from Serge Ivanoff on stackoverflow.com