fuck blur, fuck pyenv and fuck VSCode

This commit is contained in:
Tony Miller 2025-12-02 19:31:51 +10:00
parent 34ec47d9ff
commit c0e2d29fd7
3 changed files with 3 additions and 16 deletions

View File

@ -1452,7 +1452,7 @@ background #eeeeee
#: The foreground and background colors. #: The foreground and background colors.
background_opacity 0.6 background_opacity 1.0
#: The opacity of the background. A number between zero and one, where #: The opacity of the background. A number between zero and one, where
#: one is opaque and zero is fully transparent. This will only work if #: one is opaque and zero is fully transparent. This will only work if
@ -1478,7 +1478,7 @@ background_opacity 0.6
#: will only work if dynamic_background_opacity was enabled in the #: will only work if dynamic_background_opacity was enabled in the
#: original config. #: original config.
background_blur 24 background_blur 0
#: Set to a positive value to enable background blur (blurring of the #: Set to a positive value to enable background blur (blurring of the
#: visuals behind a transparent window) on platforms that support it. #: visuals behind a transparent window) on platforms that support it.

View File

@ -13,7 +13,7 @@ local DEFAULTS = {
local APPS = { local APPS = {
browser = {{"Zen"}, {"Chromium"}, {"Safari"}}, browser = {{"Zen"}, {"Chromium"}, {"Safari"}},
editors = {DEFAULTS["EDITOR"], {"Nova"}, {"Xcode"}, {"Code", "Visual Studio Code", "VSCodium"}, {"IntelliJ IDEA"}}, editors = {DEFAULTS["EDITOR"], {"Nova"}, {"Xcode"}, {"Code", "VSCodium"}, {"IntelliJ IDEA"}},
chats = {{"Microsoft Teams"}, {"Telegram"}}, chats = {{"Microsoft Teams"}, {"Telegram"}},
messengers = {{"Messages"}, {"Telegram"}, {"Signal"}}, messengers = {{"Messages"}, {"Telegram"}, {"Signal"}},
music = {DEFAULTS["MUSIC"], {"Music"}}, music = {DEFAULTS["MUSIC"], {"Music"}},

13
.zshrc
View File

@ -258,19 +258,6 @@ export GOROOT="/opt/homebrew/opt/golang/libexec"
export GOPATH="${HOME}/src/go" export GOPATH="${HOME}/src/go"
export PATH="${GOPATH}/bin:${PATH}" export PATH="${GOPATH}/bin:${PATH}"
### PYTHON
function load_pyenv() {
if command -v pyenv &> /dev/null; then
eval "$(pyenv init --path)"
eval "$(pyenv init - --no-rehash)"
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
pyenv virtualenvwrapper
unset -f load_pyenv
fi
}
# Only load pyenv when needed
alias pyenv='load_pyenv && pyenv'
### RUBY ### RUBY
export RUBY_VERSION=3.3.0 export RUBY_VERSION=3.3.0
export GEM_HOME=$HOME/.gem export GEM_HOME=$HOME/.gem