Skip to content

Instantly share code, notes, and snippets.

@hallettj
hallettj / userChrome.css
Last active November 5, 2024 01:08
Customize Firefox Quantum to hide tab bar, and to hide navigation bar when it is not focused. Press Ctrl+L to reveal navigation bar. To make this work open about:config and set toolkit.legacyUserProfileCustomizations.stylesheets to true. Put this file in ~/.mozilla/firefox/<profile-name>/chrome/
@-moz-document url(chrome://browser/content/browser.xul),
url(chrome://browser/content/browser.xhtml) {
/* hide horizontal tabs at the top of the window */
#TabsToolbar > * {
visibility: collapse;
}
/* hide navigation bar when it is not focused; use Ctrl+L to get focus */
#main-window:not([customizing]) #navigator-toolbox:not(:focus-within):not(:hover) {
{-# LANGUAGE
UndecidableInstances,
FlexibleInstances,
MultiParamTypeClasses,
EmptyDataDecls,
TypeFamilies #-}
module Physics (Physicsable) where
import Data.Maybe