When posting a theme make sure it has
- title (theme name or whatever)
- link to a gist or github repo with theme files
- screenshot attached (just drag an image onto a comment area)
| nodedef>name VARCHAR,label VARCHAR | |
| 1,social.touha.me | |
| 2,gs.jonkman.ca | |
| 3,m.bonzoesc.net | |
| 4,social.consumium.org | |
| 5,occitanie.social | |
| 6,redwombat.social | |
| 7,community.highlandarrow.com | |
| 8,mastodon.daiko.fr | |
| 9,mastodon.noraworld.jp |
rebase vs merge).rebase vs merge)reset vs checkout vs revert)git rev-parse)pull vs fetch)stash vs branch)reset vs checkout vs revert)| #!/usr/bin/env bash | |
| # Disables proxy settings set by set-proxy. | |
| # By nathanchrs. | |
| # Set environment variables | |
| export http_proxy= | |
| export HTTP_PROXY= | |
| export https_proxy= |
| #!/usr/bin/env bash | |
| # Sets proxy settings. | |
| # Run using `source` command. apt-get proxy settings requires sudo privileges. | |
| # By nathanchrs. | |
| # Configuration | |
| # PROXY_HOST="" | |
| # PROXY_USER="" | |
| # PROXY_PASSWORD="" |
| # Video settings | |
| vo=opengl-hq | |
| tscale=linear | |
| scale=ewa_lanczossharp | |
| cscale=ewa_lanczossoft | |
| dscale=mitchell | |
| scale-antiring=0.7 | |
| cscale-antiring=0.7 | |
| dither-depth=auto |
References:
From man page: man apt_preferences
Open ~/.mozilla/firefox/<your_profile>/chrome/userContent.css (create it if does not exist).
Paste the following content in it.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("chrome://browser/content/devtools/**/.*"){
.devtools-monospace {
font-family: Consolas, monospace !important;
font-size: 8pt !important;
}
}
| # a refinement of https://stackoverflow.com/a/5255468/519360 | |
| # see also my non-translating version at https://stackoverflow.com/a/28466267/519360 | |
| # translate long options to short | |
| reset=true stopped="" | |
| for opt in "$@"; do | |
| if [ -n "$reset" ]; then | |
| unset reset | |
| set -- # reset the "$@" array so we can rebuild it | |
| fi |