aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-02-13 12:54:59 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-02-13 12:54:59 +0100
commit367b4cac15ef6f6fa56436a2572c911a89e05485 (patch)
tree9eb4e62d68875d45cb1931e9fb4d37f841f94756 /README.md
parent766506c6d3785434caf2f1cb11d8cc478f25cbd0 (diff)
Add a README
Diffstat (limited to 'README.md')
-rw-r--r--README.md86
1 files changed, 86 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5b41c5a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,86 @@
+# Tyil's dotfiles
+
+These are my dotfiles. There are many like it, but these are mine.
+
+My dotfiles are my best friend. It is my life. I must master them as I must
+master my life.
+
+My dotfiles, without me, are useless. Without my dotfiles, I am useless. I must
+place my dotfiles in the proper directory. I must rice them better than my
+colleagues, who are trying to out-rice me. I must compile stuff before they do.
+
+My dotfiles and I know that what counts during compilation is not the
+optimisation, the -j count used or the USEflags that are set. I know that it is
+the final binary that counts.
+
+My dotfiles are human, even as I, because it is my life. Thus, I will write
+them as a brother. I will learn its weaknesses, its strength, its parts, its
+accessories, its sights and its values. I will keep my dotfiles clean and
+ready, even as I am clean and ready. We will become part of eachother.
+
+Before Stallman, I swear this creed. My dotfiles and I are the defenders of my
+system. We are the masters of our applications. We are the saviors of my life.
+
+So be it, until victory is mine and there are no unconfigured applications, but
+true rice!
+
+## Disclaimer
+
+These configurations are ment for my own setups. Some parts of it are loaded
+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.
+
+## Theming
+
+- GTK theme: [arc-dark](https://github.com/horst3180/Arc-theme)
+- Icons: [ACYLS](https://github.com/worron/ACYLS)
+
+## Browsers
+
+There are no good browsers. Firefox may be a cancer upon its userbase, but the
+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/)