Page 1 of 2

"without" title bar > Firefox

Posted: 03 Feb 2025, 21:29
by SEMERENDO.cr
It's a great little detail, but even if I disable it, I still get that redundancy of buttons; it's not so much ugly, but it steals screen height.
It must be that something is not incorporated into the mate-marco-caja. ANY SOLUTION?

Image

"without" title bar > Firefox

Posted: 03 Feb 2025, 23:38
by vinnie
is not a solution but when you want to navigate with a little extra space press the F11 key.
As for the title bar, I think somehow it also depends on the desktop manager that has to handle the lack of the decorator.

"without" title bar > Firefox

Posted: 03 Feb 2025, 23:46
by Ed_P
vinnie wrote:
03 Feb 2025, 23:38
press the F11 key.
:shock: Thank you vinnie. :beer: On my keyboard I have to press & hold the fn key also. :happy62:

"without" title bar > Firefox

Posted: 04 Feb 2025, 00:38
by ncmprhnsbl
SEMERENDO.cr wrote:
03 Feb 2025, 21:29
ANY SOLUTION?
if you use firefox built or fetched via the "Browser Selection & Update Tool" , this doesn't occur.
the "trick" is that firefox is started via a script that runs:

Code: Select all

exec env GTK_CSD=1 /usr/lib64/firefox-currrent/firefox "$@"
this simply re-enables client side decoration for firefox(if you want to use it), that is disabled by gtk3-classic.

"without" title bar > Firefox

Posted: 04 Feb 2025, 00:43
by SEMERENDO.cr
Ja ja ja... oh no, I doesn't like wide screen or 4K. I prefer ↕️HD📀!
vinnie wrote:
03 Feb 2025, 23:38
Image
is not a solution but when you want to navigate with a little extra space press the F11 key.
As for the title bar, I think somehow it also depends on the desktop manager that has to handle the lack of the decorator.

"without" title bar > Firefox

Posted: 04 Feb 2025, 00:51
by SEMERENDO.cr

MMM is not more easy if I use "about:config" in the adress bar, is there any setting to change!

ncmprhnsbl wrote:
04 Feb 2025, 00:38
ANY SOLUTION?
if you use firefox built or fetched via the "Browser Selection & Update Tool" , this doesn't occur.
the "trick" is that firefox is started via a script that runs:

Code: Select all

exec env GTK_CSD=1 /usr/lib64/firefox-currrent/firefox "$@"
this simply re-enables client side decoration for firefox(if you want to use it), that is disabled by gtk3-classic.

"without" title bar > Firefox

Posted: 04 Feb 2025, 01:01
by ncmprhnsbl
SEMERENDO.cr wrote:
04 Feb 2025, 00:51
MMM is not more easy if I use "about:config" in the adress bar, is there any setting to change!
well, no, because it's things outside of firefox that cause the issue.

"without" title bar > Firefox

Posted: 04 Feb 2025, 01:29
by Ed_P
Ed_P wrote:
03 Feb 2025, 23:46
vinnie wrote:
03 Feb 2025, 23:38
press the F11 key.
:shock: Thank you vinnie. :beer: On my keyboard I have to press & hold the fn key also. :happy62:
Works in PorteuX but not Porteus. :o

"without" title bar > Firefox

Posted: 04 Feb 2025, 01:36
by SEMERENDO.cr
I execute that command and is closed terminal... when I enable or disable again (title bar), only hide the bottons in the tab, same before!
ncmprhnsbl wrote:
04 Feb 2025, 01:01
MMM is not more easy if I use "about:config" in the adress bar, is there any setting to change!
well, no, because it's things outside of firefox that cause the issue.

"without" title bar > Firefox

Posted: 04 Feb 2025, 06:12
by Ed_P
In Porteus 5.01 if I start Firefox via terminal command:

Code: Select all

guest@porteus:~$ /usr/lib64/f*c*/firefox
then fn + f11 works. But not if Firefox started via it's panel icon.

"without" title bar > Firefox

Posted: 04 Feb 2025, 10:14
by SEMERENDO.cr
OK done✌🏾, thanks! But the following:
> The path is different because I downloaded it manually (mozilla.org)
> I can only run it from the terminal without a launcher⁉️
Image
//AFTER
Image
//BEFORE
Image

Code: Select all

exec env GTK_CSD=1 /mnt/sda2/vini/Programas/firefox/firefox "$@"
Ed_P wrote:
04 Feb 2025, 06:12
In Porteus 5.01 if I start Firefox via terminal command:

Code: Select all

guest@porteus:~$ /usr/lib64/f*c*/firefox
then fn + f11 works. But not if Firefox started via it's panel icon.

"without" title bar > Firefox

Posted: 04 Feb 2025, 15:25
by vinnie
Ed_P wrote:
04 Feb 2025, 01:29
Works in PorteuX but not Porteus.
I don't know, as you can guess I use an appimage for the browser :P
the truth is that I like portable programs because I can carry them around with all the configurations (using firejail)

"without" title bar > Firefox

Posted: 04 Feb 2025, 17:39
by Ed_P
vinnie wrote:
04 Feb 2025, 15:25
the truth is that I like portable programs
That's why I like Porteus and its modules. :happy62:

"without" title bar > Firefox

Posted: 05 Feb 2025, 01:43
by ncmprhnsbl
SEMERENDO.cr wrote:
04 Feb 2025, 10:14
I can only run it from the terminal without a launcher⁉️
1. turn the command into a script:

Code: Select all

#! /bin/bash
exec env GTK_CSD=1 /mnt/sda2/vini/Programas/firefox/firefox "$@"
2. save the script as name "firefox" some where in your $PATH, ie. /bin /usr/bin or /usr/local/bin (or anywhere really)
3. make it executable: chmod +x /path/to/firefox

4. have your launcher's Exec= line point to it .. eg. if in $PATH, simply Exec=firefox %u or anywhere else: Exec=/path/to/somewhere/firefox
Ed_P wrote:
04 Feb 2025, 06:12
then fn + f11 works. But not if Firefox started via it's panel icon.
cannot reproduce here

"without" title bar > Firefox

Posted: 05 Feb 2025, 04:30
by SEMERENDO.cr
Yeah thanks OR in:

Code: Select all

.config/caja/scripts
ncmprhnsbl wrote:
05 Feb 2025, 01:43