mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-14 10:17:21 +02:00
Compare commits
5 Commits
f58d2c4488
...
e4d723c770
Author | SHA1 | Date | |
---|---|---|---|
e4d723c770 | |||
9d7089ea44 | |||
58d6794c7d | |||
e0aa6638b3 | |||
0bcc159eb3 |
@ -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
|
||||
}
|
||||
|
11
etc/profile.d/99-userapps.sh
Normal file
11
etc/profile.d/99-userapps.sh
Normal 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
|
10
rc/bashrc
10
rc/bashrc
@ -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
|
||||
|
10
rc/zshrc
10
rc/zshrc
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user