aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.zsh.after/functions.zsh11
1 files changed, 10 insertions, 1 deletions
diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh
index 08ede74..7a87bee 100644
--- a/.zsh.after/functions.zsh
+++ b/.zsh.after/functions.zsh
@@ -101,7 +101,7 @@ function incognichrome {
}
function inproxychrome {
- chromium --incognito --proxy-server=apu-serve:8123
+ chromium --incognito --proxy-server=apu-serve:8123 --user-data-dir="$HOME/.config/chromium-proxy"
}
## ZSH
@@ -212,6 +212,9 @@ ex2() {
lstar() {
if [ -f "$1" ] ; then
case "$1" in
+ *.deb)
+ ar -tv "$1"
+ ;;
*.bz2)
tar -tvf "$1" --force-local
;;
@@ -386,4 +389,10 @@ function sdsjkS(){
eval ${journal_cmd}
}
+
+function pasters() {
+ local file="${1:-/dev/stdin}"
+ curl --data-binary @"${file}" https://paste.rs
+}
+
# FUNCTIONS >