16a4471b73
Instead of moving tabs into the title bar, hide it completely on Plasma Mobile, now that the tabs are at the bottom.
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
// Copyright 2021 Oliver Smith, Martijn Braam
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// Set up autoconfig (we use it to copy/update userChrome.css into profile dir)
|
|
pref('general.config.filename', "mobile-config-autoconfig.js");
|
|
pref('general.config.obscure_value', 0);
|
|
pref('general.config.sandbox_enabled', false);
|
|
|
|
// Enable android-style pinch-to-zoom
|
|
pref('dom.w3c.touch_events.enabled', true);
|
|
pref('apz.allow_zooming', true);
|
|
pref('apz.allow_double_tap_zooming', true);
|
|
|
|
// Save vertical space by hiding the titlebar
|
|
pref('browser.tabs.inTitlebar', 1);
|
|
|
|
// Disable search suggestions
|
|
pref('browser.search.suggest.enabled', false);
|
|
|
|
// Empty new tab page: faster, less distractions
|
|
pref('browser.newtabpage.enabled', false);
|
|
|
|
// Allow UI customizations with userChrome.css and userContent.css
|
|
pref('toolkit.legacyUserProfileCustomizations.stylesheets', true);
|
|
|
|
// Select the entire URL with one click
|
|
pref('browser.urlbar.clickSelectsAll', true);
|
|
|
|
// Disable cosmetic animations, save CPU
|
|
pref('toolkit.cosmeticAnimations.enabled', false);
|
|
|
|
// Disable download animations, save CPU
|
|
pref('browser.download.animateNotifications', false);
|