View userChrome.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ | |
* { | |
font-size: 14px; | |
} | |
#toolbar-menubar, | |
#toggle_toolbar-menubar, | |
/*#toolbar-context-menu,*/ | |
#PanelUI-help, |
View firefox_about_config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toolkit.legacyUserProfileCustomizations.stylesheets = true | |
browser.in-content.dark-mode = true | |
ui.systemUsesDarkTheme = 1 | |
browser.cache.disk.enable = false | |
browser.cache.memory.enable = true | |
browser.cache.memory.capacity = 1000000 |
View mutt_keybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind pager j next-line | |
bind pager k previous-line | |
bind attach,index,pager \CD next-page | |
bind attach,index,pager \CU previous-page | |
bind pager g top | |
bind pager G bottom | |
bind attach,index g first-entry | |
bind attach,index G last-entry | |
bind index,pager O sidebar-open | |
bind index,pager B sidebar-toggle-visible |
View mutt_colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Colours for items in the index | |
color index brightcyan black ~N | |
# Hmm, don't like this. | |
# color index brightgreen black "~N (~x byers.world)|(~x byers.x)|(~x langly.levallois123.axialys.net)|(~x the.earth.li)" | |
color index brightyellow black ~F | |
color index black green ~T | |
color index brightred black ~D | |
mono index bold ~N | |
mono index bold ~F | |
mono index bold ~T |
View muttrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set imap_user = # | |
set imap_pass = # | |
set folder = imaps://<replace-with-domain-name> | |
set spoolfile = +INBOX | |
mailboxes =INBOX | |
# necessary for replying | |
set realname = $imap_user | |
set from = $imap_user@<replace-with-domain-name> |
View autocomplete_android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
@PrimaryKey | |
Application | |
Boolean | |
Bundle | |
Bundle().apply | |
Button | |
Calendar | |
CheckBox |
View rifle.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim: ft=cfg | |
# | |
# This is the configuration file of "rifle", ranger's file executor/opener. | |
# Each line consists of conditions and a command. For each line the conditions | |
# are checked and if they are met, the respective command is run. | |
# | |
# Syntax: | |
# <condition1> , <condition2> , ... = command | |
# | |
# The command can contain these environment variables: |