LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-08-2022, 10:56 AM   #1
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,361

Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Firefox: tips & tricks


Enable the overlay scrollbar

about:config
Code:
widget.gtk.overlay-scrollbars.enabled = true
 
Old 04-08-2022, 12:21 PM   #2
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Heheh... I just want to know how to disable ALL macros when editing online documents. IMHO there is just zero value in assigning a single, somewhat hidden keypress, to delete everything I just spent a half hour typing. Until I actually find what key does that, I'm considering installing some sort of pressure sensor that delivers a deafening CRASH! sound when I pound on it, perhaps including sounds of weeping and gnashing of teeth LOL
 
2 members found this post helpful.
Old 04-08-2022, 01:57 PM   #3
0XBF
Member
 
Registered: Nov 2018
Distribution: Slackware
Posts: 766

Rep: Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867
If you use libinput with a touchpad then there is no kinetic scrolling. With the older synaptics driver this was a "feature", but libinput skipped adding this since it was kind of buggy. They leave it up to applications to enable kinetic scrolling, so I turn it on for firefox by ensuring that the following is set in about:config
Code:
apz.gtk.kinetic_scroll.enabled = true
And then putting the following in a profile script:
Code:
export MOZ_USE_XINPUT2=1
 
1 members found this post helpful.
Old 04-08-2022, 04:28 PM   #4
semiprime
Member
 
Registered: Apr 2019
Location: UK
Distribution: Slackware
Posts: 51

Rep: Reputation: 59
If you don't like the modern "hamburger" menu (with its icon of three horizontal lines), just press the (left) Alt key and the traditional File/Edit/View/... menu appears. It will hide itself again if you select an item or press Alt a second time.

(I've tried this in Chromium, but it didn't work.)
 
2 members found this post helpful.
Old 04-08-2022, 04:39 PM   #5
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,361

Original Poster
Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Quote:
Originally Posted by semiprime View Post
If you don't like the modern "hamburger" menu (with its icon of three horizontal lines), just press the (left) Alt key and the traditional File/Edit/View/... menu appears. It will hide itself again if you select an item or press Alt a second time.

(I've tried this in Chromium, but it didn't work.)
Or right click on the toolbar, and check the box "Menu Bar"
 
1 members found this post helpful.
Old 09-21-2022, 11:43 AM   #6
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,361

Original Poster
Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Firefox 106 Promises PDF Annotation Features, Wayland Screen Sharing Improvements

With the Firefox 105 release out the door, Mozilla has promoted the upcoming major release, Firefox 106, to the beta channel for public testing to allow us to get an early taste of the new features and improvements.

https://9to5linux.com/firefox-106-pr...g-improvements
 
3 members found this post helpful.
Old 09-21-2022, 12:24 PM   #7
jmccue
Member
 
Registered: Nov 2008
Location: US
Distribution: slackware
Posts: 689
Blog Entries: 1

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
Another tip, I usually create a file named

/etc/firefox/policies/policies.json

to override config settings, this also makes the config settings read-only. Thus when a new firefox changes a default, I do not need to use about:config. This is what I have and this works across various Operating Systems.

Code:
{
  "policies": {
    "DisableAppUpdate": true,
    "DisableFirefoxAccounts": true,
    "DisableTelemetry": true,
    "DNSOverHTTPS": {
      "Enabled": false,
      "Locked": true        
    },
    "DontCheckDefaultBrowser": true,
    "NetworkPrediction": false,
    "PromptForDownloadLocation": true,
    "SearchEngines": {
      "PreventInstalls": true
    },
    "PDFjs": {
      "Enabled": false
    },
    "SearchSuggestEnabled": false,
    "DisableBuiltinPDFViewer": true
  }
}

Last edited by jmccue; 09-21-2022 at 12:27 PM. Reason: more info
 
8 members found this post helpful.
Old 09-21-2022, 03:25 PM   #8
Aeterna
Senior Member
 
Registered: Aug 2017
Location: Terra Mater
Distribution: VM Host: Slackware-current, VM Guests: Artix, Venom, antiX, Gentoo, FreeBSD, OpenBSD, OpenIndiana
Posts: 1,008

Rep: Reputation: Disabled
Quote:
Originally Posted by jmccue View Post
Another tip, I usually create a file named

/etc/firefox/policies/policies.json

to override config settings, this also makes the config settings read-only. Thus when a new firefox changes a default, I do not need to use about:config. This is what I have and this works across various Operating Systems.

