aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/README.md b/README.md
index d2954ca..efa1deb 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,10 @@ depending on the system hostname. These files are published mostly for
educational purposes, to show how I am doing my setup. Use these at your own
risk.
+Most of the customization is written either as POSIX shell scripts,
+[Perl](https://www.perl.org/) programs or [Raku](https://raku.org/) programs.
+Other dependencies may exist.
+
## Theming
- GTK theme: [arc-dark](https://github.com/horst3180/Arc-theme)
@@ -43,10 +47,51 @@ rest are even worse.
### Firefox (nightly)
+The Firefox configuration files live in a random directory in
+`$HOME/.mozilla/firefox`.
+
+#### `user.js`
+
+```js
+// Make Firefox load userChrome.css again...
+user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
+```
+
+#### `chrome/userChrome.css`
+
+```css
+/* Hide default tab bar */
+#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
+ opacity: 0;
+ pointer-events: none;
+}
+#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
+ visibility: collapse !important;
+}
+
+/* Hide header of sidebar */
+#sidebar-header {
+ display: none;
+}
+
+/* Make unread tabs italic */
+tab-item.unread .label-content {
+ font-style: italic;
+}
+```
+
#### Addons
- [HTTPS Everywhere](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/)
- [Tree Style Tab](https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab/)
+- [Viumium-FF](https://addons.mozilla.org/en-US/firefox/addon/vimium-ff/)
- [floccus](https://addons.mozilla.org/en-US/firefox/addon/floccus/)
- [uBlock Origin](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/)
- [uMatrix](https://addons.mozilla.org/en-US/firefox/addon/umatrix/)
+
+## Rice
+
+### Visualizer
+
+- [GLava](https://github.com/jarcode-foss/glava) (using `sk-overlay` for the
+ Gentoo ebuild)