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
#!/bin/bash | |
# http://serverfault.com/questions/410321/debian-ip6tables-rules-setup-for-ipv6/410327#410327 | |
# http://ipset.netfilter.org/iptables.man.html | |
# https://www.sixxs.net/wiki/IPv6_Firewalling | |
# https://www.cyberciti.biz/faq/ip6tables-ipv6-firewall-for-linux/ | |
# https://gist.github.com/thomasfr/9712418 | |
# https://gist.github.com/SnakeDrak/f4150f6e517e5a1d525f | |
# http://www.thegeekstuff.com/2011/06/iptables-rules-examples | |
# http://www.thegeekstuff.com/scripts/iptables-rules |
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, |
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 |
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 |
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 |
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> |
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 |
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: |