Code:
{
  "policies": {
    "DisableAppUpdate": true,
    "DisableFirefoxAccounts": true,
    "DisableTelemetry": true,
    "DNSOverHTTPS": {
      "Enabled": false,
      "Locked": true        
    },
    "DontCheckDefaultBrowser": true,
    "NetworkPrediction": false,
    "PromptForDownloadLocation": true,
    "SearchEngines": {
      "PreventInstalls": true
    },
    "PDFjs": {
      "Enabled": false
    },
    "SearchSuggestEnabled": false,
    "DisableBuiltinPDFViewer": true
  }
}
You can safely use firefox profile without worrying that after FF upgrade it will be overwritten. Simply create a new custom profile. The advantage is that you can use the same profile irrelevant of OS/distro.
 
3 members found this post helpful.
Old 09-23-2022, 08:40 AM   #9
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,361

Original Poster
Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
With FF 105, on start, the cursor focus is on the URL bar, instead of -previously- the search field of my home page (duckduckgo)

Anyone know if it's possible to change that and how ?
 
Old 09-23-2022, 10:47 AM   #10
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,575
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
Quote:
Originally Posted by marav View Post
Enable the overlay scrollbar

about:config
Code:
widget.gtk.overlay-scrollbars.enabled = true
Thank you! I hate the new scrollbar. I get confused if I can't see where I am on the page. I just set this option to false and now I have a proper scrollbar again.

Last edited by hazel; 09-23-2022 at 10:48 AM.
 
3 members found this post helpful.
Old 09-23-2022, 10:31 PM   #11
regdub
Member
 
Registered: Apr 2008
Location: France
Distribution: Slackware
Posts: 101

Rep: Reputation: 33
Same here, thank you ! Switched to false, as true is the (new ?) default.
 
Old 09-23-2022, 10:33 PM   #12
regdub
Member
 
Registered: Apr 2008
Location: France
Distribution: Slackware
Posts: 101

Rep: Reputation: 33
To maintain some preferences "read-only" through upgrades on a per-account basis, there is the user.js file.

https://github.com/arkenfox/user.js/wiki/2.1-User.js
 
2 members found this post helpful.
Old 09-24-2022, 04:32 AM   #13
elcore
Senior Member
 
Registered: Sep 2014
Distribution: Slackware
Posts: 1,753

Rep: Reputation: Disabled
Replace the internal src editor with external (I use geany, but you can use whatever).
Code:
user_pref("view_source.editor.external", true);
user_pref("view_source.editor.path", "/usr/bin/geany");
 
1 members found this post helpful.
Old 09-24-2022, 04:40 AM   #14
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,361

Original Poster
Rep: Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075Reputation: 4075
Quote:
Originally Posted by marav View Post
With FF 105, on start, the cursor focus is on the URL bar, instead of -previously- the search field of my home page (duckduckgo)

Anyone know if it's possible to change that and how ?
This will be reverted (FF 107):
https://hg.mozilla.org/integration/a...v/f55cd89e1199
 
Old 09-24-2022, 05:23 AM   #15
LuckyCyborg
Senior Member
 
Registered: Mar 2010
Posts: 3,500

Rep: Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308Reputation: 3308
Quote:
Originally Posted by jmccue View Post
Another tip, I usually create a file named

/etc/firefox/policies/policies.json

to override config settings, this also makes the config settings read-only. Thus when a new firefox changes a default, I do not need to use about:config. This is what I have and this works across various Operating Systems.

Code:
{
  "policies": {
    "DisableAppUpdate": true,
    "DisableFirefoxAccounts": true,
    "DisableTelemetry": true,
    "DNSOverHTTPS": {
      "Enabled": false,
      "Locked": true        
    },
    "DontCheckDefaultBrowser": true,
    "NetworkPrediction": false,
    "PromptForDownloadLocation": true,
    "SearchEngines": {
      "PreventInstalls": true
    },
    "PDFjs": {
      "Enabled": false
    },
    "SearchSuggestEnabled": false,
    "DisableBuiltinPDFViewer": true
  }
}
Damn! Disabling built-in PDF viewer is ... respectfully being said: ridiculous! And you got 4 thumb-ups!

And with all respect, the strong disabling of DNSOverHTTPS could be at best categorized as sabotage, if not social engineering with malicious intent.

So, sincere congratulations for successfully misleading at least 4 people until now!

Last edited by LuckyCyborg; 09-24-2022 at 06:33 AM.
 
2 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: 8 Firefox pro tips and tricks for Android and iOS (plus a few more) LXer Syndicated Linux News 0 11-08-2021 03:04 PM
Linux Desktop & Laptop tricks & tips onebuck Linux - General 4 08-26-2013 09:35 AM
LXer: 10 Killer Firefox Tips, Tricks and Shortcuts LXer Syndicated Linux News 0 09-30-2010 03:10 AM
LXer: Tips and tricks: How can I configure Firefox to use the KDE print system? LXer Syndicated Linux News 0 11-27-2007 04:10 AM
Gotta love those ٱٱٱٱٱٱٱ&# iLLuSionZ Linux - General 5 11-18-2003 07:14 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration