-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.js
More file actions
52 lines (39 loc) · 1.9 KB
/
user.js
File metadata and controls
52 lines (39 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// user_pref("", true);
// enable smooth scrolling
user_pref("general.smoothScroll.msdPhysics.enabled", true);
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 750);
user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 500);
user_pref("mousewheel.acceleration.factor", 6);
user_pref("mousewheel.acceleration.start", 6);
// hardware acceleration
// user_pref("layers.acceleration.force-enabled", true);
user_pref("gfx.webrender.all", true);
user_pref("media.ffmpeg.vaapi.enabled", true);
// custom search engines
user_pref("browser.urlbar.update2.engineAliasRefresh", true);
// enable userChrome.css
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
user_pref("svg.context-properties.content.enabled", true);
// Open PDFs in browser by default
user_pref("browser.download.open_pdf_attachments_inline", true);
// Disable Pocket
user_pref("extensions.pocket.enabled", false);
// Disable Activity Stream
user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false);
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
// Integrated calculator at urlbar
user_pref("browser.urlbar.suggest.calculator", true);
// Integrated unit convertor at urlbar
user_pref("browser.urlbar.unitConversion.enabled", true);
// TextFox specific settings
user_pref("sidebar.revamp", false);
user_pref("shyfox.enable.ext.mono.toolbar.icons", true);
user_pref("shyfox.enable.ext.mono.context.icons", true);
user_pref("shyfox.enable.context.menu.icons", true);
// CSS's `:has()` selector
user_pref("layout.css.has-selector.enabled", true);
// GTK rounded corners
user_pref("widget.gtk.rounded-bottom-corners.enabled", true);
// Who is bogus? (fixes Sidebery tab dragging on Linux)
user_pref("widget.gtk.ignore-bogus-leave-notify", 1);