Septs d57131dc49 fix(shell-proxy): change NAME env variable for WSL clash (#9447) 3 years ago
..
README.md 5ea25e6736 Add `shell-proxy` plugin (#8692) 4 years ago
proxy.py d57131dc49 fix(shell-proxy): change NAME env variable for WSL clash (#9447) 3 years ago
shell-proxy.plugin.zsh 5ea25e6736 Add `shell-proxy` plugin (#8692) 4 years ago
ssh-agent.py d57131dc49 fix(shell-proxy): change NAME env variable for WSL clash (#9447) 3 years ago
ssh-proxy.py 5ea25e6736 Add `shell-proxy` plugin (#8692) 4 years ago

README.md

Shell Proxy oh-my-zsh plugin

This a pure user-space program, shell-proxy setter, written Python3 and Bash.

100% only no side-effects, only effect environment variables and aliases

Key feature

  • Support Ubuntu, Archlinux, etc (Linux)
  • Support macOS
  • Support git via based-$GIT_SSH
  • Support ssh, sftp, scp, slogin and ssh-copy-id via based-alias
  • Built-in Auto-complete

Usage

Method 1:

$DEFAULT_PROXY is the proxy URL you will set

Method 2:

Write a program to $HOME/.config/proxy in the file.

Example program:

#!/bin/bash
# The file path: $HOME/.config/proxy
if [[ "$OSTYPE" == "darwin"* ]]; then
  echo "http://127.0.0.1:6152" # Surge Mac
else
  echo "http://127.0.0.1:8123" # polipo
fi

Method 3:

The working path of Method 2 can be changed via $CONFIG_PROXY

Reference

Maintainer

The oh-my-zsh plugin (shell-proxy)

Public Domain