aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-08-09 20:23:07 +0200
committerDavid Runge <dave@sleepmap.de>2016-08-09 20:23:07 +0200
commit2bf67cf6f4a42723350dd79c571c25ae9b809344 (patch)
tree903850643cec17975b91eab0cf11471c9fccd6c1 /.zsh.after
parentaf8bc9191ee7d66f1a3be2bd96554dfd96a68d17 (diff)
downloaddotfiles-2bf67cf6f4a42723350dd79c571c25ae9b809344.tar.gz
dotfiles-2bf67cf6f4a42723350dd79c571c25ae9b809344.tar.bz2
dotfiles-2bf67cf6f4a42723350dd79c571c25ae9b809344.tar.xz
dotfiles-2bf67cf6f4a42723350dd79c571c25ae9b809344.zip
.zsh.after/functions.zsh: Adding functions to start chromium incognito and with a predefined proxy-server.
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/functions.zsh10
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
}