aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.local/etc/firefox/chrome/userChrome.css11
2 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 6145fdc..0326c14 100644
--- a/.gitignore
+++ b/.gitignore
@@ -79,6 +79,7 @@
!/.local/etc/firefox/
/.local/etc/firefox/*
!/.local/etc/firefox/user.js
+!/.local/etc/firefox/chrome/
# x11-misc/sxhkd
!/.config/sxhkd
diff --git a/.local/etc/firefox/chrome/userChrome.css b/.local/etc/firefox/chrome/userChrome.css
new file mode 100644
index 0000000..0200e43
--- /dev/null
+++ b/.local/etc/firefox/chrome/userChrome.css
@@ -0,0 +1,11 @@
+@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
+
+/* Hide top tabbar */
+#TabsToolbar {
+ visibility: collapse;
+}
+
+/* Hide header of sidebar */
+#sidebar-header {
+ visibility: collapse;
+}