R Script Fix

This commit is contained in:
MangoPig
2026-05-05 11:18:52 +01:00
parent 87fb89a6b7
commit 689a2dc079
5 changed files with 75 additions and 31 deletions

View File

@@ -72,3 +72,23 @@ if grep -qEi "(Microsoft|WSL)" /proc/version &> /dev/null; then
fi
fi
fi
alias local-stt="python ~/Application/STT/stt.py"
# Vault
alias vl="vault login -method=userpass username=mangopig"
alias vs="vault status"
alias vkv="vault kv get"
alias vkvl="vault kv list"
# Proxy
proxy_on() {
export ALL_PROXY=socks5h://192.168.1.26:1080
export HTTP_PROXY=socks5h://192.168.1.26:1080
export HTTPS_PROXY=socks5h://192.168.1.26:1080
echo "Proxy ON (Mullvad NL)"
}
proxy_off() {
unset ALL_PROXY HTTP_PROXY HTTPS_PROXY
echo "Proxy OFF (direct)"
}