change window and menu font size in firefox
authorDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 17 Nov 2009 21:48:28 +0000 (21:48 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 17 Nov 2009 21:48:28 +0000 (21:48 +0000)
git-svn-id: svn://svn.rot13.org/sysadmin-cookbook@157 191e9f34-6774-4a6d-acfc-7664dacd4a2a

recepies/firefox/install.sh [new file with mode: 0755]
recepies/firefox/userChrome.css [new file with mode: 0644]

diff --git a/recepies/firefox/install.sh b/recepies/firefox/install.sh
new file mode 100755 (executable)
index 0000000..c09dbc3
--- /dev/null
@@ -0,0 +1,4 @@
+#!/bin/sh -x
+
+ls -d $HOME/.mozilla/firefox/*.*/ | xargs -i cp -v userChrome.css {}/chrome/
+
diff --git a/recepies/firefox/userChrome.css b/recepies/firefox/userChrome.css
new file mode 100644 (file)
index 0000000..72895f2
--- /dev/null
@@ -0,0 +1,9 @@
+window {
+  font-size: 12px !important;
+}
+
+menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, tab,
+tree, tooltip
+{
+    font-size: 11px !important;
+}