Compare commits

...

5 Commits

4 changed files with 43 additions and 2 deletions

View File

@ -308,6 +308,16 @@
"Type": "boolean",
"Value": false
},
"browser.cache.disk.enable": {
"Status": "default",
"Type": "boolean",
"Value": false
},
"browser.cache.memory.enable": {
"Status": "default",
"Type": "boolean",
"Value": true
},
"browser.contentblocking.category": {
"Comment": "The best option would be strict, but amongst other things that disables system font visibility and may cause accessibility issues for me. There is also other content blocking already such as PrivacyBadger and uBlock Origin.",
"Status": "locked",
@ -651,7 +661,7 @@
},
"layout.css.prefers-color-scheme.content-override": {
"Comment": "Dark theme by default, disabling allowed",
"Status": "default",
"Status": "clear",
"Type": "number",
"Value": 0
},
@ -900,7 +910,7 @@
},
"ui.systemUsesDarkTheme": {
"Comment": "Another defaulting to dark theme.",
"Status": "default",
"Status": "clear",
"Type": "number",
"Value": 1
}

View File

@ -0,0 +1,11 @@
# Heavily copied and modified from /etc/profile.d/snapd.sh
local_bin_path="$HOME/.local/bin"
if [ -n "${PATH##*${local_bin_path}}" ] && [ -n "${PATH##*${local_bin_path}:*}" ]; then
export PATH="$PATH:${local_bin_path}"
fi
local_xdg_path="$HOME/.local/share"
if [ -n "${XDG_DATA_DIRS##*${local_xdg_path}}" ] && [ -n "${XDG_DATA_DIRS##*${local_xdg_path}:*}" ]; then
export XDG_DATA_DIRS="${XDG_DATA_DIRS}:${local_xdg_path}"
fi

View File

@ -260,6 +260,16 @@ export LOCALDOMAIN=.
# regardless of whether DNSSEC=true or not.
export RES_OPTIONS="timeout:2 attempts:2 rotate edns0 trust-ad"
# https://github.com/go-nv/goenv
if [ -d ~/.goenv/bin ]; then
export GOENV_ROOT="$HOME/.goenv"
PATH="$HOME/.goenv/bin:$PATH"
#goenv init > /dev/null 2>&1
eval "$(goenv init -)"
PATH="$GOROOT/bin:$PATH"
PATH="$PATH:$GOPATH/bin"
fi
# https://github.com/nvm-sh/nvm
if [ -d ~/.nvm ]; then
. ~/.nvm/nvm.sh

View File

@ -225,6 +225,16 @@ export LOCALDOMAIN=.
# regardless of whether DNSSEC=true or not.
export RES_OPTIONS="timeout:2 attempts:2 rotate edns0 trust-ad"
# https://github.com/go-nv/goenv
if [ -d ~/.goenv/bin ]; then
export GOENV_ROOT="$HOME/.goenv"
PATH="$HOME/.goenv/bin:$PATH"
#goenv init > /dev/null 2>&1
eval "$(goenv init -)"
PATH="$GOROOT/bin:$PATH"
PATH="$PATH:$GOPATH/bin"
fi
# https://github.com/nvm-sh/nvm
if [ -d ~/.nvm ]; then
. ~/.nvm/nvm.sh