Skip to content

Instantly share code, notes, and snippets.

@Justinzobel
Last active March 16, 2024 02:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Justinzobel/20120dc7dcf8ae5d72add0c1dee60f08 to your computer and use it in GitHub Desktop.
Save Justinzobel/20120dc7dcf8ae5d72add0c1dee60f08 to your computer and use it in GitHub Desktop.
Fix Thunderbird 115's title bar and remove search bar

Thunderbird 115 introduced a new look. I hate it. Not only does it no longer fit in with KDE Plasma, it lost functionality due to it's new integrated search bar in the title bar.

So I went on a mission to fix it.

To restore the regular title bar:

Go into Settings > General > Language & Appereance and uncheck the Hide system window titlebar

To remove search bar:

Toggle toolkit.legacyUserProfileCustomizations.stylesheets to true in Config Editor (bottom of Settings)

Find your profile directory via Help > Troubleshooting Information > Profile Directory (or about:profiles in same page)

This directory should have lots of files e.g. prefs.js and places.sqlite

Create directory chrome Inside that folder, create a file named userChrome.css with the below content:

#unifiedToolbar {
  display:none !important;
}

Restart Thunderbird

Enjoy!

@Justinzobel
Copy link
Author

Note if you're using the Flatpak your profile directory will be different than the one listed in the above instructions. It will be
~/.var/app/org.mozilla.Thunderbird/.thunderbird/xxxxxxxx.default/ or similar.

@baptx
Copy link

baptx commented Mar 15, 2024

Good to know to restore the regular title bar. But why would someone want to remove the search bar? You cannot search emails afterwards (it is not exactly the same function as "quick filter").

@Justinzobel
Copy link
Author

I can't recall but I think I didn't use it as much as it took up space and I tend to go to my webmail to do searching.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment