feat: use vertical tabs in ff
This commit is contained in:
parent
eb591d4b9c
commit
12166e3ee2
2 changed files with 5 additions and 69 deletions
|
@ -9,77 +9,10 @@ lib.mkIf osConfig.programs.firefox.enable {
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Installed by nixpkgs module
|
# Installed by nixpkgs module
|
||||||
package = osConfig.programs.firefox.package;
|
package = null;
|
||||||
profiles.${config.home.username} = {
|
profiles.${config.home.username} = {
|
||||||
name = config.home.username;
|
name = config.home.username;
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
userContent = # css
|
|
||||||
''
|
|
||||||
/* Sidebery */
|
|
||||||
@-moz-document url("moz-extension://d1d9847c-2bad-429f-9366-56db49b8c3d6/sidebar/sidebar.html")
|
|
||||||
{
|
|
||||||
#root {
|
|
||||||
--tabs-indent: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#root:hover {
|
|
||||||
--tabs-indent: 30px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
userChrome = # css
|
|
||||||
''
|
|
||||||
/* Hides the native tabs, sidebar header and splitter */
|
|
||||||
#TabsToolbar,
|
|
||||||
#sidebar-splitter,
|
|
||||||
#sidebar-header {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar-box {
|
|
||||||
--sidebar-normal-width: 35px;
|
|
||||||
--sidebar-hovered-width: 300px;
|
|
||||||
--sidebar-transition-speed: 200ms;
|
|
||||||
--sidebar-collapse-delay: 300ms;
|
|
||||||
--sidebar-transition-type: linear;
|
|
||||||
--browser-area-z-index-sidebar: 3;
|
|
||||||
|
|
||||||
position: relative;
|
|
||||||
min-width: var(--sidebar-normal-width) !important;
|
|
||||||
width: var(--sidebar-normal-width) !important;
|
|
||||||
max-width: var(--sidebar-normal-width) !important;
|
|
||||||
z-index: var(--browser-area-z-index-sidebar);
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar-box[positionend] {
|
|
||||||
direction: rtl;
|
|
||||||
}
|
|
||||||
#sidebar-box[positionend] > * {
|
|
||||||
direction: ltr;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar-box[positionend]:-moz-locale-dir(rtl) {
|
|
||||||
direction: ltr;
|
|
||||||
}
|
|
||||||
#sidebar-box[positionend]:-moz-locale-dir(rtl) > * {
|
|
||||||
direction: rtl;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-window[sizemode="fullscreen"] #sidebar-box {
|
|
||||||
--sidebar-normal-width: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar {
|
|
||||||
transition: min-width var(--sidebar-transition-speed)
|
|
||||||
var(--sidebar-transition-type) var(--sidebar-collapse-delay) !important;
|
|
||||||
min-width: var(--sidebar-normal-width) !important;
|
|
||||||
will-change: min-width;
|
|
||||||
}
|
|
||||||
#sidebar-box:hover > #sidebar {
|
|
||||||
min-width: var(--sidebar-hovered-width) !important;
|
|
||||||
transition-delay: 100ms !important;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
search = {
|
search = {
|
||||||
default = "DuckDuckGo";
|
default = "DuckDuckGo";
|
||||||
force = true;
|
force = true;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}:
|
}:
|
||||||
lib.mkIf config.programs.firefox.enable {
|
lib.mkIf config.programs.firefox.enable {
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
package = pkgs.firefox-esr;
|
package = pkgs.firefox-beta;
|
||||||
languagePacks = [
|
languagePacks = [
|
||||||
"de"
|
"de"
|
||||||
"en-GB"
|
"en-GB"
|
||||||
|
@ -42,6 +42,7 @@ lib.mkIf config.programs.firefox.enable {
|
||||||
"browser.newtabpage.activity-stream.showSearch" = false;
|
"browser.newtabpage.activity-stream.showSearch" = false;
|
||||||
"browser.newtabpage.activity-stream.feeds.topsites" = false;
|
"browser.newtabpage.activity-stream.feeds.topsites" = false;
|
||||||
"browser.newtabpage.activity-stream.feeds.section.highlights" = false;
|
"browser.newtabpage.activity-stream.feeds.section.highlights" = false;
|
||||||
|
"browser.tabs.groups.enabled" = true;
|
||||||
# Add-ons
|
# Add-ons
|
||||||
"extensions.pocket.enabled" = false;
|
"extensions.pocket.enabled" = false;
|
||||||
"extensions.postDownloadThirdPartyPrompt" = false; # Prompt for install before download
|
"extensions.postDownloadThirdPartyPrompt" = false; # Prompt for install before download
|
||||||
|
@ -77,6 +78,8 @@ lib.mkIf config.programs.firefox.enable {
|
||||||
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
||||||
# Allow styling through userChrome.css
|
# Allow styling through userChrome.css
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
|
||||||
|
"sidebar.verticalTabs" = true;
|
||||||
};
|
};
|
||||||
policies = {
|
policies = {
|
||||||
PasswordManagerEnabled = false;
|
PasswordManagerEnabled = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue