diff options
-rw-r--r-- | .zsh.after/functions.zsh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh index c9ea095..7908f71 100644 --- a/.zsh.after/functions.zsh +++ b/.zsh.after/functions.zsh @@ -169,9 +169,13 @@ function publish() { mute popd } -function securium { - port=44350 - chromium --proxy-server="socks://localhost:$port" & +function incognichrome { + chromium --incognito + exit +} + +function inproxychrome { + chromium --incognito --proxy-server=apu-serve:8123 exit } |